无法将 detect_unicode 设置/查找为 Off

2022-01-21 00:00:00 php composer-php mamp phpdoc

I'm want to start using phpDocumentor and the manual installation keeps throwing an error about me not having set detect_unicode = Off in my php.ini in Terminal.

When I add it to my php.ini it doesn't take and I get the same issue when running the install. Nobody seems to have this problem, and for the life of me I can't figure it out.

https://github.com/phpDocumentor/phpDocumentor2/blob/develop/README.md#installation

What am I missing? (I did restart the MAMP server after the php.ini edit)

Screenshot of the error in terminal...

解决方案

If you have MAMP/MAMP Pro installed then the problem is that the PHP version available to your terminal will most probably be the system version located in:

/private/etc/

I had the same problem but in my case I didn't have a php.ini file in that directory so the best way to resolve it is to just create a symbolic link to the PHP version currently in use in your MAMP/MAMP Pro installation:

php.ini -> /Applications/MAMP/bin/php/php5.3.14/conf/php.ini

That solves the issue. Just change the php version php5.3.14 to whatever version of PHP you've selected to use in MAMP.

As @moderndegree mentions above, you can then optionally make this available to the terminal in the future by editing your path variable in your bash/zsh/etc:

export PATH="/Applications/MAMP/bin/php/php5.3.14/bin:$PATH"

相关文章