How to use filter id in PHP

This article describe about filter_id() function in PHP.
  • 1481

filter_id() function

ID number return of a specified filter by the filter_id() function.

On success return the filter ID number, and if filter doesn't exits return NULL.

Syntax

filter_id (filter_name)

 

Parameter Description
filter_name Required. Define the filter for get the id.

Example

<html>
<body>
<?php
echo(filter_id("validate_email"));
?>
</body>
</html>

 

Output

pic2.jpg

You may also want to read these related articles Click here

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

Categories

More Articles

© 2020 DotNetHeaven. All rights reserved.