求解Fatal error: Failed opening required 異常

來源:互聯網
上載者:User
求解Fatal error: Failed opening required 錯誤!
錯誤提示:
Warning: require_once(Abc.class.php) [function.require-once]: failed to open stream: No such file or directory in D:\myphpwww\Print.php on line 3

Fatal error: require_once() [function.require]: Failed opening required 'Abc.class.php' (include_path='.;C:\php6\pear') in D:\myphpwww\Print.php on line 3

Print.php 檔案://引入Abc.class.php檔案
require_once 'Abc.class.php';

Abc.class.php檔案:
class Abc{
//接收一個數並列印金字塔
public function printStar($n){

for($i=1;$i<=$n;$i++){
//先列印空格
for($k=1;$k<=$n-$i;$k++){
echo" ";
//列印星號的個數
}
for($j=1;$j<=($i-1)*2+1;$j++){
echo"*";
}
echo"
";
}
}
}

?>



網上都說(1)找不到檔案,是路徑錯誤,可是引用路徑沒有錯誤啊,
(2)說是檔案夾許可權問題,可是d盤檔案夾全給了,修改的。
望各位大神不吝賜教。
------解決方案--------------------
但在貼圖中並沒有看到 Print.php 檔案
------解決方案--------------------
Print.php 與 Abc.class.php要放再同一目錄。
------解決方案--------------------
你名字寫錯了
截圖的是Abc.calss.php
而你include的是
Abc.class.php
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.