php preg_replace 内容类型

发布于 2024-10-30 16:07:30 字数 357 浏览 2 评论 0原文

如何检查 preg_replace 函数的内容是否为数字/字母数字?

例如,

如果数字:

$link= preg_replace("'\< (.*)\>'Ui","< <a href=\"x.php?id=\\1\">\\1</a>>",$link);

否则

$link= preg_replace("'\< (.*)\>'Ui","< <a href=\"x.php?word=\\1\">\\1</a>>",$link);

How can I check if the content of preg_replace function is numeric/alphanumeric or not?

e.g.

if numeric :

$link= preg_replace("'\< (.*)\>'Ui","< <a href=\"x.php?id=\\1\">\\1</a>>",$link);

else

$link= preg_replace("'\< (.*)\>'Ui","< <a href=\"x.php?word=\\1\">\\1</a>>",$link);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暗地喜欢 2024-11-06 16:07:30

查看 ctype_alnum() 函数

bool ctype_alnum ( 字符串 $text )

检查是否包含所有字符
提供的字符串、文本是
字母数字。在标准 C 语言环境中
字母只是 [A-Za-z]。

Have a look on ctype_alnum() function

bool ctype_alnum ( string $text )

Checks if all of the characters in the
provided string, text, are
alphanumeric. In the standard C locale
letters are just [A-Za-z].

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文