0
我試過的代碼是:如何從包含(.inc)文件調用php文件的函數?
使用example.php
function test()
{
echo "Function is called";
}
test_include.inc
include_once("example.php");
test();
我試過的代碼是:如何從包含(.inc)文件調用php文件的函數?
使用example.php
function test()
{
echo "Function is called";
}
test_include.inc
include_once("example.php");
test();
@阿倫 - 庫馬爾,你應該在聲明的功能test_include.inc幷包含在你的example.php中。由於example.php是將被執行的文件。但是你也可以在另一個php文件中包含一個php文件,或者在另一個inc文件中包含一個inc文件。
所以沒有辦法從包含文件執行php函數? –
那麼是什麼問題 –
@SunilPachlangia當我試過這段代碼,函數不叫 –
而這與cakephp有什麼關係? – gmponos