wordpress建站:怎么利用sanitize_key清除 key 中的无效字符

2024年10月17日 建站教程

函数原型:

sanitize_key( string $key ): string

在 WordPress 内部,做为“key”使用的字符串,都需要使用这个函数【消毒】– 只允许使用小写字母数字字符、短划线和下划线。

函数源码:

function sanitize_key( $key ) {
  $sanitized_key = '';

  if ( is_scalar( $key ) ) {
    $sanitized_key = strtolower( $key );
    $sanitized_key = preg_replace( '/[^a-z0-9_\-]/', '', $sanitized_key );
  }

  return apply_filters( 'sanitize_key', $sanitized_key, $key );
}

使用举例:

<?php
$sankey = sanitize_key('Testexample1-_/[]{}');

// 输入 testexample1-_
echo $sankey;
?>

本文链接:http://so.lmcjl.com/news/15595/

展开阅读全文
相关内容