本文介绍了用于验证文件夹名称的正则表达式文件名的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想验证一个文件名
文件或文件夹的名称不应包含 \/?% * : |" < > .
Name of file or folder should not contain \ / ? % * : | " < > .
你能建议我在 preg_match() 中使用的正则表达式吗?
Could you please suggest me the regex expression to use in preg_match()?
谢谢.
推荐答案
使用 strpbrk() 函数.
if (strpbrk($filename, "\\/?%*:|\"<>") === FALSE) {
/* $filename is legal; doesn't contain illegal character. */
}
else {
/* $filename contains at least one illegal character. */
}
这篇关于用于验证文件夹名称的正则表达式文件名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!