PHP filter_id() 函數(shù)
PHP filter_id() 函數(shù)

定義和用法
filter_id() 函數(shù)返回指定過濾器的 ID 號。
如果成功則返回過濾器的 ID 號,如果過濾器不存在則返回 NULL。
語法
filter_id(filter_name)
參數(shù) | 描述 |
---|---|
filter_name | 必需。規(guī)定被獲取 ID 號的過濾器。 必須是過濾器名稱(不是過濾器 ID 名)。請使用 filter_list() 函數(shù)來獲取所有被支持的過濾器的名稱。 |
實(shí)例
<?php
echo(filter_id("validate_email"));
?>
echo(filter_id("validate_email"));
?>
代碼的輸出如下所示:
274

相關(guān)文章
- PHP 教程
- PHP 簡介
- PHP 安裝
- PHP 常量
- PHP Secure E-mails
- PHP 高級過濾器
- PHP array() 函數(shù)
- PHP array_diff() 函數(shù)
- PHP array_diff_ukey() 函數(shù)
- PHP array_udiff_assoc() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP compact() 函數(shù)
- PHP ksort() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP reset() 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP FTP 函數(shù)
- PHP HTTP 函數(shù)
- PHP 雜項(xiàng) 函數(shù)