- PHP 正则表达式(PCRE)
- PHP 图像处理
- PHP 5 Array 函数
- PHP 5 Calendar 函数
- PHP cURL 函数
- PHP 5 Date/Time 函数
- PHP 5 Directory 函数
- PHP Error 和 Logging 函数
- PHP 5 Filesystem 函数
- PHP Filter 函数
- PHP FTP 函数
- PHP HTTP 函数
- PHP Libxml 函数
- PHP Mail 函数
- PHP 5 Math 函数
- PHP 杂项 函数
- PHP 5 MySQLi 函数
- PHP 5 SimpleXML 函数
- PHP lcfirst() 函数
- PHP 5 String 函数
- PHP XML Parser 函数
- PHP Zip File 函数
- PHP 5 时区
PHP filter_id() 函数
完整的 PHP Filter 参考手册
定义和用法
filter_id() 函数返回指定过滤器的 ID 号。
如果成功则返回过滤器的 ID 号,如果过滤器不存在则返回 NULL。
语法
filter_id(filter_name)
参数 | 描述 |
---|---|
filter_name | 必需。规定被获取 ID 号的过滤器。 必须是过滤器名称(不是过滤器 ID 名)。请使用 filter_list() 函数来获取所有被支持的过滤器的名称。 |
实例
<?php
echo(filter_id("validate_email"));
?>
echo(filter_id("validate_email"));
?>
代码的输出如下所示:
274
完整的 PHP Filter 参考手册
关注微信小程序
扫描二维码
程序员编程王