PHP错误报告不遵守.ini设置中的error_reporting

Upgraded PHP yesterday on a small OS X (El Capitan) server via curl:

curl -s http://php-osx.liip.ch/install.sh | bash -s 7.0

Forgot to back up my .ini file, and now I've got to reset everything; error reporting had been, and ought to be

error_reporting = E_ALL & ~E_WARNING & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED

The loaded configuration file reported by phpinfo() is the document that I am editing, and most changes made to it are being respected. But I cannot get error_reporting to suppress warnings and notices.

What am I missing?