PHP7在XAMPP上运行共享内存(schmop)?

时间:2017-10-10 19:59:21

标签: php windows xampp

我试图在PHp中运行shared memory个功能。但是,在运行脚本时,我会收到函数未定义的错误。

enter image description here

为了使用共享内存,我读了这个:

  

要使用shmop,您需要在配置行中使用--enable-shmop参数编译PHP。

但是我不知道如何在XAMPP上做到这一点

1 个答案:

答案 0 :(得分:1)

在你的php.ini中,添加extension = php_shmop.dll。默认情况下,此扩展是共享的,因此需要加载它以使函数可用。

感谢。