源码安装php后没有php.ini怎么办?

PHPz
Release: 2020-09-04 17:18:30
Original
2040 people have browsed it

源码安装php后没有php.ini怎么办?

源码安装PHP完成后,在安装目录中是没有php.ini文件的,需要手动把源代码根目录下的php.ini-development或php.ini-production文件复制到安装目录的lib目录中(或者其他希望的目录中)并重命名为php.ini。

如果php.ini文件修改后不生效,大部分都是因为没有找对php.ini文件,可以使用如下方法来查看php.ini文件的位置:

1、新建PHP文件,写入如下代码:

<?php
echo phpinfo();
Copy after login

然后再浏览器访问该页面,搜索php.ini。

2、在命令行中执行如下命令即可查看php.ini文件位置:

#注意使用自己的PHP路径
/user/local/php/bin/php --ini
Copy after login

php.ini文件默认放在PHP安装目录下的lib目录中,可以在编译时使用--with-config-file-path参数来修改php.ini的存放位置。

更多相关知识,请访问 PHP中文网!!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!