Home > Backend Development > PHP Tutorial > 奇怪的问题 为什么自定义函数 不可以用其他内置函数了

奇怪的问题 为什么自定义函数 不可以用其他内置函数了

WBOY
Release: 2016-06-20 12:47:23
Original
990 people have browsed it

$PostsArray[0]['Content'] = preg_replace("/<img  src=\"([^ alt="奇怪的问题 为什么自定义函数 不可以用其他内置函数了" ><]*)\" 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;}
Copy after login


$url $name取值都是正常 但是我用替换函数 其他函数都没用 为什么呢?


回复讨论(解决方案)

$url $name放到内置函数调用就是空白 不知道为什么 是哪个地方格式不对还是

$url $name只能return出来 echo 不可以 看来是我替换函数那里写错了 正确写法是什么

你没有遵守 preg_replace 的规则
preg_replace 的第二个参数是字符串或数组,并不是函数
preg_replace_callbact 的第二个参数才是函数

preg_replace 改为 preg_replace_callback

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template