Possible Duplicate:
Can php variable hold harmfull code safely?
Let’s say I have array named $content. The array holds harmfull data.
Is it safe to do the following?
$test = count($content);
echo $test;
Would count() somehow execute the harmfull data?
Long story short: no worries.
Short story long:
Count will return an int, and should not execute anything. It’s not a really complicated function, so I doubt it could even have such a bug, but the facts are