In phpinfo
it shows you the "Master" and "Local" values for ini settings.
I want to compare them to determine whether a setting has changed since the start of the script.
Getting the local values is easy:
<?php
$local = ini_get('setting');
But I can't find anything describing how to get the master value.