可能重复:
PHP 中的双下划线?
在我继承的 PHP 应用程序中,存在我难以理解的这些代码片段:
$foo = bar(array(
'format' => '',
'prev_text' => __('«'),
'next_text' => __('»'),
));
另一个例子:
$some_text = sprintf( '<span>' . __( 'Displaying %s–%s of %s' ) . '</span>%s',
number_format_i18n( ( $current_page - 1 ) * $per_page + 1 ),
number_format_i18n( min( $current_page * $per_page, $total ) ),
number_format_i18n( $total ),
$page_links
);
那些双下划线是什么?我试图寻找一个名称只是双下划线但没有找到的方法。那可能是什么?
谢谢。