문제

Basically I have the following code :

unset($items[array_search($i,$items)]);

When the key is not found the array_search returns false which is equivalent to returning 0, which results in deleting the element 0 of the array if an item value is not found.

Any Workaround for this?

도움이 되었습니까?

해결책

$itemindex = array_search($i,$items);
if ($itemindex !== false) {
  unset($items[$itemindex]);
}

Using separate variable and strict comparison you will only run unset() if an item was actually found from the array. Using !== comparison to false you avoid confusing false with 0, since 0 is also a valid return value for array_search call, and in that case we do want to run unset().

다른 팁

if(($i = array_search($i,$items)) !== false) { 
    unset($items[$i]) 
}

is a possible workaround.

array_search returns the (first) key that contains the value, or false if the value is not present. That means you need to check for false before you call unset, like so:

$ix = array_search($i,$items)
if($ix !== false) {
    unset($items[$ix]);
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top