php5でphp4のスクリプトを手っ取り早く動かす

// error_reporting( E_ALL ^ E_NOTICE );
if ( (int) PHP_VERSION > 4 ) {
    ini_set( 'zend.ze1_compatibility_mode', true );
}


set_error_handler()使ってる場合

if ( (int) PHP_VERSION > 4 ) {
    set_error_handler( $callback, E_ALL );
}
else {
    set_error_handler( $callback );
}


phpタグがないとシンタックスハイライトしないのな。