文字列は次のとおりです:
“http://www.sina.com/music1/23412455.mp3?time=2234523&type=mp3”
“http://www.sina.com/music2/4325243.mp3?time =2234523&type =mp3”
“http://www.sina.com/music3/346553.mp3?time=2234523&type=mp3”
http を開始する必要がありますか? PHPのstr_replace関数で両端間の文字列を「abc」に書き換えるにはどうすればよいでしょうか?ありがとうございます
str_replace は正規表現を使用できません。preg_replace を使用してください
正規表現は使用できます
$str="http://www.sina.com/music1/23412455. mp3?time =2234523&type=mp3";
str_replace(substr($str,4,strpos($str,'?')),'abc',$str);
$urls = array("http:\/\/www.sina.com\/music1\/23412455.mp3?time=2234523&type=mp3","http:\/\/www.sina.com\/music2\/4325243.mp3?time=2234523&type=mp3","http:\/\/www.sina.com\/music3\/346553.mp3?time=2234523&type=mp3");foreach($urls as $url){ echo preg_replace('@http(.*?)\?@i','abc',$url).'<br>';}