所以,我希望有我的類包含另一個文件,該文件又執行return語句...包括()函數裏面:迴歸工程意外
class layout {
public static function make($file) {
include $file;
}
}
我有一個mylayout.layout.php
<?php
return true;
然後我
echo layout::make('mylayout.layout.php');
結果null
爲什麼你要在第一線回來? – hek2mgl
你可以有一個return語句。但它不會是包含的函數的返回語句。 (如你所料) – hek2mgl
這是使用特質的初步案例嗎?我並不認爲他們的價值,但這可能是一個合適的情況 –