Anyway, here's the problem:
Code: Select all
<?php
class pub
{
function a()
{
function b(){ }
}
}
?>pub::a();
b();
But after calling pub::a();
I want to be able to call pub::b();
Regards, Kristian
Moderator: General Moderators
Code: Select all
<?php
class pub
{
function a()
{
function b(){ }
}
}
?>