in reply to Re^3: Another prediction of Perl's demise
in thread Another prediction of Perl's demise
For example, try comparing the process of getting the contents of a text file into a variable in Perl vs. PHP. Hint: In PHP, you only need one function in a short line of code.
This really has nothing to do with the point I was making, but I'll bite. I'll agree that many things are easier in PHP. This flows from PHP's philosophy of shoving everything in as individual built-in functions. I have many problems with this philosophy, but it's pretty clear that it makes many things easier.
The example you chose, though, isn't quite as dramatic as you make it to be. As others mentioned, the best answer (in terms of effort) is probably to use File::Slurp, but it's not very difficult to do in core Perl, either:
my $foo = do { local (@ARGV, $/) = "bar.txt"; <> };
Now, the PHP code is simpler and more obvious, but the Perl is no great feat. It's common enough that most good Perl programmers should recognize it immediately. Again, I'm not trying to say your main point about PHP being easier is wrong, but I don't think this is the best example of it.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Another prediction of Perl's demise
by apotheon (Deacon) on Nov 28, 2004 at 03:03 UTC |