我試圖替換+的所有空間的字符串,但我做的preg_replace()之後,我得到一個空字符串作爲結果。試圖替換+所有空格字符串
爲什麼?我究竟做錯了什麼?
$query = "hello world";
$formattedQuery = preg_replace('\s', '+', $query);
echo "formatted Query is: ".$formattedQuery;
/* output should be hello+world, but I am getting nothing/blank string outputted */
你可以只使用'$ formattedQuery = str_replace函數(」」, '+',$查詢);' – Karl