我试图用 + 替换字符串中的所有空格,但是在我执行 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 */