php花括號的用法有多種,如:1、「function name(){}」或「for(){}」用法;2、「$str{4}」用法;3、 “{$val}”用法。
本文操作環境:windows7系統、PHP7.1版,DELL G3電腦
php花括號的用法是什麼?
PHP的大括號(花括號{})使用詳解
#一、不管什麼程序,function name(){}, for(){ }, ….這太多了,不說也知道什麼用了。
二、$str{4}在字串的變數的後面跟上{}大括號和中括號[]一樣都是把某個字符串變數當成數組處理。
三、{$val}這種情況就是我遇到的問題,這時候大括號起的作用就是,告訴PHP,括起來的要當成變數處理。
如下範例:
//The following is okay as it's inside a string. Constants are not //looked for within strings so no E_NOTICE error here print "Hello $arr[fruit]"; // Hello apple //With one exception, braces surrounding arrays within strings //allows constants to be looked for print "Hello {$arr[fruit]}"; // Hello carrot print "Hello {$arr['fruit']}"; // Hello apple
另:PHP 字串變數中大括號(花括號{})的作用
PHP 變數後面加上一個大括號{},裡面填上數字,就是指PHP 變數對應序號的字元。
例如:
$str = 'hello';
echo $str{0}; // 输出为 h ,也可以 $str[0] echo $str{1}; // 输出为 e ,也可以 $str[1]
如果要檢查某個字串是否滿足多少長度,可以考慮用這個大括號(花括號)加isset 的方式取代strlen 函數,因為isset 是語言結構,strlen 是函數,所以使用isset 比使用strlen 效率更高。
例如判斷字串的長度是否小於 5:
if ( !isset ( $str{5} ) ) 就比 if ( strlen ( $str ) < 5 ) 好。
推薦學習:《PHP影片教學》
以上是php花括號的用法是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!