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?