PHP集中輸出字串的方式

2021-07-10 10:36:36 字數 1053 閱讀 6977

/*

* 字串的5種輸出方式

* 1. echo

* 2. print()

* 3. printf()

* 4. print_r()

* 5. var_dump()

*///1. echo

$a = 123;

echo $a, (321), "echo\n";

//2. print(string $arg)

// print 實際上不是乙個函式(它是乙個語言結構),因此你可以不必使用圓括號來括起它的引數列表。

print "abc \n";

//3. int printf ( string $format [, mixed $args [, mixed $... ]] )

// printf() 函式的輸出源自c庫中的同名函式printf()

// 用法同 c 語言中的 printf()

$int = 123;

$str = "test";

$float = 1.23456;

printf("%d_%s_%f_%e \n",$int, $str, $float, $float);

//4. print_r ( mixed $expression [, bool $return ] )

// print_r()結構能夠只能地顯示穿個它的引數,而不像echo和print()那樣把所有的值都轉換成字串

// 字串和數字可以輕鬆地列印出來

$arr = array("a",'b'=> 'b',1.1,true);

print_r($arr);

class tmpclass

}print_r(new tmpclass());

//5. void var_dump ( mixed $expression [, mixed $... ] )

// 相比print_r() var_dump()更適合除錯

var_dump($arr);

var_dump(new tmpclass());

輸出字串

5.連線字串 半形句號 是字串連線符,可以把兩個字串連線成乙個字串。例如7 5 echo str.url 技巧 我們可以使用字串連線符累加字串。例如7 6 第一句我們給 str賦值,str表示字串 php中文社群位址是 第二句表示在 str的值上累加字串 www.phpnet.cn 所以,str最後...

PHP學習 9 輸出字串

在php中,有四種方法輸出字串。echo結構可以一次輸出多個值 print 只可以輸出乙個值 printf 可以格式化輸出 print r 可以輸出陣列,對除錯很有好處。下面一一進行介紹。1.echo echo 是php的乙個關鍵字,它沒有返回值。在寫法上,它可以省略小括號。如下 1 2 echo ...

輸出字串Count and Say

最近研究輸出字串,稍微總結一下,以後繼續補充 標題如下 the count and say sequence is the sequence of integers beginning as follows 1,11,21,1211,111221,1is read off as one 1 or11...