http://qs1969.pair.com?node_id=213619

I'm working on a project which uses PHP.

Lots of my problems are solvable by coming here, (especially regex problems, because PHP has the builtin preg_replace() function which implements Perl regular expressons), but is there something like PerlMonks for PHP coders?
--

($_='jjjuuusssttt annootthheer pppeeerrrlll haaaccckkeer')=~y/a-z//s;print;

Replies are listed 'Best First'.
Re: PHPMonks?
by Abstraction (Friar) on Nov 18, 2002 at 02:52 UTC
Re: PHPMonks?
by TedPride (Priest) on Mar 17, 2005 at 09:08 UTC
    PHP is easier to learn than Perl, though messier to write large programs in, and the following has always sufficed for PHP language questions:

    http://www.php.net/manual/en/

    I use Perl for heavy algorithms work (high work, low number of accesses) and PHP for most of my web apps (low work, high number of accesses), since I don't have access to mod_perl.

      That's probably the only good thing of PHP, the online documentation and handy lookup (http://php.net/keyword), but luckilly good monk Juerd provides us that for Perl too on his site: http://tnx.nl/keyword

      --
      b10m

      All code is usually tested, but rarely trusted.