what you gave an example to is nothing more than a call to a function called "_" underscore, take this for example
<?
function _()
{
echo "This is a test.";
}
echo _();
?>
that will echo // This is a test.
what you supplied will simply cause a fatal error, cuz you are trying to call an undefined function