大家帮我一下看看这个检查图片类型的函数有什么问题呀?
发布网友
发布时间:2022-04-24 00:24
我来回答
共1个回答
热心网友
时间:2023-10-15 09:21
没必要用正则,str_replace就可以了,效率还高
str_replace("height=\"480\"","height=\"480\" id=\"videoObject\"",$body);
正则替换的话就这样
preg_replace("/height=\"480\"/is","height=\"480\" id=\"videoObject\"",$body);
热心网友
时间:2023-10-15 09:21
没必要用正则,str_replace就可以了,效率还高
str_replace("height=\"480\"","height=\"480\" id=\"videoObject\"",$body);
正则替换的话就这样
preg_replace("/height=\"480\"/is","height=\"480\" id=\"videoObject\"",$body);