how to replace eregi to preg_match? [duplicate]
Possible Duplicate:
Converting ereg expressions to preg
I want to change this line with preg_match but it doesn't works.
if ($file != "." && $file != ".." && !eregi(".jpg".$thumbext."$",$file) && eregi(".jpg$",$file)){
I tried:
if ($file != "." && $file != ".." && !preg_match(".jpg".$thumbext."$",$file) && preg_match(".jpg$",$file)){
How it开发者_高级运维 should be?
Thanks!
preg requires delimiters:
preg_match('/.jpg'.$thumbex.'$/',$ile)
精彩评论