描述
键(key)用作内部标识符。允许使用小写字母数字字符、破折号和下划线。
参数
- $key
-
(string) (必填) 字符串键。
返回
(string) 净化清理后的键
源码
更新日志
版本 | 描述 |
---|---|
3.0.0 | 开始引入 |
使用示例
<?php $sankey = sanitize_key('Testexample1-_/[]{}'); echo $sankey; ?>
在上述代码中,使用一个大写字母和其他小写字母、数字(1)、破折号、下划线、正斜杠、方括号。所以sanitize_key()函数将一个大写字母改为小写,删除正斜杠和括号。
输出:
testexample1-_