• 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 ) 好。

  • 相关阅读:
    C#窗体操作的小技巧
    C#操作Xml
    Path类对路径字符串的操作
    Google Maps 基础
    C#时间操作总结
    根据地理坐标计算瓦片行列号
    使用VBA宏批量修改表格
    检测到在集成的托管管道模式下不适用的ASP.NET设置的解决方法
    Asp.net实现URL重写
    VS2013利用ajax访问不了json文件——VS2013配置webconfig识别json文件
  • 原文地址:https://www.cnblogs.com/52php/p/5658314.html
Copyright © 2020-2023  润新知