I\'d like to compare the settings I have on 2 different servers. Both are shared hosting so I don\'t think I have enough access to do it any other way but programmatically w
If you just want to compare two php.ini files:
#!/usr/bin/php $val ) { if( $val == $c2[$key] ) continue; echo $key.': '.$c1[$key].' // '.$c2[$key]."\n"; } ?>