views:

74

answers:

3

For Starters, i would like to note, that this is my first post on Stackoverflow. However, during my web development career, i have used this site numerous times. And now i feel i need an assistance beyond just browsing though google.

So my question is does PHP have visual Documentation just like http://visualjquery.com/?

Because if not i was already considering writing it for myself. So does anyone know if it is actually around somewhere on the net?

I am sure writing my own visual PHP will make me know php a great deal better but i would be less eager knowing that the wheel is already invented by someone else?

So if anyone knows please do tell.. Thank you very much.

+4  A: 

Not that I know of.

The official docs are located at http://www.php.net/manual/en/. There is a search option, quick references and various shortcuts available, but it does not have a drilldown search like visualjquery.com

For SPL, there is the helly pages in addition to the Manual pages

Gordon
+1  A: 

There's no visual documentation like that (as far as I know), but there is a very good reference which is commonly used: php.net's manual.

Because it is so complete, there is no need for many other references.

By the way, it's very easy to search for specific functions on php.net. Just browse to http://php.net/[insert function name here] and it will redirect you to the page you want.

Harmen