本文目录一览:
- 1、mac os php开发环境在哪个文件夹
- 2、Mac下安装配置PhpStorm开发环境
- 3、mac的php装在哪个文件夹里
- 4、怎么查看mac php安装目录
- 5、mac中的php文件是否非要放在library里的document?
mac os php开发环境在哪个文件夹
1.先介绍几个命令
// 启动Apache服务
sudo apachectl start
// 重启Apache服务
sudo apachectl restart
// 停止Apache服务
sudo apachectl stop
// 查看Apache版本
httpd -v
Mac OS自带Apache,只需要启动Apache就行。
打开终端,输入命令:sudo apachectl start
2.打开浏览器,在地址栏中输入localhost,出现It Works字符串,就说明Apache已经成功启动
3.在Macbook pro下,Apache的网站服务器根目录在/Library/WebServer/Documents路径下
Mac下安装配置PhpStorm开发环境
参考: # macOS下安装配置PhpStorm
默认mac中都是自带php,apache,PHP在目录/usr/bin/php中
apache默认站点根目录为:/Library/WebServer/Documents
配置文件:/etc/apache2/httpd.conf
文本编辑器或者vim打开httpd.conf
搜索LoadModule php7_module libexec/apache2/libphp7.so,将前面#号去掉。
略...
注意:xcdebug.so默认是在/usr/lib/php/extensions/目录下,但是no-debug-non-zts-20180731版本不尽相同,需要设置成自己系统里的。
工程需要创建在/Library/WebServer/Documents/下面
可以将工程目录放在左侧的快捷导航中
在Phpstorm的Preference-Build, Execution, Deployment-Deployment-点+新建, name自定义,我起名叫webroot。 type选择Local or mounted folder。
Mappings中,我们看到local path为我们新建的php目录地址,web path on server 'webroot' (relative to folder).
因为apache容器的根目录为/Library/WebServer/Documents/,所以在其中填入相对于/Library/WebServer/Documents/的目录名称,即HelloPHP保存。
配置安装Xdebug
首先检查phpstorm的xdebug配置,这里的debug port要和php.ini里面的xdebug.remote_port相一致!默认是9000,如果9000端口被占用的话,可以改成其他端口。
进入DebugDBGpProxy,IDE key填PHPSTORM,host填localhost,port 填80
设置localService
新建一个server
设置run、debug自动浏览器打开的开始页面
启动
mac的php装在哪个文件夹里
1、如果你用过smarty模板引擎、MVC类似框架如tp,那么你自己写一个框架噢!
2、你要对php的继承实现以及其中的小知识点熟知;
3、先列出你的框架目录,什么地方放什么,然后写你的配置文件
4、用到的高频函数有:require 、 require_once 、 file_exites等!
如:sybase_connect连上数据库。
语法: int sybase_connect(string [servername], string [username], string [password]);
返回值: 整数函数种类: 数据库功能 本函数用来打开与 Sybase 数据库的连接。
参数 servername 为欲连上的数据库服务器名称。
参数 username 及 password 可省略,分别为连接使用的帐号及密码。
使用本函数需注意早点关闭数据库,以减少系统的负担。
连接成功则返回数据库的连接代号,失败返回 false 值。
怎么查看mac php安装目录
启动apache 默认是启动的
sudo apachectl start
2 查看版本
sudo apachectl -v
3 启用php
打开文件 sudo vi /etc/apache2/httpd.conf
找到 #LoadModule php5_module libexec/apache2/libphp5.so 去掉 #
4 修改DocumentRoot
1) 找到 DocumentRoot "/Library/WebServer/Documents"
修改 DocumentRoot "[自动的路径]"
2) 找到 Directory "/Library/WebServer/Documents"
修改为Directory "[上面的路径]"
重启apache sudo apachectl restart!如果遇到php类的不明白的问题,可以去后盾人找找相关的教学视频看看,多看看不就懂得懂了,希望对你有用,给个采纳吧,谢谢
mac中的php文件是否非要放在library里的document?
php文件放在哪里可用,是由您的web服务器决定的。
Mac里面,默认的应该是apache,所以,如果想把php文件放在其他位置,请修改apache设置。