PHP AJAX 1.5.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News PHP AJAX 1.5.1 (Default branch)
# 1  
Old 02-10-2008
PHP AJAX 1.5.1 (Default branch)

Image PHPAjax is a PHP framework that allows you to create AJAX application defining PHP classes. The class must inherit from another class (phpajax), and must define some predefined methods and properties. All code you write is PHP, which automatically is transformed to Javascript at run time.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Programming

PHP Echoed in Ajax

I have built a site in PHP for radio station, and the daily schedule is displayed dynamically using PHP script. I have added links to view different days but when it loads up its just loading up a new page. I can't quite remember how I done it but I'd like it to be in ajax if that's... (2 Replies)
Discussion started by: AimyThomas
2 Replies

2. Shell Programming and Scripting

PHP webserver vs AJAX

Hello All I want to develop a news ticker using a PHP webserver instead of polling the RSS feed using AJAX. Let me know if you guys have any idea about this. (0 Replies)
Discussion started by: suvendu4urs
0 Replies
Login or Register to Ask a Question
GET_DECLARED_CLASSES(3) 						 1						   GET_DECLARED_CLASSES(3)

get_declared_classes - Returns an array with the name of the defined classes

SYNOPSIS
array get_declared_classes (void ) DESCRIPTION
Gets the declared classes. RETURN VALUES
Returns an array of the names of the declared classes in the current script. Note Note that depending on what extensions you have compiled or loaded into PHP, additional classes could be present. This means that you will not be able to define your own classes using these names. There is a list of predefined classes in the Predefined Classes section of the appendices. EXAMPLES
Example #1 get_declared_classes(3) example <?php print_r(get_declared_classes()); ?> The above example will output something similar to: Array ( [0] => stdClass [1] => __PHP_Incomplete_Class [2] => Directory ) SEE ALSO
class_exists(3), get_declared_interfaces(3), get_defined_functions(3). PHP Documentation Group GET_DECLARED_CLASSES(3)