Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
何らかの理由で関数を呼び出すことができません。その理由がわかりません。
$app->post( '/login', function () use ($app, $db) { myfunction(); } $app-run(); function myfunction() { echo "hello world"; }
私は何を間違っていますか?
ありがとう。
関数を呼び出しているクロージャーのスコープ内で関数に到達できることを確認してください。
$app および $db と一緒に use ステートメントに含めたいと思うかもしれません。
$app-run();? が欠けていると思います->。
$app-run();
->