スタートアップ ガイドを使用して ZF2 をセットアップし、それを新しいサイトに移植することにしました。私は init_autoloader.php の is_dir までずっとデバッグしましたが、何が間違っているのか誰かが知っているかどうか疑問に思っていました。これが私のコードです:
// Composer autoloading
$loader = include 'vendor/autoload.php';
$zf2Path = false;
if (is_dir('vendor/zendframework/zendframework/library')) {
die('hello'); //This die does not execute
$zf2Path = 'vendor/zendframework/zendframework/library';
} elseif (getenv('ZF2_PATH')) { // Support for ZF2_PATH environment variable or git submodule
die('hello1'); //This die does not execute either
$zf2Path = getenv('ZF2_PATH');
} elseif (get_cfg_var('zf2_path')) { // Support for zf2_path directive value
die('hello2'); //Nor this one
$zf2Path = get_cfg_var('zf2_path');
}
したがって、ダイの実行はありませんが、上記のように、このコードはまったく同じ構造のローカルで正常に動作します。