我遇到了这个错误
调用未定义函数 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 '我的真实组 ID 是 '.posix_getgid(); //20
posix_setegid(40);
echo '我的真实组 ID 是 '.posix_getgid(); //20
echo '我的有效组 ID 是 '.posix_getegid(); //40
?>
我遇到了这个错误
调用未定义函数 posix_getuid()
这是通过以下命令解决的
yum -y install php-process
service httpd restart