重複の可能性:
php の autoload 関数
私はPHPフレームワークに取り組んでいます。関数が存在しないときにエラー ハンドラを書き直して、最初に関数を記述したファイルを自動的にインクルードしようとする方法があるのだろうかと思います。
例:
echo general_foo(); // <-- general_foo() is not yet stated.
// A handler tries to include_once('functions/general.php') based on the first word of the function name.
// If the function still doesn't exist - throw an error.
これによる利点は、不要なファイルのコンパイルをスキップするか、追跡と状態の保持をスキップすることです。
クラスではなく関数に対して単純に __autoload を使用します。