我想从字符串中取出一些值(在函数中)
if(!preg_match('/(.+)\.([0-9]*)x([0-9]*)(w|wr|r)?\.([^\.]+)$/', $filename, $matches))
return false;
$file = $matches[1];
$width = $matches[2];
$height = $matches[3];
$set_watermark_or_nonconstrain = $matches[4]; // that's what I need to fix
$ext = $matches[5];
但是,如果我设置像{$ image [0] - > filename | resize:614:300:r}(Smarty)这样的字符串,除了$ set_watermark_or_nonconstrain总是'w'之外,一切顺利。我需要设置什么而不是w | wr | r从这个子掩码中拉出'w','wr'或'r'?谢谢!
答案 0 :(得分:1)
使用您给出的字符串示例,以下表达式执行您要查找的内容
$string = '{$image[0]->filename|resize:614:300:r}';
if(preg_match('/\{([^\|]+)\|[^:]+:(\d+):(\d+):([^}]+)/', $string, $m)){
echo 'm1: '.$m[1] ."<br />\n";
echo 'm2: '.$m[2] ."<br />\n";
echo 'm3: '.$m[3] ."<br />\n";
echo 'm4: '.$m[4] ."<br />\n";
}
产生以下输出:
m1: $image[0]->filename
m2: 614
m3: 300
m4: r