php 字符串 大括号,PHP中的字符串大括号

这篇博客详细介绍了PHP中字符串内的复杂语法,包括如何使用花括号包裹变量、数组元素和对象属性。通过示例展示了如何正确地在字符串中插入这些表达式,以及避免常见错误的方法,如未定义的常量和未正确引用数组。文章强调了在处理多维数组时使用花括号的重要性,并提到了动态变量和函数返回值作为变量名的情况。
摘要由CSDN通过智能技术生成

复杂(卷曲)语法

这并不是因为语法复杂,而是因为它允许使用复杂表达式。

任何具有字符串表示的标量变量、数组元素或对象属性都可以通过此语法包括在内。只需将表达式以与字符串外显示的方式相同的方式写入,然后将其包装在{和}..自{无法转义,只有在$立即跟随{..使用{\$得到一个字面上的{$..以下是一些明确的例子:<?php // Show all errorserror_reporting(E_ALL);$great = 'fantastic';// Won't work, outputs: This is { fantastic}echo "This is { $great}";

// Works, outputs: This is fantasticecho "This is {$great}";echo "This is ${great}";

// Worksecho "This square is {$square->width}00 centimeters broad.";

// Works, quoted keys only work using the curly brace syntaxecho "This works: {$arr['key']}";

// Worksecho "This works: {$arr[4][3]}";// This is wrong for the same reason as $foo[bar] is wrong  outside a string.

// In other words, it will still work, but only because PHP first looks for a

// constant named foo; an error of level E_NOTICE (undefined constant) will be

// thrown.echo "This is wrong: {$arr[foo][3]}";

// Works. When using multi-dimensional arrays, always use braces around arrays

// when inside of stringsecho "This works: {$arr['foo'][3]}";

// Works.echo "This works: " . $arr['foo'][3];

echo "This works too: {$obj->values[3]->name}";echo "This is the value of the var named $name: {${$name}}";

echo "This is the value of the var named by the return value of getName(): {${getName()}}";

echo "This is the value of the var named by the return value of \$object->getName(): {${$object->getName()}}";

// Won't work, outputs: This is the return value of getName(): {getName()}echo "This is the return value of getName(): {getName()}";?>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值