Tagged Questions
8
votes
5answers
2k views
Double Underscore in PHP?
What does the double underscores in these lines of PHP code mean?
$WPLD_Trans['Yes']=__('Yes',$WPLD_Domain);
$WPLD_Trans['No']=__('No',$WPLD_Domain);
3
votes
4answers
3k views
Underscore in php function
What does it mean when a PHP function name begins with an underscore?
for example: __construct()
I know what the construct means but I've seen other places where the function begins with an ...