首页 > 解决方案 > 使用正则表达式验证 wordpress 字段

问题描述

我使用 functions.php 中的代码在注册表单中创建了一个新字段:

function wooc_extra_register_fields() {?>
     
       <p class="form-row form-row-wide">
       <label for="reg_billing_first_name"><?php _e( 'Bitcoin Refund Address', 'woocommerce' ); ?><span class="required">*</span></label>
       <input type="text" class="input-text" name="billing_first_name" id="reg_billing_first_name" value="<?php if ( ! empty( $_POST['billing_first_name'] ) ) esc_attr_e( $_POST['billing_first_name'] ); ?>" />
       </p>
     
       <div class="clear"></div>
       <?php
 }
 add_action( 'woocommerce_register_form_start', 'wooc_extra_register_fields' );

现在我需要使用正则表达式验证该字段,如下所示:

^(bc1|[13])[a-zA-HJ-NP-Z0-9]{25,39}$

当前字段验证不能为空。如果有人可以提供帮助,我将不胜感激

function wooc_validate_extra_register_fields( $username, $email, $validation_errors ) {
      if ( isset( $_POST['billing_first_name'] ) && empty( $_POST['billing_first_name'] ) ) {
             $validation_errors->add( 'billing_first_name_error', __( 'Refund Address is required!', 'woocommerce' ) );
      }
    
         return $validation_errors;
}
add_action( 'woocommerce_register_post', 'wooc_validate_extra_register_fields', 10, 3 );

标签: phpregexwordpressvalidationwoocommerce

解决方案


使用preg_match

if ( preg_match( '/^(bc1|[13])[a-zA-HJ-NP-Z0-9]{25,39}$/', $_POST['billing_first_name'] ) ) {...}

推荐阅读