Code: Select all
<?php
print _();
?>Given a parameter, it just seems to echo the string back.
Meh, more curious than anything.
Moderator: General Moderators
Code: Select all
<?php
print _();
?>Code: Select all
<?php
$ref = new ReflectionFunction('_');
var_dump($ref->getExtension());Code: Select all
object(ReflectionExtension)#2 (1) { ["name"]=> string(7) "gettext" }