“Php常用扩展及docker安装”的版本间的差异
跳到导航
跳到搜索
(创建页面,内容为“[https://www.laruence.com/2012/02/14/2544.html PHP Taint - 一个用来检测XSS/SQL/Shell注入漏洞的扩展]”) |
|||
(未显示同一用户的2个中间版本) | |||
第1行: | 第1行: | ||
+ | =opcache= | ||
+ | <pre> | ||
+ | RUN docker-php-ext-configure opcache --enable-opcache && docker-php-ext-install opcache | ||
+ | |||
+ | php -m | grep O | ||
+ | |||
+ | Zend OPcache | ||
+ | </pre> | ||
+ | |||
+ | =see also= | ||
[https://www.laruence.com/2012/02/14/2544.html PHP Taint - 一个用来检测XSS/SQL/Shell注入漏洞的扩展] | [https://www.laruence.com/2012/02/14/2544.html PHP Taint - 一个用来检测XSS/SQL/Shell注入漏洞的扩展] | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | [[category:php]] |
2020年8月1日 (六) 03:22的最新版本
opcache
RUN docker-php-ext-configure opcache --enable-opcache && docker-php-ext-install opcache php -m | grep O Zend OPcache