說我有file.php
具有三種功能和echo
聲明:如何在文件中處理PHP函數?
function one() {
return three() . ' This is one.';
}
function two() {
return 'This is two.';
}
function three() {
return 'This is three.';
}
echo one(); // string(xx) "This is three. This is one."
首先,它是一般可以接受的function one()
電話function three()
即使function three()
後在文件中出現?
其次,當file.php
被加載到瀏覽器中(從而在服務器上執行PHP),PHP計算返回值function two()
,即使它從未被調用?
進一步閱讀關於PHP如何處理這種普通事情的任何鏈接都會很好。
以下所有的好答案。 – Jeff