Can I override the PHP function echo()?
I need append text to echo
echo "text";
function echo($string)
{echo $string ." in line : ". __LINE__;}
Can I override the PHP function echo()?
I need append text to echo
echo "text";
function echo($string)
{echo $string ." in line : ". __LINE__;}