I noticed this piece of code in Wordpress 2.9.1 (/wp-includes/compat.php), I don't understand it:
if ( !function_exists('_') ) {
function _($string) {
return $string;
}
}
It seems that PHP indeed has a function _($string)
but I can't find the documentation for it.