用法
int eregi(string pattern, string string, [array regs]);
定義和用法
eregi() 函數在由模式指定的字符串中搜索由字符串指定的字符串。搜索不區分大小寫。 Eregi() 在檢查字符串(例如密碼)的有效性時特別有用。
可選輸入參數 regs 包含所有匹配表達式的數組,這些表達式按正則表達式中的括號分組。
返回值
- 如果模式被驗證,則返回 true,否則返回 false。
示例
以下是一段代碼,將這段代碼複製並粘貼到文件中並驗證結果。
<?php
$password = "abc";
if (! eregi ("[[:alnum:]]{8,10}", $password))
{
print "Invalid password! Passwords must be from 8 - 10 chars";
} else {
print "Valid password";
}
?>
這將產生以下結果 -
Invalid password! Passwords must be from 8 - 10 chars
相關用法
- PHP eregi_replace()用法及代碼示例
- PHP ereg()用法及代碼示例
- PHP ereg_replace()用法及代碼示例
- PHP error_reporting()用法及代碼示例
- PHP error_get_last()用法及代碼示例
- PHP error_log()用法及代碼示例
- PHP easter_days()用法及代碼示例
- PHP eval()用法及代碼示例
- PHP explode()用法及代碼示例
- PHP each()用法及代碼示例
- PHP easter_date()用法及代碼示例
- PHP end()用法及代碼示例
- PHP empty()用法及代碼示例
- PHP expm1()用法及代碼示例
- PHP exif_read_data()用法及代碼示例
- PHP extract()用法及代碼示例
- PHP exif_imagetype()用法及代碼示例
- PHP exit( )用法及代碼示例
注:本文由純淨天空篩選整理自 PHP - Function eregi()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。