Tuesday, April 23, 2013

Function of erag and eragi and solution of deprecated warnings.

PHP Function ereg():

Syntax

int ereg(string pattern, string originalstring, [array regs]);

Definition and Usage

The ereg() function searches a string specified by string for a string specified by pattern, returning true if the pattern is found, and false otherwise. The search is case sensitive in regard to alphabetical characters.
The optional input parameter regs contains an array of all matched expressions that were grouped by parentheses in the regular expression.

Return Value

  • It returns true if the pattern is found, and false otherwise.

Example

Following is the piece of code, copy and paste this code into a file and verify the result.
";
}
else
{
   echo "Could not found a .com
";
}
$retval = ereg(("(\.)(com$)"), $email_id, $regs);
if( $retval == true )
{
   echo "Found a .com and reg = ". $regs[0];
}
else
{
   echo "Could not found a .com";
}
?>
This will produce following result
Found a .com
Found a .com and reg = .com


PHP Function eregi()

Syntax

int eregi(string pattern, string string, [array regs]);

Definition and Usage

The eregi() function searches throughout a string specified by pattern for a string specified by string. The search is not case sensitive. Eregi() can be particularly useful when checking the validity of strings, such as passwords.
The optional input parameter regs contains an array of all matched expressions that were grouped by parentheses in the regular expression.

Return Value

  • It returns true if the pattern is validated, and false otherwise.

Example

Following is the piece of code, copy and paste this code into a file and verify the result.

This will produce following result
Invalid password! Passwords must be from 8 - 10 chars


warnings and solutions:-

function ereg() is deprecated:

solution: ereg() is replace into preg_match and add "/" at start and end.
 otherwise use "~"
exp:-

 if (!preg_match("/^<([a-zA-Z1-9]{1,$maxElem}) *(.*)>$/", $p_tag, $reg)) return false;

eragi_replace into preg_replace.

otherwise simply call this function in your page :-

error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);

 


 

No comments: