PHP Fatal error: Call to undefined function msg_ge

2019-08-28 23:15发布

问题:

I'm trying to call the msg_get_queue() in a CentOS 64 bits server.

I've downloaded the php sources and i have compiled the pcntl extensions following the steps:

phpize
./configure
make
cp modules/* /usr/lib64/php/modules/
cp modules/* /usr/lib/php/modules/

When i run php -m the module appears in the list. Is there a way to solve this problem without compiling php with the --enable-sysvmsg?

回答1:

No, you must compile it with --enable-sysvmsg.



标签: php apache web