Tagged Questions
0
votes
3answers
123 views
PHP - Most Efficient Dictionary Code
I'm using the following code to pull the definition of a word from a tab-delimited file with only two columns (word, definition). Is this the most efficient code for what I'm trying to do?
<?php
...
3
votes
4answers
60 views
Array file isset Incorrectly Returning False
I have the following PHP code:
$haystack = file("dictionary.txt");
$needle = 'john';
$flipped_haystack = array_flip($haystack);
if (isset($flipped_haystack[$needle])) {
echo "Yes it's there!";
}
...
0
votes
1answer
30 views
Check if value 50% or more is matched with the needle in haystack in a multidimensional Array (PHP)
I want to check if a value is 50% or more identical in a multidimensional Array as the "needle" i put in.
I got a function that can check if a value is identical in a multidimensional array:
...
0
votes
4answers
216 views
PHP: How do I check the contents of an array for my string?
I a string that is coming from my database table say $needle.
If te needle is not in my array, then I want to add it to my array.
If it IS in my array then so long as it is in only twice, then I ...