Tagged Questions
8
votes
5answers
6k views
in_array() and multidimensional array
I use in_array() to check whether a value exists in an array like below,
$a = array("Mac", "NT", "Irix", "Linux");
if (in_array("Irix", $a))
{
echo "Got Irix";
}
//print_r($a);
but what about ...
5
votes
5answers
2k 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', ...
3
votes
3answers
424 views
faster than in_array?
I need to compare a value to a set of array. However, I need to compare multiple values in foreach. If using in_array, it can be slow, real slow. Is there any faster alternative? My current code is
...
2
votes
2answers
196 views
in_array returning false when should return true
I've got a simple script that takes a word from a form and assesses whether it exists in a file (.txt). The txt file has a single word or phrase on each line. There are no \t's or \r in the file.
...
1
vote
1answer
27 views
PHP File Type Validation
I wrote the following php function to upload files but I'm having a hard time with the array of allowed file types. If I assign just one file type i.e. image/png, it works fine. If I assign more than ...
1
vote
2answers
195 views
in array sql query
I have the following inside a foreach loop (displaying my various videos), I'm trying to display some alternate text for the top three voted videos. What on earth am I doing wrong (a lot clearly)...
...
1
vote
4answers
594 views
PHP in_array() can't even match a single character. Strict is set to true
I've seen a million of these threads here already, and read through every single one. That, plus some serious Googling.
UPDATE: I am rewriting this post to include complete code and explanation, so ...
1
vote
3answers
387 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
1answer
45 views
PHP Unset parent if not found in an array
I'm having an issue unsetting my parent if I do not find my needle in my child, for some reason I just cannot get this to work no matter how many different ways I try it, could someone possibly point ...
0
votes
1answer
40 views
How can I make a variable as a key?
How can I make a variable into a key or a value so that I can use it in in_array()?
For instance,
// set the variable
$cnt_firstname = trim($_POST['cnt_firstname']);
$required = ...
0
votes
5answers
111 views
php array variable problem
in my script,
$value= array("DK","Bloomsberry","McGrawHill","OXFORD","DC Books","Springer");
if(in_array("Bloomsberry",$value)){
echo "Bloomsberry is there inside the array";}
else{ echo ...
0
votes
2answers
169 views
in_array() - help on what specifically would return true
ANSWERED: THE FUNCTION WORKS AS I WANTED IT TO. I HAD A TYPO IN MY TEST PHP THAT MADE IT RETURN TRUE REGARDLESS.
I am using in_array, and I'm trying to use it in a way where it will only return true ...
0
votes
2answers
203 views
check existence of an object in array
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.
How ...
0
votes
3answers
114 views
Problem with array
$modules = array(
'home' => 'home',
'login' => 'login',
'forum' => 'forum',
'topic' => 'topic',
'post' => 'post',
'profile' => 'profile',
'moderate' ...
0
votes
4answers
2k views
PHP in_array not working
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();
...