這篇文章主要介紹了關於給PHP開啟shmop擴充實現共用記憶體,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
在項目開發中,想要實現PHP多個進程之間共用資料的功能,讓用戶端串連能夠共用一個狀態,需要開啟共用記憶體函數shmop。如果預期考慮會遇到這方面需求,那麼最好在編譯PHP的時候添加--with-shmop選項。但是編譯的時候沒有添加,只能在重新編譯配置了。
一、找到php源碼包裡的擴充目錄,進入shmop
# cd /usr/local/src/php-7.1.10/ext/shmop/
二、執行phpize,組建組態
# phpize
[root@bogon shmop]# lsacinclude.m4 build config.h.in config.nice configure CREDITS libtool Makefile.fragments missing package2.xml README shmop.laaclocal.m4 config.guess config.log config.status configure.in include ltmain.sh Makefile.global mkinstalldirs package.xml run-tests.php shmop.loautom4te.cache config.h config.m4 config.sub config.w32 install-sh Makefile Makefile.objects modules php_shmop.h shmop.c tests
三、執行命令開始編譯
# ./configure --with-php-config=/usr/local/php/bin/php-config# make && make install
See any operating system documentation about shared libraries formore information, such as the ld(1) and ld.so(8) manual pages.----------------------------------------------------------------------Build complete.Don't forget to run 'make test'.Installing shared extensions: /usr/local/php/lib/php/extensions/no-debug-non-zts-20160303/
四、修改php.ini開啟擴充
複製返回的那行路徑:/usr/local/php/lib/php/extensions/no-debug-non-zts-20160303/
# vim /usr/local/php/etc/php.ini
;extension=php_pdo_sqlite.dll;extension=php_pgsql.dllextension=/usr/local/php/lib/php/extensions/no-debug-non-zts-20160303/shmop.so //添加此行代碼,後面跟上shmop.so
重啟php
以上就是本文的全部內容,希望對大家的學習有所協助,更多相關內容請關注topic.alibabacloud.com!