What are good references for Perl programmers who want to learn PHP? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T17:49:16Zhttp://stackoverflow.com/feeds/question/429558http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/429558/what-are-good-references-for-perl-programmers-who-want-to-learn-php2What are good references for Perl programmers who want to learn PHP?Brian G2009-01-09T20:18:06Z2009-01-30T12:37:42Z
<p>I know Perl quite well, but have not worked with PHP. Any books or references that are targeted to people who know Perl and want to start using PHP?</p>
http://stackoverflow.com/questions/429558/what-are-good-references-for-perl-programmers-who-want-to-learn-php/429589#4295891Answer by meouw for What are good references for Perl programmers who want to learn PHP?meouw2009-01-09T20:26:36Z2009-01-09T21:00:10Z<p>Well, you're going to be familiar with the syntax. PHP has <a href="http://www.php.net/docs.php" rel="nofollow">excellent documentation</a>. Nowadays we're trying to be object oriented so check out <em>PHP 5 Objects, Patterns, and Practice</em> by Matt Zandstra (Apress). It's cool.</p>
http://stackoverflow.com/questions/429558/what-are-good-references-for-perl-programmers-who-want-to-learn-php/429597#4295972Answer by Luca Matteis for What are good references for Perl programmers who want to learn PHP?Luca Matteis2009-01-09T20:28:35Z2009-01-09T20:36:50Z<p><a href="http://pear.php.net/" rel="nofollow">Pear</a> is your CPAN now.</p>
http://stackoverflow.com/questions/429558/what-are-good-references-for-perl-programmers-who-want-to-learn-php/429667#4296671Answer by cbrulak for What are good references for Perl programmers who want to learn PHP?cbrulak2009-01-09T20:46:49Z2009-01-09T20:46:49Z<p>No books required. I was in the same position but I just followed some tutorials online. It is very easy to jump into it. </p>
http://stackoverflow.com/questions/429558/what-are-good-references-for-perl-programmers-who-want-to-learn-php/429753#4297532Answer by dreftymac for What are good references for Perl programmers who want to learn PHP?dreftymac2009-01-09T21:11:35Z2009-01-09T21:17:25Z<p>If you are going from Perl to PHP, and you are looking for references that focus on this transition path, the only possible difficulty you will have is distinguishing the relevant and helpful content from the garden-variety language zealotry.</p>
<p>StackOverflow itself is a good site for good high signal/noise ratio content whenever you have a specific question on a function or module from Perl, and you want to know the PHP equivalent (if it exists), or if you have a question on development workflow inconsistencies between the two environments. Ask a specific question and you'll probably get a good answer or a link to where you can look it up.</p>
<p>For everything else, the PHP documentation (and coding time) will probably be sufficient.</p>
<p>For the language-comparison buffs out there, PLEAC is a pretty decent resource as well, although admittedly some of the content may seem to be a tad out of date.</p>
<ul>
<li><a href="http://pleac.sourceforge.net/" rel="nofollow">PLEAC: Programming Examples in different languages</a></li>
</ul>
http://stackoverflow.com/questions/429558/what-are-good-references-for-perl-programmers-who-want-to-learn-php/432645#4326451Answer by Ambrose for What are good references for Perl programmers who want to learn PHP?Ambrose2009-01-11T09:30:50Z2009-01-11T09:30:50Z<p>For really basic stuff like </p>
<p><code>foreach $i (@a) { .. }</code> </p>
<p>translates to </p>
<p><code>foreach ($a as $i) { .. }</code></p>
<p>this could be helpful: <a href="http://www.antigreen.org/vadim/ProgLanguageComparison/perl2php.html" rel="nofollow">http://www.antigreen.org/vadim/ProgLanguageComparison/perl2php.html</a></p>
http://stackoverflow.com/questions/429558/what-are-good-references-for-perl-programmers-who-want-to-learn-php/462138#4621381Answer by unclerojelio for What are good references for Perl programmers who want to learn PHP?unclerojelio2009-01-20T16:55:42Z2009-01-20T16:55:42Z<p>PHP was the first language I learned entirely from the internet. I had already written web pages so I just started inserting little PHP snippets that I found into my pages and then figuring out how they worked. Then I started to modify them and later writing my own. Now PHP is just about my favorite language. I use it for all kinds of general programming. Just jump in and go for it!</p>
http://stackoverflow.com/questions/429558/what-are-good-references-for-perl-programmers-who-want-to-learn-php/495349#4953491Answer by EndelWar for What are good references for Perl programmers who want to learn PHP?EndelWar2009-01-30T12:25:01Z2009-01-30T12:25:01Z<p>Read the PHP online manual, really! it's the best book on PHP you can find, it's clear, exhaustive and the user generate content (aka comments) contains a lot of useful examples of real life problems.
Believe me, this is not a RTFM answer! ;)</p>
http://stackoverflow.com/questions/429558/what-are-good-references-for-perl-programmers-who-want-to-learn-php/495383#4953831Answer by Brian Rasmussen for What are good references for Perl programmers who want to learn PHP?Brian Rasmussen2009-01-30T12:37:42Z2009-01-30T12:37:42Z<p>I found it surprisingly easy to build a few PHP sites with my background in Perl. Obviously there are differences, but the syntax has a lot in common and PHP has an extensive set of libraries as well. Regular expressions are a bit more verbose in PHP and I really missed CGI.pm at the time, but other than that it was easy to get started. </p>