激活 pcntl_fork() ubuntu xampp
我在 php.ini 中的函数 pcntl_fork() 方面遇到一些问题。
我正在使用 XAMPP,并且正在尝试使用该函数,但始终显示此错误:
调用未定义的函数 pcntl_fork()
我在 Google 和 XAMPP 论坛上挖掘了一些东西,但找不到任何完全有用的东西。 我发现一些论坛说我需要启用一些名为
--启用-pcntl
我看到了 phpinfo() 并且我在配置命令中有这个选项。 你能帮助我吗?
提前致谢,
埃尔卡斯
I'm having some problems with the function pcntl_fork() in php.
I'm using XAMPP and I'm trying to use that function and keeps me showing this error:
Call to undefined function
pcntl_fork()
I dig something on Google and in XAMPP forums but couldn't find anything totally useful.
I found some forums saying that i need to enable some configuration called
--enable-pcntl
I saw the phpinfo() and i have that option in the configure command.
Can you help me?
Thanks in adavnce,
Elkas
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
@Elkas,我不知道你的 XAMPP 版本,但我计算机上的 XAMPP 1.8.0 带有 pcntl 扩展名。你可以尝试命令“/opt/lampp/bin/php -m | grep 'p'”来检查你的php的扩展列表。
@Elkas, I don't know your XAMPP version, but XAMPP 1.8.0 on my computer is with pcntl extension. You can try command "/opt/lampp/bin/php -m | grep 'p' " to check the extension list of your php.
笔记:
http://php.net/manual/en/pcntl.installation.php
Note:
http://php.net/manual/en/pcntl.installation.php
它是配置,但不是运行时。这是编译时配置。编译时你必须这样做:
如果它没有编译,你就不能在不重新编译的情况下启用它。
It is configuration, but not runtime. It's compile time configuration. When compiling you have to do:
If it's not compiled in you can't enable it without recompiling.