PHP的ArrayObject offsetSet()函数
PHPArrayObject 类的offsetSet()函数用于更新 ArrayObject 中特定索引处的值。
语法:
void offsetSet($index, $val)
参数:此函数接受两个参数 $index 和 $val。此函数更新索引中存在的值$index和$val 。
返回值:此函数不返回任何值。
下面的程序说明了上述函数:
程序一:
offsetSet(1, "Updated");
// Print the updated ArrayObject
print_r($arrObject);
?>
输出:
ArrayObject Object
(
[storage:ArrayObject:private] => Array
(
[0] => geeks100
[1] => Updated
[2] => geeks1
[3] => geeks02
)
)
方案二:
"1", "to" => "2", "GfG" => "3");
// Create array object
$arrObject = new ArrayObject($arr);
// Update the value at index "to"
$arrObject->offsetSet("to", "UpdatedValue");
// Print the updated ArrayObject
print_r($arrObject);
?>
输出:
ArrayObject Object
(
[storage:ArrayObject:private] => Array
(
[Welcome] => 1
[to] => UpdatedValue
[GfG] => 3
)
)
参考文献:http:// PHP.NET /手动/ EN / arrayobject.offsetset。 PHP