PHP的大括弧(花括弧{})使用詳解

來源:互聯網
上載者:User

標籤:

一、不管什麼程式,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的大括弧(花括弧{})使用詳解

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.