如何用 - 在url中替换%20

时间:2017-11-06 15:21:52

标签: php

我是php的新手。我的问题是,我想用%20

替换我的网址中的-

2 个答案:

答案 0 :(得分:0)

MyObject

输出是:

<?php

$test1='exmple.com/dp/id/om%20Joan';

$test1=str_replace('%20','-',$test1);
echo $test1;

答案 1 :(得分:-1)

$myUrl = 'www.somesite.com/in here/';

$cleanUrl = str_replace('/\\s/', '-', $myUrl);

结果:

$cleanUrl = 'www.somesite.com/in-here/';