PHP的ArrayObject offsetGet()函数
PHPArrayObject 类的offsetGet()函数用于获取 ArrayObject 中特定索引处的值。
语法:
mixed offsetGet($index)
参数:该函数接受一个单独的参数$index ,将为其返回相应的值。
返回值:此函数返回 ArrayObject 中指定索引处的值。
下面的程序说明了上述函数:
程序一:
offsetGet(1));
// Value present at index 3
echo "\n".($arrObject->offsetGet(3));
// Value present at index 0
echo "\n".($arrObject->offsetGet(0));
?>
输出:
geeks99
geeks02
geeks100
方案二:
"1", "to" => "2", "GfG" => "3");
// Create array object
$arrObject = new ArrayObject($arr);
// Print the value at index "Welcome"
echo $arrObject->offsetGet("Welcome");
// Print the value at index "to"
echo "\n".$arrObject->offsetGet("to");
?>
输出:
1
2
参考文献:http:// PHP.NET /手动/ EN / arrayobject.offsetget。 PHP