本文整理匯總了PHP中Inspekt::convertArrayToArrayObject方法的典型用法代碼示例。如果您正苦於以下問題:PHP Inspekt::convertArrayToArrayObject方法的具體用法?PHP Inspekt::convertArrayToArrayObject怎麽用?PHP Inspekt::convertArrayToArrayObject使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Inspekt
的用法示例。
在下文中一共展示了Inspekt::convertArrayToArrayObject方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: _setSource
/**
* {@internal we use this to set the data array in Factory()}}
*
* @see Factory()
* @param array $newsource
*/
private function _setSource(&$newsource)
{
$this->_source = Inspekt::convertArrayToArrayObject($newsource);
// foreach ($newsource as $key => $value) {
// if (is_array($value)) {
// $value = new ArrayObject($value);
// $newsource[$key] = $value;
// $this->_setSource($newsource[$key]);
// }
// }
// $this->_source = new ArrayObject($newsource);
}
示例2: convertArrayToArrayObject
/**
* Converts an array into an ArrayObject. We use ArrayObjects when walking arrays in Inspekt
* @param array
* @return ArrayObject
*
*/
public static function convertArrayToArrayObject(&$arr)
{
foreach ($arr as $key => $value) {
if (is_array($value)) {
$value = new ArrayObject($value);
$arr[$key] = $value;
//echo $key." is an array\n";
Inspekt::convertArrayToArrayObject($arr[$key]);
}
}
return new ArrayObject($arr);
}
示例3: testConvertArrayToArrayObject
/**
*
*/
public function testConvertArrayToArrayObject()
{
$arr = array(1, 2, 3, 4);
$ao = Inspekt::convertArrayToArrayObject($arr);
$this->assertTrue($ao instanceof ArrayObject);
}