首页
发现
标签
搜索
APP下载
注册
登录
首页
发gggg2现
榜单
标签
APP下载
搜索
注册
登录
搜索
LisonRead
本次搜索耗时
0.072
秒,为您找到
298
个相关结果.
搜书籍
搜文档
//计算年或月有多少天 function num_
50
2020-07-30
《PHP》
//计算年或月有多少天 function num_days_or_year($str){ //判断是年 if(strlen($str) ==4){ $days=0; for($m=1;$m<=12;$m++){ $days = $days + cal_days_in_month(CAL_...
docker run.sh命令示例#!/bin/s
50
2022-07-16
《docker》
docker run.sh命令示例 #!/bin/shdocker run \ //正式环境要加上 --name php7133 --log-driver none \ -v "$PWD/dev_www":/var/www/html:rw \ -v "$PWD/dev_nginx/conf.d":/etc/nginx/conf.d:rw \ ...
解压缩操作命令zip和unzipyum inst
50
2021-01-05
《Linux系统》
解压缩操作命令zip和unzip yum install -y zip zip -r we.zip ./ yum install -y unzip unzip test.zip 它会默认将文件解压到当前目录,如果要解压到指定目录,可以加上 -d 选项 # unzip test.zip -d /root/ # -x 参数后加要排除的文件或...
centos启动重启php-fpmps axu|g
49
2022-04-14
《Linux系统》
centos启动重启php-fpm ps axu|grep php-fpmkill 14525 启动php 找到php-fpm的目录下执行 ./php-fpm
获取客户端IP地址,第一种: functiong
49
2018-12-21
《PHP》
获取客户端IP地址,第一种: function get_client_ip($type = 0) { $type = $type ? 1 : 0; static $ip = NULL; if ($ip !== NULL) return $ip[$type]; if (isset($_SERVER['HT...
Nginx 之fastcgi常用配置项说明在LNM
49
2022-10-26
《Linux系统》
Nginx 之fastcgi常用配置项说明 在LNMP环境中,我们都知道nginx如果要解析php脚本语言,就必须通过配置fastcgi模块来提供对php支持,那么在配置fastcgi的时候,关于fastcgi配置项的值应该怎么设置才能让其发挥出更出色的性能呢,下面就讲讲关于nginx模块中fastcgi这部分通用参数介绍 1.1 fastcgi_con...
ext/mysqlnd/mysqlnd.h:没有那
49
2022-04-18
《Mysql》
ext/mysqlnd/mysqlnd.h:没有那个文件或目录,编译出错 php的一个已知bug,不行就换版本吧: https://bugs.php.net/bug.php?id=65377 还有一种解决办法,重现安装php,加这行 --with-mysql=shared,mysqlnd include "ext/mysqlnd/mysqlnd.h"...
nginx下gzip配置参数详解gzip语法: g
49
2022-10-22
《Linux系统》
nginx下gzip配置参数详解 gzip 语法: gzip on|off默认值: gzip off作用域: http, server, location, if (x) location开启或者关闭gzip模块 gzip_buffers 语法: gzip_buffers number size默认值: gzip_buffers 4 4k/8k作用域: ...
httpd-vhosts.conf Virtua
49
2019-07-10
《PHP》
httpd-vhosts.conf <VirtualHost *:80> DocumentRoot "E:/wwwroot/empty" ServerName _ <Location /> Order Allow,Deny Deny from all </Location> </Virtu...
php安装redis扩展wget http://p
49
2022-04-15
《redis》
php安装redis扩展 wget http://pecl.php.net/get/redis-3.1.3.tgztar zxvf redis-3.1.3.tgzcd redis-3.1.3/home/php/bin/phpize./configure --with-php-config=/home/php/bin/php-configmake && ma...
1..
«
9
10
11
12
»
..30