-1
<?php
$str1 = 'merry';
$str2 = 'christmas';
$concat = $str1.' '.$str2;
echo $concat;
?>
我將任何多個sapce進行了連接或連接,但結果只有一個空間,有人可以幫我解決這個問題嗎?不能在字符串中添加多個空格
<?php
$str1 = 'merry';
$str2 = 'christmas';
$concat = $str1.' '.$str2;
echo $concat;
?>
我將任何多個sapce進行了連接或連接,但結果只有一個空間,有人可以幫我解決這個問題嗎?不能在字符串中添加多個空格
你可以使用
<?php
$str1 = 'merry';
$str2 = 'christmas';
$concat = $str1.' '.$str2;
echo $concat;
?>
真棒隊友,它的工作。非常感謝。 –