(PHP 5, PHP 7)
ArrayObject::offsetExists — Returns whether the requested index exists
The index being checked.
true if the requested index exists, otherwise false
示例 #1 ArrayObject::offsetExists() example
以上例程会输出:
bool(true) bool(true) bool(false)
[#1] ▲0▼ goran@extensionsforjoomla.com [50%] (2007-07-09 03:52:35)
In versions prior to PHP 5.2.2 offsetExists() would return false if index value is null.
<?php
Both tests where made on Windows platform.
// running PHP 5.2.1
$params = new ArrayObject(array('INT'=>null, 'STR'=> null, 'BOOL'=>null, 'LOB'=>null));
$test = $params->offsetExists('INT');
var_dump($test);
// result would be bool(false)
// running PHP 5.2.2
$params = new ArrayObject(array('INT'=>null, 'STR'=> null, 'BOOL'=>null, 'LOB'=>null));
$test = $params->offsetExists('INT');
var_dump($test);
// result would be bool(true)
?>