gpt4 book ai didi

php - pcntl_fork() 返回, fatal error : Call to undefined function pcntl_fork()

转载 作者:IT王子 更新时间:2023-10-29 00:11:00 25 4
gpt4 key购买 nike

我正在尝试使用 pcntl_fork() fork 命令行运行 XAMPP php 进程。当我运行以下命令时:

$pid = pcntl_fork();
if($pid == -1){
file_put_contents('testlog.log',"\r\nFork Test",FILE_APPEND);
return 1; //error
}
else if($pid){
return 0; //success
}
else{
file_put_contents($log, 'Running...', FILE_APPEND);
}

我得到:

Fatal error: Call to undefined function pcntl_fork()

谁能建议如何解决这个问题?

最佳答案

当 PHP 用作 Apache 模块(例如 XAMPP)时,不能使用函数 'pcntl_fork'。您只能在 CGI 模式或命令行中使用 pcntl_fork。

使用该函数会导致:' fatal error :调用未定义函数:pcntl_fork()'

来源:http://php.net/manual/en/function.pcntl-fork.php

关于php - pcntl_fork() 返回, fatal error : Call to undefined function pcntl_fork(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16826530/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com