php GTK (2)
Exchange Links About this site Links to us 
|
Get a list of GTK Classes supported by php-gtk
This article has not been rated yet. After reading, feel free to leave comments and rate it.
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";
}
| |  | |  |
Comments:
|
anonymous from Indonesia
|
|
|
|
keren...
|
|