PHP 中匿名函數的即時執行
問題:
問題:(function () { /* do something */ })()
問題:<script>在匿名函數可以立即定義並執行:</script>
PHP 中有類似的方法嗎?<code class="php">call_user_func(function() { echo 'executed'; });</code>答案:
<code class="php">(function() { echo 'executed'; })();</code>PHP 7 之前,使用call_user_func()可以立即執行匿名函數:但是,在當前的PHP版本中,您可以直接執行匿名函數:
以上是## PHP 中可以立即執行匿名函數嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!