Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 shell 登录到 ubuntu 服务器。我想在 php.ini 中启用 curl
我使用了 whereis php.ini 命令,它显示 /usr/bin/php 作为 php.ini 的位置。
但是,每次我尝试将 CD 写入 php 时,它都会显示“php 不是目录” 我如何编辑我的 php.ini?
还是我需要在其他地方创建一个?
/usr/bin/php 是 PHP 的可执行解释器。
您需要找到现有的 php.ini 文件:
$ find / -name php.ini
您可能希望在 /etc 中的某个位置找到它,因此您可能会发现这样更快:
$ find /etc -name php.ini
PHP 会告诉你它从哪里加载配置文件或者它期望它通过运行:
php --ini
或者:
php -i | grep -i php.ini