php截取字符串中指定的标签的值并替换

2024-12-02 06:40:23
推荐回答(2个)
回答1:

利用php自带的函数preg_match就可以了。
在php中preg_match()函数是用来执行正则表达式的一个常用的函数
// 从 URL 中取得主机名,并替换
preg_match("/^(http://)?([^/]+)/i", "http://www.***.net/index.html", $matches);
$host = $matches[2];
// 从主机名中取得后面两段
preg_match("/[^./]+.[^./]+$/", 'test', $matches);
echo "domain name is: {$matches[0]}n";
?>
本例将输出:
domain name is: test

回答2:

要替换的话可以这样写
$str='ddd';
$str=preg_replace("/src=\"(.+?)\"/",'src="jjj.jpg"',$str);
echo $str;
?>