標籤:
一、不管什麼程式,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 hereprint "Hello $arr[fruit]"; // Hello apple//With one exception, braces surrounding arrays within strings//allows constants to be looked forprint "Hello {$arr[fruit]}"; // Hello carrotprint "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的大括弧(花括弧{})使用詳解