Will attempt to check if a specific value in a multidimensional array is set.
Parameters
$root
arrayrequired$keys
arrayrequired
Source
final protected function multidimensional_isset( $root, $keys ) {
$result = $this->multidimensional_get( $root, $keys );
return isset( $result );
}
Changelog
Version | Description |
---|---|
3.4.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.