我遇到了这个错误
Call to undefined function posix_getuid()
这个问题通过以下命令解决了
yum -y install php-process
service httpd restart
(PHP 4, PHP 5, PHP 7, PHP 8)
posix_getgid — 返回当前进程的真实组 ID
此函数没有参数。
返回真实组 ID,作为 int。
示例 #1 posix_getgid() 示例
此示例将打印出真实组 ID,即使有效组 ID 已更改。
<?php
echo 'My real group id is '.posix_getgid(); //20
posix_setegid(40);
echo 'My real group id is '.posix_getgid(); //20
echo 'My effective group id is '.posix_getegid(); //40
?>
我遇到了这个错误
Call to undefined function posix_getuid()
这个问题通过以下命令解决了
yum -y install php-process
service httpd restart