php學習3 字串

2022-04-02 06:03:17 字數 852 閱讀 6887

1,字串變數可以使用單引號宣告也可以使用雙引號宣告

2,如果乙個字串中包含變數,這是使用雙引號宣告的變數會輸出變數內容,使用單引號則輸出變數名本身

3,heredoc,在heredoc中可以直接引用php中的變數,同時為了容易區分可以使用花括號將該變數括起來

4,轉義符號是  \

5,字串連線可以使用點號或花括號,換行可以使用 " .= "來連線, 

6,格式控制符

\n       windows中檔案換行符

\r        mac中的檔案換行符

\r\n      unix中檔案換行符

\t         跳格8格空白符

\\         輸出\

\$        輸出\

\"         輸出"

使用heredoc可以簡化輸出,避免單雙引號的麻煩

while($stmt->fetch())

更好的一種heredoc方法,借助{}來區分變數。如果有函式執行,需要提前賦值給變數,因為heredoc結構中不能執行函式

<?php

$view=get_list(4);

for ($i=0;$i//echo ''.mb_substr($view[$i][1], 0, 19,"utf-8").'

';$hhw=mb_substr($view[$i][1], 0, 19,"utf-8");

echo <<

doc;

}unset($view);

?>

字串輸出

echo

printf

dieprintf

sprintf

PHP學習筆記(05) 字串

1.字串的定義方式 2.單雙引號的對比,轉義,解析,速度 3.常用函式 header content type text html charset utf 8 heredoc nowdoc定義文字 str3 str3,str4 intro 遠看山無色,近聽水無聲 intro echo str4 no...

python學習筆記3 字串

1.python當中的字串是乙個序列,可以用str i 返回字串中的各個字元。i為0或正數時,是從前向後的第i 1個字元 i為負數時,是倒數第 i個字元。想遍歷整個字串,無需先計算字串的長度再迴圈,可以很方便的使用for語句 for char in string print char 2.strin...

oc 學習 3 字串方法

main.m 第二週第一天 created by qianfeng on 15 12 21.import 字串 nsstring 不可變字串 nsmutablestring 可變字串 if 0 int main int argc,const char argv return0 endif if 0 ...