一、配置XAMPP的域名
1、将项目移动到/Applications/XAMPP/xamppfiles/htdocs/目录下
2、编辑httpd.conf文件
打开终端,输入open /Applications/XAMPP/xamppfiles/etc
双击打开http.conf文件,并搜索httpd-vhosts.conf,将所在行的注释取消掉
在文件最后添加如下代码,并保存该文件
代码
<Directory "/Applications/XAMPP">;
Options Indexes FollowSymLinks ExecCGI
Includes #don't >permission see list
Options All
AllowOverride All
Order allow,deny
Allow from all
</Directory>
说明
3、编辑host文件
同上的方式,在终端输入open /etc,打开host文件,并设置自己的域名跟127.0.0.1进行绑定
4、编辑httpd-vhosts.conf文件
同上的方式,在终端输入open /Applications/XAMPP/xamppfiles/etc/extra,打开httpd-vhosts.conf文件,并DocumentRoot设置成自己项目的根目录,ServerName设置成之前设定的域名
******到这里整个XAMPP域名就配置好了******
二、php项目中出现的一些问题
1、php从数据库读取数据乱码
具体解决方法:(1)修改my.cnf文件,(2)将数据库连接的编码类型改成auto (3)重启数据库
2、查找数据库的安装路径
which mysql
brew info mysql
mysql.server start
mysql -uroot
3、php7.2废弃的一些方法
问题:The each() function is deprecated. This message will be suppressed on further
解决方法:
网上的解决方案