What does the double underscores in these lines of PHP code mean?
$WPLD_Trans['Yes']=__('Yes',$WPLD_Domain);
$WPLD_Trans['No']=__('No',$WPLD_Domain);
|
What does the double underscores in these lines of PHP code mean?
|
|||
|
|
|
Looks like you're using Wordpress - |
|||||||||||||
|
|
Strictly speaking, it means nothing in PHP as it is not a pre-defined function. However, in many frameworks, like CakePHP, and other libraries the double underscore is a function used for translating strings based on the user's language/locale preference. |
|||
|
|
As mentioned it is generally used for translating text between languages but really it is used in the same context as any function call.
is no different then
|
|||||
|
|
A similar or third-party GNU gettext based implementation: http://www.php.net/manual/en/function.gettext.php
|
|||
|
|