I have array:
Arrays:
Array
(
[0] => Array
(
[name] => point
[visibility] =>
)
[1] => Array
(
[name] => php_first_table
[visibility] => 1
)
[2] => Array
(
[name] => ohz
[visibility] => 1
)
)
Now i want to find and remove element with name=ohz:
for($i=0;$i<count($arrays);$i++){
if(array_search("ohz",$arrays[$i])){
unset($arrays[$i]);
}
}
print_r($arrays);
output:
Array
(
[0] => Array
(
[name] => point
[visibility] =>
)
[2] => Array
(
[name] => ohz
[visibility] => 1
)
)
Why php_first_table not ohz was deleted?