$PostsArray[0]['Content'] = preg_replace("/<img src=\"([^><]*)\" alt=\"([^><]*)>/i",aimg('\\1','\\2'), $PostsArray[0]['Content']);function aimg($url,$name){ //$name=strstr('gif',$url); $name2=$name; $name= strpos($name2,'gif'); if(strstr($url,'.gif')!=false){ //$name='<img src="'.$url.'" alt="'.$name.'>'; }else{ } return $name;}
$url $name放到内置函数调用就是空白 不知道为什么 是哪个地方格式不对还是
$url $name只能return出来 echo 不可以 看来是我替换函数那里写错了 正确写法是什么
你没有遵守 preg_replace 的规则
preg_replace 的第二个参数是字符串或数组,并不是函数
preg_replace_callbact 的第二个参数才是函数
preg_replace 改为 preg_replace_callback