Hi all:

I just discovered this today, after used PHP for 4 years!!!
but i can not find any reference in  PHP document.
Any one give me a official PHP doc link?

<?php
function container()
{
    class Item
    {
        private $val = "this is a item";
        public function showItem()
        {
             return $this->val;
        }
    }

    function hello()
    {
        echo "hello";
    }
}

container();
$obj = new Item();
echo $obj->showItem();

hello();
?>

--~--~---------~--~----~------------~-------~--~----~
NZ PHP Users Group: http://groups.google.com/group/nzphpug
To post, send email to [email protected]
To unsubscribe, send email to
[email protected]
-~----------~----~----~----~------~----~------~--~---

Reply via email to