« 57. PHP 的判斷運算子 (Condition Operators) 有哪些? | (回到Blog入口) | 59. PHP 的指定運算子 (Assignment Operators) »

58. PHP 的字串運算子 (String Operators) 有哪些?

jollen 發表於 October 27, 2006 4:17 PM


"." 用在字串上,表示字串連接運算子 (string concatenation operator),例如:

$a = "Hi! "; $b = $a . "Dears.";

此時 $b 為 "Hi! Dears.",句號用來連接兩個字串的資料型態。

當 string concatenation operator 用在數值型態上時,數值型態會被自動轉型成字串。

範例:

<?php
$age = 20; $str = "Martin is " . $age . " years old."; echo $str;
?>

輸出結果:

Martin is 20 years old.

連接運算子為唯一的字串運算子。

--jollen

版權聲明

請參閱頁面底部的 CC 授權條款。此外,Jollen's PHP 專欄禁止引用、修改與轉貼,如果您想與朋友分享的話,我們只允許網站連結(hyperlink)的形式。

發表一個評論

(如果你此前從未在此 Blog 上發表過評論,則你的評論必須在 Blog 主人驗證後才能顯示,請你耐心等候。)

| Top | Jollen's Forum |
Jollen's PHP 專欄採用 Attribution-NonCommercial-NoDerivs 2.5 授權條款
Copyright(c) 2001-2007,2010 www.jollen.org