:
Q:数组键中的冒号有什么特殊意义吗?
从手册:
数组可以由array()
语言构造创建。它将任意数量的逗号分隔键 => 值对作为参数。
array( key => value
, ...
)
当我调查异常对象的设置时,我创建了一个错误条件并将这一行放入 -
print_r($ex);
然后在生成的网页中查看源代码并产生如下输出 -
Exception Object
(
[message:protected] => DB connection error: SQLSTATE[28000] [1045] Access denied for user 'test'@'localhost' (using password: YES)
[string:Exception:private] =>
冒号:
是[message:protected]
重要的还是键 => 值对的键字面意思message:protected
?