php开发

[php开发]ubuntu 先安装php再安装nginx后,php不解析

本来服务器是nginx ,把他改成了apache,安装apache,sudo apt-get updatesudo apt-get install apache2然后访问ip,不成功vim /etc/apache2/apache2.conf在最后添加这个#ServerNameServerName 127.0.0.1就出来Apache...
发布时间:2023-10-11  

[php开发]Linux编译安装Apache+PHP

Linux编译安装Apache+PHP 来自:自学it网,http://www.zixue.it/。 1】编译安装Apache+PHP1.安装程序依赖库和开发环境 为了省事把所需要的库文件全都安装上,可以使用rpm包安装,也可以用yum命令安装,yum -y...
发布时间:2023-10-11  

[php开发]thinkphp nginx配置

#user nobody;worker_processes 1;#error_log logs/error.log;#error_log logs/error.log notice;#error_log logs/error.log info;#pid logs/nginx.pid;events {worker_connections 1024;}http {incl...
发布时间:2023-10-11  

[php开发]Windows(PHpstud)搭建Apache AND Nginx

一、搭建Apache( 每复制一个相当于新建一个虚拟主机)【 vhosts-conf】VirtualHost *:80? ?ServerAdmin ?webmaster@dummy-host2.example.com? ?DocumentRoot F:/www/console? ?ServerName ?console.com/Vir...
发布时间:2023-10-11  

[php开发]php_ssh2操作linux

?php/*** Created by PhpStorm.* User: Administrator* Date: 2018/9/15* Time: 14:11*/header(content-type:text/html;charset=utf8);ignore_user_abort();ini_set(default_socket_timeout, -1);set_time_l...
发布时间:2023-10-11  

[php开发]linux php扩展安装:已删除安装源码的php环境

本文主要记录一次添加php扩展的操作过程某php项目新增需求,用到curl模块,却发现未安装curl扩展,且php安装包已找不到。本次curl扩展安装,耗时近5个小时,特已此文记录主要思路:1、安装与项目环境相同php版本 ...
发布时间:2023-10-11  

[php开发]win10 php7.2 nginx 安装 imagick,适用于phpstudy

imagick 拓展的下载地址https://windows.php.net/downloads/pecl/releases/imagick/ 可惜的是这个地址最新版没有php7.2, 如果是7.1可以推荐https://windows.php.net/downloads/pecl/snaps/imagick/ 这个snaps 版本支...
发布时间:2023-10-11  

[php开发]centOS7 搭建LAMP服务器(apache+php+MariaDB)

安装httpd参考博客https://blog.csdn.net/qq_36113598/article/details/77532647yum install httpd配置ServerNamevi /etc/httpd/conf/httpd.conf将#ServerName www.example.com:80修改为ServerName localhost:80外...
发布时间:2023-10-11  

[php开发]nginx php-fpm conf文件编写

coco.conf##upstreamupstream php_coco_backend{ server 127.0.0.1:8019;}server { listen 80; server_name 139.224.68.68;location / { root htdocs_coco; in...
发布时间:2023-10-11  

[php开发]PHP-FPM监控shell

!/bin/bash#监控的网页地址url=http://dev2.jwsmed.com#fastcgi启动/重启/停止脚本路径PROG=/data/fistsoft/php/sbin/php-fpm#fastcgi重启记录日志文件LOG=/data/services/logs/php_5525/restart.log#返回结果...
发布时间:2023-10-11  

[php开发]监控(2)-php-fpm进程监控 shell

#!/bin/bash#监控的网页地址url=http://dev2.jwsmed.com#fastcgi启动/重启/停止脚本路径PROG=/data/fistsoft/php/sbin/php-fpm#fastcgi重启记录日志文件LOG=/data/services/logs/php_5525/restart.log#返回结果...
发布时间:2023-10-11  

[php开发]使用PHPstudy在Windows服务器下部署PHP系统

这篇文章主要介绍了关于使用PHPstudy在Windows服务器下部署PHP系统,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下 PHP网站一般运行在Apache服务器上,IIS服务器上也可以运行,但是不推荐,windo...
发布时间:2023-10-11  

[php开发]linux下php源码安装步骤

一、下载php源码下载地址:http://cn.php.net/downloads.php二、安装1、将下载的二进制包移动到/usr/local目录,解压缩文件包tar zxvf php-7.1.4.tar.gz2、进入解压的php文件夹下/usr/local/php-7.1.4,安装依赖,编...
发布时间:2023-10-11  

[php开发]PHP中你必须了解的4种Array函数

在日常的开发中foreach是我们用的最多的语法,但是有很多地方是不需要foreach就可以完成,而且比foreach更快。所以本篇文章给大家带来array_filter(),array_map(),array_walk(),array_reduce()这四个数组操作函数。只...
发布时间:2023-10-11