PHP 不可调用的函数是什么?
What and which are the PHP functions that are not callable?
某些 PHP 函数如 echo
和 empty
不可调用。例如,您不能按如下方式过滤数组:
$array = array_filter($array, 'empty');
PHP 中还有哪些不可调用的函数?有这些功能的列表吗?它们有不同的名称是因为它们不可调用还是它们也被称为 'functions'?
在语言或框架中,通常可以在"reserved words"项下搜索这样的限制。
在 PHP 的情况下,您可以在此处找到保留关键字列表:
https://www.php.net/manual/en/reserved.keywords.php
某些 PHP 函数如 echo
和 empty
不可调用。例如,您不能按如下方式过滤数组:
$array = array_filter($array, 'empty');
PHP 中还有哪些不可调用的函数?有这些功能的列表吗?它们有不同的名称是因为它们不可调用还是它们也被称为 'functions'?
在语言或框架中,通常可以在"reserved words"项下搜索这样的限制。
在 PHP 的情况下,您可以在此处找到保留关键字列表: https://www.php.net/manual/en/reserved.keywords.php