4
votes
5answers
471 views
Which is faster: in_array() or a bunch of expressions in PHP?
Is it faster to do the following:
if ($var != 'test1' && $var != 'test2' && $var != 'test3' && $var != 'test4') { ... }
Or:
if (!in_array($var, array('test1', 'test2', …
1
vote
3answers
124 views
php array in_array oddity…
of all the languages i know im the weakest in php...
I have a script... that takes a csv file and does some stuff with it... fairly simple.
the issue i am having:
in_array('username', $headers) ... …
0
votes
2answers
95 views
check existence of an object in array
Hi, at first I wanna say that I'm new in PHP.
I have an implementation that checks an object is in array or not, if not adds another array. But it always returns false and adds in theorder array.
…
0
votes
3answers
75 views
Problem with array
$modules = array(
'home' => 'home',
'login' => 'login',
'forum' => 'forum',
'topic' => 'topic',
'post' => 'post',
'profile' => 'profile',
'moderate' …
0
votes
4answers
434 views
PHP in_array not working
Hey everyone,
I am using the PHP in_array() function in order to authenticate (with sessions) if a user can access a particular page. For some reason, it is not working...
PHP PAGE
session_start();
…
