Quote:
|
Originally Posted by Tempestshade
WOW wait a minute there NeverMind lol thats ur opinion lol i program in both php and perl/cgi lol i find perl/cgi is simpler to use BUT php has more options lol. If you are a beginner id go with perl/cgi then move to php thats what i did. Perl/cgi is very simple for beginners
|
i appreciate your opinion. however if you call perl as a so easy language to learn, you are directing programmer wannabe to the wrong direction. perl is often known as nightmare for its intricate regular expression. new perl user would often discourage himself after viewing the magical syntax.
perl is more mature than php. anyway, perl development is slower because it's not so interesting for end user (like phyton). it's normal since perl is not designed for web programming. if you want to handle strings properly, perl is your choice.
php is much simplified as the main goal of php programming is to make (web) programming as easy as possible. you may argue that in php 5, php becomes more intricate with its oo programming. anyway, it's not the reason. php 5 oo is designed to boost script execution at run time. you may notice that in php 4 you can call all functions in a class (ie. all are public functions) which is bad in system design for the performance hit occures. with a little type hint in the language (without leaving the loosely typed concept), you will get cleaner and faster code even for your enterprise solution.
regards,