Coders' Corner Search:
General :: Programming :: php :: GTK

Articles:


Featured Article

Get a list of GTK Classes supported by php-gtk

Question:

How can I get a list of GTK Classes supported by php-gtk?

Answer:

You'll need to use get_declared_classes.
The following code will show the defined classes:

$array = get_declared_classes();
 while(list(,$classname) = each($array)) {
     echo $classname."\n";
 }