Check of variabele in array
KrissCross
25/06/2008 10:37:00Hoe kan ik controleren of variabele "appel" zich in de array "fruit" bevindt?
Edit:
Hele ochtend geGoogled en net als ik hier post vind ik volgens mij de oplossing:
Hele ochtend geGoogled en net als ik hier post vind ik volgens mij de oplossing:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
<?php
$a = array ('test' => 1, 'hello' => NULL);
var_dump(isset($a['test'])); // TRUE
var_dump(isset($a['foo'])); // FALSE
var_dump(isset($a['hello'])); // FALSE
// The key 'hello' equals NULL so is considered unset
// If you want to check for NULL key values then try:
var_dump(array_key_exists('hello', $a)); // TRUE
?>
$a = array ('test' => 1, 'hello' => NULL);
var_dump(isset($a['test'])); // TRUE
var_dump(isset($a['foo'])); // FALSE
var_dump(isset($a['hello'])); // FALSE
// The key 'hello' equals NULL so is considered unset
// If you want to check for NULL key values then try:
var_dump(array_key_exists('hello', $a)); // TRUE
?>
Gewijzigd op 01/01/1970 01:00:00 door KrissCross