9,330 reputation
825
bio website berryllium.nl
location Tilburg, Netherlands
age 29
visits member for 2 years, 6 months
seen May 16 at 12:42
stats profile views 403

(Mostly) PHP Programmer from Rossum, the Netherlands. Currently have my own company called Ayavo in Tilburg. Active in a few open source projects.


Sep
21
awarded  Custodian
Sep
21
comment trimming a string in php
I would love to see the benchmarks on that ;)
Sep
21
comment trimming a string in php
which is not a representation of a boolean, so that wouldn't make sense anyway ;)
Sep
21
comment trimming a string in php
substr($string, -1) would suffice.
Sep
21
answered trimming a string in php
Sep
21
comment Best way to write arrays to a file?
Why do you think your database is poor? My database is rather good at storing and retrieving values, because... oh yeah, that's what it's supposed to do :)
Sep
21
comment PHP - Count all elements of an Array that Satisfy a Condition
@DanielKilburn Awesome, no thanks!
Sep
21
revised Copy string with regex
added 841 characters in body
Sep
21
answered Copy string with regex
Sep
21
revised PHP - Count all elements of an Array that Satisfy a Condition
added 349 characters in body
Sep
21
answered PHP - Count all elements of an Array that Satisfy a Condition
Sep
20
comment Checking if sentence contains a word in PHP
checkIfContains("8:00", "I woke up at 8:00") === true && checkIfContains("8:00", "I woke up at 18:00") === false, so exactly what the asker asked. :)
Sep
20
comment Checking if sentence contains a word in PHP
Also, you could've used in_array( $word, $exploded ) instead of the slower foreach. So: $exploded = explode( " ", $toCheck ); return in_array( $toTest, $exploded );
Sep
20
comment Checking if sentence contains a word in PHP
Then what if the sentence is "foo bar kota." Still contains "kota", as a word, but since your script sees "kota." instead, it won't work. That's why I opted for using \b (word boundary) in a regex.
Sep
20
comment Checking if sentence contains a word in PHP
@Martin So I did. Well, can't test everything you post ;)
Sep
20
revised Checking if sentence contains a word in PHP
added 11 characters in body
Sep
20
comment Checking if sentence contains a word in PHP
checkIfContains("Ala makota" "kota") should be false, according to his question. Your function will return true.
Sep
20
answered Checking if sentence contains a word in PHP
Sep
20
comment Checking if sentence contains a word in PHP
Actually, no, he's looking for full words, which means strpos isn't enough.
Sep
20
comment Embed Array in Code of create_function() in PHP
@Teno I'm sorry to tell you, but in that case some of the servers you're using are using software that's not supported and should be upgraded. PHP 5.2 end of support was in December 2010. ;)