2015-11-03 43 views
-3

所以我有這個字符串:字符串用別的東西[PHP]更換炭

`This-is-my-string` 

什麼,我想作爲輸出:

This is my string 

那些hyphen'sblank space更換。

我曾嘗試使用substr_replace()implode來自PHP資源,但這並沒有產生任何成功!

+1

'str_replace函數( ' - ', '' ,$ str)' –

回答

1

使用str_replace

echo str_replace('-', ' ', 'This-is-my-string'); 

str_replace()函數函數替換一些 其他字符某些字符在字符串

+0

謝謝!就是這個。 – Sutekh

+0

歡迎:) @Sutekh –

1
$str="This-is-my-string"; 
$replaced_str=str_replace('-', ' ', $str); 
+0

謝謝,但已經有答案:) – Sutekh