Author Topic: Favorite PHP resources?  (Read 304 times)

0 Members and 1 Guest are viewing this topic.

Offline kade119Topic starter

  • Enthusiast
  • Posts: 64
    • View Profile
Favorite PHP resources?
« on: May 26, 2010, 12:35:47 AM »
Besides php.net, what are some websites that you favorite for PHP?

Offline ignace

  • Guru
  • Freak!
  • *
  • Posts: 5,093
  • Gender: Male
    • View Profile
Re: Favorite PHP resources?
« Reply #1 on: May 26, 2010, 03:01:17 AM »
None. That's really the only resource you'll ever need. If you use FF you can even get the PHP Manual add-on so you can search for functions right off the integrated search bar. And if you are using a proper IDE you can look-up manual information with a few taps on the keyboard.
« Last Edit: May 26, 2010, 03:01:57 AM by ignace »
Developer from Belgium, Vlaams-Brabant

Offline neil.johnson

  • Guru
  • Fanatic
  • *
  • Posts: 3,416
  • Gender: Male
    • View Profile
Re: Favorite PHP resources?
« Reply #2 on: May 26, 2010, 05:13:16 AM »
phpclasses.org
Quote
To start, press any key. Where's the 'Any' key?

Offline Daniel0

  • Administrator
  • 'Insane!'
  • *
  • Posts: 11,815
  • Gender: Male
  • ^bb|[^b]{2}$
    • View Profile
Re: Favorite PHP resources?
« Reply #3 on: May 26, 2010, 06:10:49 AM »
None. That's really the only resource you'll ever need. If you use FF you can even get the PHP Manual add-on so you can search for functions right off the integrated search bar. And if you are using a proper IDE you can look-up manual information with a few taps on the keyboard.

There are also PHP UNIX man pages available for the manual.

Code: [Select]
$ pear channel-discover doc.php.net
$ pear install doc.php.net/pman
$ pman substr

If you use vim, you can then add autocmd FileType php setlocal keywordprg=pman to ~/.vimrc and use the K command when hovering over a function name to look it up.