" ); while ( $line !== false ) { $val = eval( $line . ";" ); if( is_null( $val ) ) { echo "\n"; } elseif( is_string( $val ) || is_numeric( $val ) ) { echo "$val\n"; } else { var_dump( $val ); } if ( function_exists( "readline_add_history" ) ) { readline_add_history( $line ); } $line = readconsole( "> " ); } print "\n"; ?>