gpt4 book ai didi

php - 正则表达式帮助 : Match any image file beginning with an underscore

转载 作者:行者123 更新时间:2023-12-03 23:04:41 26 4
gpt4 key购买 nike

下面的语句将加载所有不以下划线字符开头的图像...

if (!is_dir($file) && preg_match("/^[^_].*\.(bmp|jpeg|gif|png|jpg)$/i", $file)) 

我需要对其进行修改,使其仅加载以下划线开头的图像。

最佳答案

只需删除字符集上的否定:[^_] 变为 _:

if (!is_dir($file) && preg_match("/^_.*\.(bmp|jpeg|gif|png|jpg)$/i", $file)) 

关于php - 正则表达式帮助 : Match any image file beginning with an underscore,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2139627/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com