While studying for Zend test, I ran across this code which works, but I cannot figure out why given the two strange props in array_push. strtolower and ucfirst are used where there should be variables. Have I missed some documentation?
<?php
$str = 'MY STRING';
$funcs = array();
array_push($funcs, 'strtolower', 'ucfirst');
foreach ($funcs as $func) {
$str = $func($str);
}
if ($str == 'My string') {
echo "Correct";
}
else {
echo "Incorrect";
}
?>
Source: http://php.net/manual/en/functions.variable-functions.php