Shawn McKenzie wrote:

> Maybe a dumb question, but as good coding practice, should all functions
> return something even if they don't need to???
>
> Example:
>
> function do_it()
> {
>    echo "hi";
> }
>
> --or--
>
> function do_it()
> {
>    return echo "hi";
> }
>
> Also, if they do other things but really don't return anything, should
they
> return true maybe???

I don't think there is a right or wrong way but personally I would do it
like this:

function do_it()
{
        echo "hi" || return 0;

        return 1;
}

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to