what is foo?
and why is it always used in beginners tutorials for almost all programming langauges?

Code:
<?php
    class foo {
        function foo_me()
            $foo1 = "whats a foo?"; //php
        }
    }
    $foofoo = new foo;
    $foofoo->foo_me;
?>