在 PHP 代码中使用下划线

Use of underscore in PHP code

首先,要明确的是,我不是在谈论使用下划线作为函数名称中单词的视觉分隔等,例如下面的代码,woocommerce_wp_text_input.

在特定的 PHP WordPress WooCommerce 相关 tutorial 之后,我注意到编码器随机插入下划线和多个连续的下划线,例如:_text_field__( 'Enter the custom value here.', 'woocommerce' ) .这要么是演示代码片段中使用的约定,要么具有某种 PHP 含义。

    // Text Field
woocommerce_wp_text_input( 
    array( 
        'id'          => '_text_field[' . $variation->ID . ']', 
        'label'       => __( 'My Text Field', 'woocommerce' ), 
        'placeholder' => 'http://',
        'desc_tip'    => 'true',
        'description' => __( 'Enter the custom value here.', 'woocommerce' ),
        'value'       => get_post_meta( $variation->ID, '_text_field', true )
    )
);

是否有关于在编码演示中使用任意数量的下划线的约定?起初我怀疑他使用下划线来强调某些值是针对他的情况的,但我真的不知道。

没有任何约定。

_() (one underscore) is an alias of the PHP function gettext()。用于本地化。

__()(两个下划线)是Wordpress定义的函数,也是为了本地化。您可以将其视为 _() 的更灵活版本,但它仅在 WP 项目中可用。