<?php
class myclass{
function aa(){}
function bb(){}
function cc(){}
}
$ar1=get_class_methods("myclass");
foreach ($ar1 as $a1)
{
echo "<br> class--> ".$a1;
}
?>
class--> aa class--> bb class--> cc
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.