PHP 字串相加範例一、單純的字串相加,使用字串連接運算子(.)
<?php
echo '<meta http-equiv="Content-Type" content="text/html; charset=utf-8">'; //網頁編碼
$test_string_1='測試字串1';
$test_string_2='測試字串2';
$new_string=$test_string_1.$test_string_2;
echo $new_string;
?>
範例的結果echo '<meta http-equiv="Content-Type" content="text/html; charset=utf-8">'; //網頁編碼
$test_string_1='測試字串1';
$test_string_2='測試字串2';
$new_string=$test_string_1.$test_string_2;
echo $new_string;
?>
測試字串1測試字串2
範例一先準備了兩個單純文字字串,接著我們用字串連接運算子(.)將兩個字串 $test_string_1 與 $test_string_2 相加在一起,成為一個新的字串 $new_string,最後再用 echo 將新字串 $new_string 輸出來,結果就是兩個字串加在一起成為一個字串。PHP 字串相加範例二、數字字串相加
<?php
echo '<meta http-equiv="Content-Type" content="text/html; charset=utf-8">'; //網頁編碼
$number1='1';
$number2='2';
$new_string=$number1+$number2;
echo '數字字串相加的結果等於: '.$new_string;
?>
範例的結果echo '<meta http-equiv="Content-Type" content="text/html; charset=utf-8">'; //網頁編碼
$number1='1';
$number2='2';
$new_string=$number1+$number2;
echo '數字字串相加的結果等於: '.$new_string;
?>
數字字串相加的結果等於: 3
範例二執行的是數字字串相加,這裡要注意的是在相加之前必須確認兩個字串都是數字,否則無法用(+)將兩者加在一起,反之,如果兩個字串都是數字,利用加號可以執行數學運算,所以從範例的結果可以看到 1+2=3。更多字串處理