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.
PHP 无法识别此函数:
http_head()
从http_head 参考:
(PECL pecl_http >= 0.1.0)
我不知道这是什么意思:
但我曾经phpversion()验证我正在运行:
phpversion()
5.2.17
这意味着您必须安装PECL扩展pecl_http版本 0.1.0 或更高版本。
如果函数是 php 原生的,则版本要求指定 PHP;例如对于函数lcfirst()
(PHP 5 >= 5.3.0)
它没有与 php 捆绑在一起,它是一个 PECL 扩展。
从手册:
此 PECL 扩展未与 PHP 捆绑
安装此 PECL 扩展的信息可以在名为安装 PECL 扩展的手册章节中找到。
.