本文整理汇总了PHP中Objects::property方法的典型用法代码示例。如果您正苦于以下问题:PHP Objects::property方法的具体用法?PHP Objects::property怎么用?PHP Objects::property使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Objects
的用法示例。
在下文中一共展示了Objects::property方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: property_chain
/**
* Connect object properties by chaining it like a.b.c...
* @param $sPropertyChain
* @param $oObject
* @return bool
*/
public static function property_chain($sPropertyChain, $oObject)
{
$sPropertyChain = explode('.', $sPropertyChain);
foreach ($sPropertyChain as $sElement) {
$oObject = Objects::property($sElement, $oObject);
if (!$oObject) {
return false;
}
}
return $oObject;
}
示例2:
?>
</td>
<?php
} else {
?>
<td>
<a href="<?php
echo Arrays::element_chain($key . '.prefix', $tableLinks);
if (is_array($row)) {
if (Arrays::element_chain(Arrays::element_chain($key . '.field', $tableLinks), $row)) {
echo Arrays::element(Arrays::element_chain($key . '.field', $tableLinks), $row);
}
} else {
if (is_object($row)) {
if (Objects::property(Arrays::element_chain($key . '.field', $tableLinks), $row)) {
echo Objects::property(Arrays::element_chain($key . '.field', $tableLinks), $row);
}
}
}
echo Arrays::element_chain($key . '.suffix', $tableLinks);
?>
"><?php
echo $convertedValue;
?>
</a></td>
<?php
}
?>
<?php
}
?>