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();
->