PHP Code:
    class mother
    
{
        public 
void myMain()
        {
        }

        class 
child
        
{
            public 
void test()
            {
            }
        }
    } 
well..how can i make that the child class can access the myMain function in the mother class?