我一分一秒的正反就是这个样子
/[a-z0-9]{40}/i
它将匹配任何字符串中没有任何含有字母和/或数字的空格。
我怎样才能更改它, 这样它至少必须包含至少一个数字和至少一个字母字符, 这样如果字符串是全部数字或所有字母, 那么它就不会匹配?
谢谢 谢谢
我一分一秒的正反就是这个样子
/[a-z0-9]{40}/i
它将匹配任何字符串中没有任何含有字母和/或数字的空格。
我怎样才能更改它, 这样它至少必须包含至少一个数字和至少一个字母字符, 这样如果字符串是全部数字或所有字母, 那么它就不会匹配?
谢谢 谢谢
/([:alpha:].*[:digit:]|[:digit:].*[:alpha:])/
这就要求一个号码随信或一个号码后的信后。
从您原来的正则, 您似乎想要执行40个字符的总共要求。 为此, 请尝试 :
/^(.*[:alpha:].*[:digit:].*|.*[:digit:].*[:alpha:].*){40}$/
注意 额外的 < code>. {{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{>>>> s。只要有1个阿尔法和1个位数,其他字符可以是任何东西。只要有40个。}}只要有40个。
如果您想要避免匹配白色空间, 请将每个 < code>.\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\可以\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...
<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...
I found this script online that creates a thumbnail out of a image but the thumbnail image is created with poor quality how can I improve the quality of the image. And is there a better way to create ...
如何确认来自正确来源的数字。
Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...
I wonder there is a way to post a message to a facebook business page with cURL? thanks
I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...
How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...