我有一串由空格分隔的單詞(除了最後一個單詞),我想知道是否有方法在每個新單詞的末尾添加一個字符。例如:PHP將字符添加到每個新單詞的末尾
$string = "this is a short string of words"
將成爲
$string = "this; is; a; short; string; of; words;"
感謝
我有一串由空格分隔的單詞(除了最後一個單詞),我想知道是否有方法在每個新單詞的末尾添加一個字符。例如:PHP將字符添加到每個新單詞的末尾
$string = "this is a short string of words"
將成爲
$string = "this; is; a; short; string; of; words;"
感謝
$str = 'lorem ipsum';
$str_modified = str_replace(' ','; ',trim($str)).';';
將它包裹在修剪中以擺脫尾部空間。 – Luke
它確實需要';'而不是'trim' –