Return the filter ID of the VALIDATE_EMAIL filter:
<?php
echo(filter_id("validate_email"));
?>
Try it Yourself »
The filter_id() function returns filter ID of a specified filter name.
filter_id(
filter_name)
Parameter | Description |
---|---|
filter_name | Required. The filter name to get the id from. Tip: Use filter_list() to list all available filters |
Return Value: | The filter ID on success, FALSE if filter does not exist |
---|---|
PHP Version: | 5.2+ |
Here, the filter_id() and the filter_list() functions are used to list the ID and filter name of all filters:
<table>
<tr>
<td>Filter Name</td>
<td>Filter ID</td>
</tr>
<?php
foreach (filter_list() as $id =>$filter) {
echo '<tr><td>' . $filter . '</td><td>' . filter_id($filter) . '</td></tr>';
}
?>
</table>
Try it Yourself »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!