激活 pcntl_fork() ubuntu xampp

发布于 2024-10-27 19:53:12 字数 340 浏览 6 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

眼泪也成诗 2024-11-03 19:53:12

@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.

我喜欢麦丽素 2024-11-03 19:53:12

笔记:

目前,该模块无法在非 Unix 平台上运行
(Windows)。

http://php.net/manual/en/pcntl.installation.php

Note:

Currently, this module will not function on non-Unix platforms
(Windows).

http://php.net/manual/en/pcntl.installation.php

风筝在阴天搁浅。 2024-11-03 19:53:12

它是配置,但不是运行时。这是编译时配置。编译时你必须这样做:

./configure --enable-pcntl
make
make install

如果它没有编译,你就不能在不重新编译的情况下启用它。

It is configuration, but not runtime. It's compile time configuration. When compiling you have to do:

./configure --enable-pcntl
make
make install

If it's not compiled in you can't enable it without recompiling.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文