Hi,
I just wondered if there is an opposite function to in_array meaning not in the array??
Thanks
Dave
[SOLVED] Opposite to in_array
Moderator: General Moderators
- Skittlewidth
- Forum Contributor
- Posts: 389
- Joined: Wed Nov 06, 2002 9:18 am
- Location: Kent, UK
perhaps
?
"!" generally means not
Code: Select all
if (!in_array("something",$something) {
}"!" generally means not