PHP 将变量转换为 foreach 循环中的对象类型
这取决于正在使用的 IDE。例如,Netbeans 和 IntelliJ 可以在注释中启用 @var 的使用 −
/* @var $variable ClassName */ $variable->
With this, the IDE would know that the ‘$variable’ is a class of the ClassName after the hint ‘->’ is encountered.
此外,可以用一个方法创建 @return 注释,该方法指定返回类型将是对 ClassName 对象的数组。此数据可以使用 foreach 循环访问,该循环获取对象的值 −
function get_object_type() { return $this->values; } foreach( $data_object-> values as $object_attribute ){ }
广告