版本:v7.3.5 官方版大小:14M
类别:软件开发系统:linux
立即下载php for linux是为linux系统推出的PHP安装环境包,适合初学者使用,体验独特的编程思维和运行方式,更高效的进行程序的编写,欢迎有需要的朋友来IT猫扑网下载。
PHP是一种新型的CGI程序编写语言,易学易用,运行速度快,可以方便快捷地编写出功能强大,运行速度快,并可同时运行于Windows、Unix、Linux 平台的Web后台程序,内置了对文件上传、密码认证、Cookies 操作、邮件收发、 动态GIF生成等功能。PHP4提供了更多web server的支持,例如Zeus, Netscape Enterprise, Apache Win32 module,并增加了很多性能。
Apache安装
yum install httpd
启动
systemctl start httpd.service #启动
systemctl stop httpd.service #停止
systemctl restart httpd.service #重启
第二、设置开机启动/关闭
systemctl enable httpd.service #开机启动
systemctl disable httpd.service #开机不启动
第三、检查httpd状态
systemctl status httpd.service
关闭防火墙
关闭:systemctl stop firewalld.service
查看状态:systemctl status firewalld.service
PHP安装
yum -y install php
php各项服务安装:
yum -y install php-gd php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-snmp php-soap curl curl-devel php-mysql
安装MariaDB数据库
centos 7.0中,已经使用MariaDB替代了MySQL数据库,原因你懂的,MYSQL被oracle收购以后,前景堪忧,所以MYSQL兄弟MariaDB就出来了,继续开源事业。
安装:yum -y install mariadb-server mariadb-client
启动:systemctl start mariadb.service
停止:systemctl stop mariadb.service
查看状态:systemctl status mariadb.service
开机启动:systemctl enable mariadb.service
重启:systemctl restart mariadb.service
网站文件夹:
/var/www/html
然后把你的PHP文件上传到html文件夹里去浏览器中输入主机IP就可以了
查看全部