Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×
PHP Programming Sun Microsystems

PHP5: Could PHP Soon Be Owned by Sun? 76

Ian Felton writes "PHP 5's official release occurred on July 13th, with a complete overhaul of object-oriented programming features and improved MySQL functions. These are sure to be great additions to the package for PHP developers. However, many of the changes to PHP are hinting at something that PHP developers might not necessarily like down the road." Read on for the rest of Felton's thoughts on the downside to corporate involvment in PHP's future.

At first glance, the obvious changes to PHP are a result of the success of the Java platform and the weaknesses of PHP revealed in comparison. With the release of PHP 5, it's apparent that the developers of PHP and the Zend Engine (essentially a single group) felt compelled to make PHP much more like Java with respect to object-oriented programming. Zend, the Israeli company backing the development of PHP, promises on their web site that "full integration with Java will be closer than ever before." Hmmm, full integration with Java, huh?

On November 4th, 2003, Zend announced a strategic partnership with Sun. This deal also included advisors from Borland, Macromedia, MySQL and others. The purported purpose of this deal was to make PHP part of Sun's web server and bring it to the corporate world of development that previously had been dominated by ASP and ColdFusion. Now with the release of PHP 5, it's far more apparent which path PHP is taking.

PHP's object model was re-written from the ground up and mimics the abstract properties of Java's object method. There are private and protected members and methods, abstract classes and interfaces, in practice, identical to Java's object model. The extent of the influence that Sun has on PHP today is clear. If you have experience with Java and PHP, reading the details of the object model reveals the absolute cloning of the Java object model within PHP 5. From throwing exceptions to static variables, PHP 5's object model mimics Java in concept all the way to the syntactical level.

This is great for enterprise developers using Sun products, but with the release of PHP 5, what does this mean for the half-million PHP developers worldwide who have depended on PHP for open-source development, or for the developers whose ideas and efforts have brought PHP up through the ranks from its inception in 1995? When PHP goodies were bundled with Sun's web server on November 4th, 2003, with a $775 price tag, PHP began down the path of corporate ownership. For years developers have eagerly contributed their ideas and efforts to be a part of the success of PHP. Now that all the hard work and volunteering has paid off and PHP is a worldwide success, it appears that PHP could soon be another corporate shill owned by Sun, MySQL, Borland and Macromedia, if not on paper, then by direct influence on the people at Zend. Of course it will remain open source so that those half-million developers can continue to contribute their time and genius to its success, but if those thousands of contributions lead to direct financial gain for companies whose coffers are already overflowing and are simultaneously using those contributions to manufacture software with price tags out of reach to anyone but corporations, is PHP still the language developers should be focusing on for use in the open-source community?

On the positive side, this edition of PHP does bring improved performance and a new suite of MySQL functions. Backward incompatibility is limited to a list of ten issues. Additionally, there are only minor configuration file changes that need to be made to the web server. Several directives have been introduced for configuring php.ini files, mainly dealing with hashes for encryption.

Some very useful functions have been added to PHP5. It's been nine years in the making, but PHP5 now includes two functions to uuencode and uudecode. Combining those functions with the new socket and stream functions, developers can create a lots of "kewl" applications. An application to automatically encode and decode files to and from news servers comes to mind as an example of how to incorporate these new functions. At that point of course, a developer could use any of PHP's existing functions to continue to manipulate the files, store the contents in databases, and so on.

An addition to error reporting aids developers in keeping their code up-to-date. The E_STRICT message tells developers when their code is using deprecated functions or is in danger of not being forward compatible. However, don't assume that E_STRICT will be output if using E_ALL, because it won't. E_STRICT must be explicitly declared to output its suggestions to PHP 5 code.

While the rewriting of PHP's object model to essentially that of the Java object model does raise flags about the direction of PHP, it is still a powerful addition to the PHP5 release. Java became successful for a reason: it's intelligently designed and facilitates code reuse. By borrowing the best features of Java's object model, PHP has leveraged itself with far more credibility as a programming language that can stand on its own two feet (even if Sun, Borland and Macromedia are holding it by its arms).

Some vital re-workings in the PHP object model lie in how objects are treated in low-level fashion. Instead of passing the actual object itself, PHP's object model passes by reference. Now when operating on objects, developers can pass around multiple handles to the actual object allowing for more powerful and efficient applications. Existing PHP objects do not need to be re-written to take advantage of this change in PHP 5.

In general, developers who have experience with Java will easily adapt to PHP 5's object model. On the downside, if PHP is a developer's primary language and he or she hasn't been introduced to the world of static variables, public and private methods and the host of aspects included with this new model, they may have a bit of a learning curve adopting the higher-level format of object-oriented programming in this release. Overall, though, this change will be a plus for creating large-scale, object-oriented applications with PHP.

Keeping pace with the developments in MySQL and PHP's tight relationship, PHP5 has added a new suite of MySQL functions relating to the new features added since MySQL 4.1. Denoted as Improved MySQL Extension, its purpose is to allow developers to take advantage of prepared statements and the other additions to MySQL 4.1 and above.

Something very interesting to note with the addition on the Improved MySQL Extension is the absence of bundled MySQL client libraries with PHP5. There are numerous reasons given for this, including the different licenses that PHP and MySQL are under (PHP is under a BSD/Apache type license and MySQL is under a GPL license). The PHP5 documentation also assures developers that "there will always be MySQL support in PHP of one kind or another," but doesn't go into details as to the future of MySQL support. This perhaps is further evidence that the long-lasting popularity of LAMP environments (Linux, Apache, MySQL, PHP) will soon be replaced by SLOP environments (Sun, Linux, Oracle, PHP). If Zend continues to shy away from MySQL and completely joins forces with Sun, MySQL may soon no longer be part of the picture, and cheap, fast development may no longer be possible for PHP developers in the same capacity as it is today.

Zend clearly has underplayed the extent of the shift that has taken place concerning the future of PHP. While this version of PHP does provide a much better object model and added features, is this the beginning of the end of PHP as the choice of web scripting language for the open-source community and developers not under the employ of corporations? Will the average developer still be using PHP five years from now, or will the usefulness of PHP be limited to companies who can afford to shell out thousands of dollars for all of the necessary software that may be required to make PHP a viable option for development (along with the purchase of products from Sun, Macromedia, Oracle, Borland and others)?

While today this is still speculation, the evidence and tone lends credence to the thought that with the success of PHP, built on the backs of developers worldwide, the near future of it may include an alienation of it from those who energized it at its genesis, propelling it to the corporate enterprise status that those in control of PHP are seeking today. No matter what actually happens, developers should be aware of the major developments with PHP beyond the surface level function additions and new object model. Companies and developers who are employing PHP 5 for large-scale applications today at a reasonably low price may be in for a surprise in the next few years, if operating PHP at full capacity involves the purchase of additional, expensive software.

This discussion has been archived. No new comments can be posted.

PHP5: Could PHP Soon Be Owned by Sun?

Comments Filter:
  • PHP overview at K5 (Score:4, Informative)

    by Matt Perry ( 793115 ) <perry.matt54@ya[ ].com ['hoo' in gap]> on Friday August 06, 2004 @04:48PM (#9903178)
    There's a great overview [kuro5hin.org] of PHP5's new OO capabilities at Kuro5hin.
  • by gtrubetskoy ( 734033 ) * on Friday August 06, 2004 @05:01PM (#9903340)

    Don't know if this is really relevant, but as is noted in the Section 5.G of Feb 2004 ASF Board meeting minutes [apache.org], the PHP project is terminated and rights for PHP will be tranfserred to the PHP group.
  • Fork it (Score:5, Insightful)

    by hoggoth ( 414195 ) on Friday August 06, 2004 @05:01PM (#9903345) Journal
    All of these comments are irrelevant. These predictions of PHP's future may come true or may not. But if you don't like the direction PHP takes, fork the project, take the source code, remove the parts you don't like, grow it in a direction you do like.

    See that's why Open Source is different than proprietary software. It's not just another choice, it's fundamentally DIFFERENT. Nobody can take the software and force it down a direction you don't like because you and like-minded individuals can take it in the direction you like.

    • Re:Fork it (Score:4, Insightful)

      by Enrico Pulatzo ( 536675 ) on Friday August 06, 2004 @11:04PM (#9906219)
      It's funny that people claim this is a strength of Open Source, but when someone forks a spec, flames reign supreme. Can anyone explain why this is? I'd really like to know how forking and introducing proprietary featurs is okay for some projects, but on other projects it's not.

      Seriously consider the differences between say, Microsoft forking HTML, and GNU forking ANSI C. I know that the Linux kernel can pretty much only be compiled by gcc since the kernel depends on gcc proprietary extensions, yet feel outraged that a company dare to do the same to a (wildly) popular markup language.
      • Microsoft, long ago, felt it had a stake in reshaping the nature of browsers. Personally, I don't think the GNU C Compiler folks feel they have a stake in reshaping the nature of compilers.
      • Re:Fork it (Score:2, Insightful)

        by Drywall ( 100602 )
        HTML is a client-side thing, and thus is very subject to a network effect: its only useful if lots of people are using it and can be counted on to use it. M$ "forking" HTML is problematic because it balkanizes the installed user base into different camps supporting different specs, thus reducing the utility of HTML as a whole (or something like that).

        When a project like PHP is forked, it's true that it may divide up the developer base somewhat, spreading communal development resources more thinly than they
      • It's funny that people claim this is a strength of Open Source, but when someone forks a spec, flames reign supreme. Can anyone explain why this is?

        Probably for the same reason that people are up in arms about the transition from XFree86 to X.Org. Or, maybe it's the same reason people are really upset about forking Ghostscript. Or CDDB/FreeDB. Or OpenOffice/OpenOffice.org. Or Netscape/Mozilla/Firefox. Or rxvt/aterm, even.

        (Oh yeah, that's right. People seem to like these forks.)

        If PHP development

        • Wow I never knew about an OpenOffice/OpenOffice.org fork... (I thought it was always OpenOffice.org)

          And your exactly right, if people like the fork better than the original, the fork will take over really (or because 2 seperate products), and if they don't like the fork, well it won't get very far now will it?
    • True. Forking PHP and building a successful community around the fork would send two powerful messages to corporations. Message 1: You can profit from OSS but you can't (successfully) dictate its politics. Message 2: Normal people are in control of OSS, not corporations. If you ask me, Message #2 will upset them the most.
    • Yes, you _could_, but everybody will just end up in different camps and each zealously fighting each other over their own "superiority".

      I'm always reminded of ATOM and RSS.

      Yes, there's always choice, but it saddens me to see smart people with lots of energy, fighting each other instead of creating one wonderful product.

      At the end, the consumer is always the ones suffering. If there was PHP-A, PHP-B, PHP-C and all of them are not compatible, how do you plan to jump from PHP-C-0.9 (discontined) to PHP-A-v
  • Educational. (Score:5, Interesting)

    by EvilJohn ( 17821 ) on Friday August 06, 2004 @05:04PM (#9903379) Homepage
    It seems Microsoft isn't the only one capable of spreading FUD. If PHP gets to far into someone's pocket, it will get forked into something more palatable to the community.

    This is the beauty of open source. It defies this kind of corporate grab.
  • Not sure I agree (Score:5, Interesting)

    by numLocked ( 801188 ) on Friday August 06, 2004 @05:08PM (#9903423) Homepage Journal
    I feel like Mr. Felton is looking for things to be wrong with PHP 5:

    "There are private and protected members and methods, abstract classes and interfaces, in practice, identical to Java's object model."
    A ton of languages treat classes like this. This is really pretty standard. The underpinnings of the way PHP handles classes may be like Java, which makes sense because Java does it pretty well, but as far as the developer is concerned, it's just like a host of other languages.

    "companies whose coffers are already overflowing"
    Sun's coffers are not exactly overflowing

    "Java became successful for a reason: it's intelligently designed and facilitates code reuse."
    exactly. why shouldn't php do the same?

    "Instead of passing the actual object itself, PHP's object model passes by reference"
    This has been deprecated for some time - most PHP developers knew this was coming and had php.ini configured to do this by default already. This has nothing to do with my point, but is an interesting side note.

    "if PHP is a developer's primary language and he or she hasn't been introduced to the world of static variables, public and private methods"
    oh come on. This is CS 101 stuff...how many serious PHP developers could there be who don't know that stuff?
    • by JVert ( 578547 )
      Of course it will remain open source so that those half-million developers can continue to contribute their time and genius to its success, but if those thousands of contributions lead to direct financial gain for companies whose coffers are already overflowing and are simultaneously using those contributions to manufacture software with price tags out of reach to anyone but corporations, is PHP still the language developers should be focusing on for use in the open-source community?

      I feel soo bad. I have
    • not quite. (Score:5, Insightful)

      by pb ( 1020 ) on Friday August 06, 2004 @05:59PM (#9903902)
      The way Java handles protected variables (due to packages) is starkly different from the way C++ handles protected variables. Fortunately, it looks like PHP picked the (less broken, IMHO) C++ way to do it.

      As for your final comments--all too many PHP developers don't know "CS 101 stuff", serious or no. Also, I know that when I first learned about the OO methodology, it was quite confusing. Now that I know more about it, I'm convinced that there's a lot there to be avoided, and all of it should be carefully considered.

      Fortunately, (like the crippled "object system" in PHP 4) if you don't want to use it, you still don't have to use it.
      • The way Java handles protected variables (due to packages) is starkly different from the way C++ handles protected variables. Fortunately, it looks like PHP picked the (less broken, IMHO) C++ way to do it.
        Would you elaborate on this?
        • Re:not quite. (Score:3, Informative)

          by timotten ( 5411 )
          Well, the grandparent's comment was pretty random, but it interested me, too, so I did a quick search of Google and a thread [sun.com] with a Java + protected + field problem. So I did my own test (with Blackdown JDK 1.4.1 for Debian).

          First, recap. These points are usually mentioned in "Intro to Java" texts:

          1) A class member marked as protected can be accessed from any subclass. A normal use cases might have a subclass modify some inherited field.

          2) One instance of a class is allowed to access any member of anothe
          • I have found this: "The protected keyword has a similar meaning to that in C++, but protected entities are also accessible in all methods of classes in the same package."
            It don't see much of a problem here.
          • Argh. This is inaccurate.
            Here's a link:
            http://java.sun.com/docs/books/jls/second_edition/ html/names.doc.html#104285 [sun.com]

            In a nutshell (and paraphrasing)

            public members have global visibility.
            private members are visible solely within the top-level class that declares them
            default-access members have package visibility
            protected members have package visibility AND are visible to subclasses.
            • Also, in Java 1.0.2 there was a "private protected [sun.com]" keyword that corresponded to C++-style protected variable access. However, apparently that was a "bug", and was quickly removed, over the protests of the userbase.

              P.S. sorry I didn't reply in this thread earlier to clarify things, guys, I guess I didn't think anyone would be interested. :)
            • There is an incorrect statement, caused by an error in my original test. I updated my test [american.edu], and the last line should read

              Code in bar.WonkPrime.doThat can access this.fld, this.mth, sameInput.fld, sameInput.mth. But it can't access superInput.fld or superInput.mth.

              Your last comment (protected members have package visibility AND are visible to subclasses) helps explain the discrepancy betweeen foo.WonkPrime and bar.WonkPrime: there are two distinct access rules in play. The package visibility rule (which

    • When I took CS 101 there whre no stinking methods! It was structured programing! The way real programers work!.
      Actually I look forward to playing with the new PHP 5 I just worry that it might break a lot of stuff like PHP-Nuke.
  • PHP and MySQL? (Score:4, Interesting)

    by Unordained ( 262962 ) <unordained_slashdotNOSPAM@csmaster.org> on Friday August 06, 2004 @05:18PM (#9903533)
    If Zend continues to shy away from MySQL and completely joins forces with Sun, MySQL may soon no longer be part of the picture, and cheap, fast development may no longer be possible for PHP developers in the same capacity as it is today.

    Maybe you don't realize this, but PHP supports quite a range of database products. The fact that it seemed to favor MySQL over the rest didn't really help anything; it just made more people use a product they wouldn't necessarily have chosen on its own merits alone, and directed more programming/bug-fixing toward that one product. Postgresql or Firebird, SAP or Oracle ... you have plenty of choices, and fast development doesn't depend on MySQL. In fact there are problem domains where MySQL slows down development because of lacking features. It's something to consider. Unless PHP drops all support for database operations, it'll remain useful for these kinds of applications. There's no reason to give up hope!

    And as to MySQL, remember it's not as free as the rest. Like Qt and MySQL (Trolltech and MySQL AB) are both using dual-licensing to make their products "free" for some use, but not for others. MySQL's client libraries are GPL rather than LGPL, which makes using them for corporate projects less ... legal. It makes sense for a language like PHP to distance itself from such projects -- not eliminate support, just appear less entangled. It cleans everything up, and leaves us with obvious choices to be made.
    • Re:PHP and MySQL? (Score:4, Informative)

      by Electrum ( 94638 ) <david@acz.org> on Friday August 06, 2004 @07:17PM (#9904571) Homepage
      And as to MySQL, remember it's not as free as the rest. Like Qt and MySQL (Trolltech and MySQL AB) are both using dual-licensing to make their products "free" for some use, but not for others. MySQL's client libraries are GPL rather than LGPL, which makes using them for corporate projects less ... legal. It makes sense for a language like PHP to distance itself from such projects -- not eliminate support, just appear less entangled.

      This is complete FUD. It doesn't matter that PHP uses the GPL'd MySQL client library. Code running under the PHP interpreter is not affected by the GPL.

      Additionally, GPL incompatible applications can use the GPL'd MySQL client. They simply cannot statically link with it or distribute the client library. The user of the application would have to provide the library. Dynamically linking to a library does not cause any (copyrighted) code to be copied into the application. You have never needed a license to use a shared library.
      • ... actually, that's not always been the position (vague) of the FSF. it's been -also- said that dynamically linking with a library is the -same- thing as statically linking, thus making it subject to the same rules. sure, it's debated, and sure, it's never been tested in court. but it's not as clear as you would like it to be.

        if you want your stuff to be usable, make the client libraries LGPL. period.
        • actually, that's not always been the position (vague) of the FSF. it's been -also- said that dynamically linking with a library is the -same- thing as statically linking

          It doesn't matter what the FSF thinks. What matters is copyright law. Unless dynamic linking is a violation of copyright law then the GPL doesn't apply. Remember, the GPL is simply a conditional copyright waiver.

          Of course, it's obvious that dynamic linking is not a violation of copyright law. Do a Google search and you'll find stuff l
    • This reminds me of a question I've wanted to see answered for such a long time now. . .

      Why isn't there a standard Database Independant Interface library yet?

      There's been all this talk about the "new MySQL" crap, and that's nice an all (if you're a MySQL user), but I don't care about MySQL. What I do care about, is writing applications that are as portable as possible across databases.

      With a little bit of work, it isn't that hard to write code that will work well across PostgreSQL, Oracle, and MySQL. . .
      • Why isn't there a standard Database Independant Interface library yet?

        For PHP? I suspect it's because the language has built-in MySQL access functions from the start, at least in the most common configuration. It's so easy to start using MySQL with PHP that there's really no reason an alternate access mechanism could gain any significant traction.

        This is one of several cases in PHP where attempting to simplify the language for novices has made some tasks much more difficult. It's a pity that namesp

        • Yeah.

          Unfortunately, it's a royal pain in the butt when you're a developer who does their development on PostgreSQL, and their deployment on Oracle and DB2. We've had to spend way too much time dealing with database issues because of the lack of a standard database independant interface.

          Much as I'd prefer using PHP, we've actually ended up having ot use Perl for a number of projects, simply because it reduced the headache and development issues so much.

          Oh, well. Maybe with PHP6, they'll pull their heads
          • PHP has had a database abstraction library as a loadable/compilable extension for years (dbx [php.net]). It has a very small function list, which I consider a strength rather than a weakness, since it allows everything actually needed to interact with an SQL DBMS. I personally really like DBX, and wish it was always enabled by default.

            Also, PHP 5 has a new abstraction library which is available in PECL, called PDO [php.net].

            Yes, I know these are not enabled "by default", but given that Perl's largest DB abstraction library i
  • Zend vs Rasmus (Score:4, Interesting)

    by TekZen ( 611640 ) on Friday August 06, 2004 @05:18PM (#9903535) Homepage Journal
    Zend has done a really good job of positioning themselves as the apparent "leaders" of PHP. However, Rasmus recently was quoted [technetra.com] as saying:
    Over the years PHP has grown from a single guy, me, to now 800-900 people around the world contributing.
    I read that comment as a jab at Zeev and Andi. I think there is a power struggle going on, but Rasmus' point is a good one.

    The PHP group is 9 guys across the globe. Zend is a strong force and helpful. I like the syntax changes that make PHP more like Java, but I don't want to see any company own PHP.

    Luckily, it's not gonna happen.

    -Jackson [jaxn.org]
  • by pats ( 39583 )
    Get a grip on yourself man. It's Friday - go out & have a few beers.

    Besides, you missed the real threat: Given the similarity between PHP 5 & C# object models, it's obvious the evil empire is trying to take over PHP (or maybe Sun is trying to control C# as well).
    • I thought it was obvious that everyone wants to look like Java... but then java is supposed to look like C++.. which in turn looks like C (or is it C that looks like C++?).

      As OO languages go, there will always be similarities in implementation. Having needless variation in the what the time function is called (for instance) isn't in anyone's interest.
      There are relevant differences in underlying code compilation and running, but when it comes to writing.. a language == a language = a language := a la

  • Evil Plot? (Score:4, Interesting)

    by cornice ( 9801 ) on Friday August 06, 2004 @05:24PM (#9903586)

    Of course it will remain open source so that those half-million developers can continue to contribute their time and genius to its success, but if those thousands of contributions lead to direct financial gain for companies whose coffers are already overflowing and are simultaneously using those contributions to manufacture software with price tags out of reach to anyone but corporations, is PHP still the language developers should be focusing on for use in the open-source community?


    A - Which of these companies have overflowing coffers?

    B - It's open source. If someone wants to contribute then they can contribute. If someone wants to profit then they can attempt to profit. I don't see why a company that contributes shouldn't have the opportunity to profit somehow.

    C - Nothing says that PHP can't be forked back towards the little web scripting engine that was once PHP and PHP/FI before that.
  • Too many futures (Score:4, Interesting)

    by Spooker ( 22094 ) * on Friday August 06, 2004 @05:26PM (#9903615)
    5 years ago no one had heard of PHP (ok, a bit of exaggeration since I started with PHP 7 years ago) ... and it has grown from the niche geek toy into something the big boys play with ... it started as a small project of one person and now it has tens of books written about (many translated to multiple languages), 3 specific magazines, numerous companies providing commercial tools, more companies providing development support and women who think it's sexy (I know she's out there, where are you?) ...

    It's nice to know where the OO model comes from, gives it more credence ... it's nice to know that the larger companies are taking notice (even if one of them may be grasping at anything to stay alive) ... and yes Zend can be considered to have a large say in what direction PHP takes (I will not propogate rumors, I will not propogate rumors) ... but what about looking at the history of Perl as a possible role model for PHP? Didn't that also get slammed with rumors of corporate takeover when ActiveState started doing more with it? Notice that Perl is still OS ...

    Is talking about Sun, Macromedia and MySQL horning in on the action is like chicken little proclaiming the sky is falling ... or is this a wakeup call to the PHP programming public to take back their rights that have been trampled on by so many trying to take commercial advantage of a language by the people for the people?

    Food for thought ...

    p.s. I work for a company that produces commercial tools for PHP development :)
  • by vf123 ( 244292 )
    While PHP5 is very similar to Java I believe it's mainly the shift to object orientated programming that brings the 'cloning' that you see.

    That and a dash of paranoia.
  • Growing a Language (Score:5, Insightful)

    by Ridgelift ( 228977 ) on Friday August 06, 2004 @05:42PM (#9903764)
    What drives me crazy about PHP is it just keeps growing. Need another function? Ah let's just add it! The problem is the language grows from something quite simple to something that's impossible to master.

    I like the approach Python has taken. Everything is kept clean and simple, and the complexity is added through importing modules. Need another function? Import it! I guess that's why Python is said to "fit in your head".

    I'd better stop before I start a flame-war. The point I wanted to make is PHP and Java will both probably collapse under their own weight, and another simpler language will take their place. If the plan is the grow PHP into Java, then there will be tonnes of books needed to reference everything, which is good if you want to sell books, but bad if you want to write programs without having to constantly look something up.

    It seems to me that a programming language needs to plan for growth before it starts, otherwise it grows and gobbles up the mental resources of the programmers using it. Once it's too big, people will just fall back on simpler tools.
    • cruft (Score:5, Interesting)

      by pizza_milkshake ( 580452 ) on Friday August 06, 2004 @06:28PM (#9904118)
      agreed, the more i work with php the more i dislike its interface. there is no standardization of function names, as illustrated in strtoupper() and str_split(). nor are arguments in a standard order, such as in_array(needle, haystack) and strpos(haystack, needle). some functions are horribly named, see the aformentioned strtoupper(). and there's just something about having several hundred (maybe thousand?!) functions in the same namespace. every other popular scripting language i know has the concept of modules, allowing subsets of functions to be imported and used when necessary... there's pear, but it's certainly secondary to php itself and not nearly as widely used within php as perl is within cpan.

      now don't get me wrong, i'm not bashing php. i use php all the time and it is a pretty straightforward tool and quite easy to pick up. the inevitable problem with trying to reform a language is that you need to "break" it in order to fix it

      • Re:cruft (Score:5, Interesting)

        by cyberkreiger ( 463962 ) on Friday August 06, 2004 @06:51PM (#9904317) Homepage
        According to http://tnx.nl/php [tnx.nl] there are 3079 core functions in PHP4 (as of november 2003), compared to 206 in perl.
        • there are 3079 core functions in PHP4 (as of november 2003), compared to 206 in perl.

          Or 7 in Lisp.

          • Re:cruft (Score:3, Funny)

            by Anonymous Coward
            > > there are 3079 core functions in PHP4 (as of november 2003), compared to 206 in perl.

            > Or 7 in Lisp.

            7 core functions and 3072 interpretations for the character ')'
        • 3079 is only if you compile in every single possible external module. Most people aren't going to compile in mssql and mysql and oracle and pgsql and msql support at the same time, for example. Anecdotally, having worked across dozens of installations in various shops large and small and numerous hosting environments, there's probably 1000 functions that are commonly available via 'standard' compiled-in modules (mysql, gd, odbc, imap, etc).
      • Re:cruft (Score:4, Insightful)

        by Ridgelift ( 228977 ) on Friday August 06, 2004 @07:27PM (#9904683)
        now don't get me wrong, i'm not bashing php. i use php all the time and it is a pretty straightforward tool and quite easy to pick up. the inevitable problem with trying to reform a language is that you need to "break" it in order to fix it

        In the movie "City Slickers" Jack Palance's character quips that the secret to life is just one thing, and once you know what that one thing is, everything else makes sense. I'm beginning to think that programming languages are the same way. The "one thing" about Visual Basic was introducing components. Perl's one best thing is powerful reporting capabilities. Python's contribution is namespace (just type 'import this' into the interpreter for an easter egg's explanation).

        PHP's "one great thing" seems to be initial ease of use. It's dead simple to install, the php website's documentation is second-to-none, and it's relatively painless to cut-and-paste code inside HTML to make stuff work. My problem, however, is the same complaint I have with the Windows operating system: PHP is impossible to master, because it's becoming too broad with too many functions and too many special cases.

        According to http://tnx.nl/php [tnx.nl] there are 3079 core functions in PHP4 (as of november 2003), compared to 206 in perl.

        3079? That's just seems insane to me.
        • I would argue that PHP's "One Thing", in this case, would be it's ability to handle a variety of different types of data streams with a single simple set of functions.

          Data from webservers, ftp servers, files, named pipes, and network sockets can all work more or less the same way. I find it nice to be able to talk to network servers with it just as easily as I can read and write plain files.

        • Nice parallel, and cool python easter egg ;).
    • by AuMatar ( 183847 )
      Except that the standard library!= the language. You do not need to memorize know all the functions in it. I don't even know the full C standard library, at its piddly 100 or so functions. Hell, you don't even need to know that the standard library exists, you can program without it.

      As for Python and importing vs Java/PHP- the two ideas are exactly equivalent. If you're going to import it, you need to know it exists, which means you did as much reading/memorizing as everyone doing Java/PHP. If you did
      • As for Python and importing vs Java/PHP- the two ideas are exactly equivalent. If you're going to import it, you need to know it exists, which means you did as much reading/memorizing as everyone doing Java/PHP. If you didn't, you'll end up writing the functionality yourself.

        Not quite; if you use a decent IDE with code completion / code assist / whatever, having namespaces really help in pinning down that function you need, e.g. if you need a string function, it's easy to just type string. , press CTRL+S

        • Agreed, a naming convention is a good thing. That still doesn't make the Python idea of importing from a massive standard library any different from PHPs just use the function method.

          As for the IDE- eh. I find those autocomplete and the like really damn annoying. A language should be built to be tool agnostic, not pick and choose ways of doing things based on the currently available tools. Do it that way, and it'll end up being completely unfit for the tools of tomorrow.
          • A language should be built to be tool agnostic, not pick and choose ways of doing things based on the currently available tools

            Tools like Eclipse allow the use of plug-ins to support new languages, so provided the language you want to use is not too esoteric (or you are willing to get dirty and write a plugin), code completion should just work. AFAIR Eclipse, with the appropriate plug-ins, could indent and code-assist Java, C, C++, C# and Python, and I'm sure I'm missing some.

    • I have a hard time seeing why this is a problem from a developer of PHPs point of view. You use the functionality you need, there is no need to know everything about the rest. If you need it but don't know it, hey, that's what the thoroughout documentation is for.

      I think the "clean and simple" with complexity in modules is just a problem if you try to think of it. If you consider the "core functionality" of PHP it is quite easy to see what really is core and what is not. The distinction is made by you as a
  • duh (Score:5, Insightful)

    by Sparr0 ( 451780 ) <sparr0@gmail.com> on Friday August 06, 2004 @05:57PM (#9903885) Homepage Journal
    Keep using PHP4 or PHP5 if you dont like where Zend/Sun takes PHP6. Its not like features will start to magically disappear from the old versions.
    • PHP6? Nah, with Sun involved, the next version will be PHP10 and the version after that PHP10 Platform Standard Edition 50.
  • Go FUD yourself (Score:5, Insightful)

    by BortQ ( 468164 ) on Friday August 06, 2004 @06:14PM (#9904005) Homepage Journal
    This article is packed with FUD of the worst kind. Bleeeech!
  • Zend, the Israeli company backing the development of PHP...

    As far as I understand from your review, PHP development was directed not by a non-profit (think Apache Foundation), but by a business (think MySQL and Zope) for a while now, and this was OK from your POV until some bigger businesses offered investment in Zend. Can you reasonably justify (at least to yourself) why Zend was OK and "Sun, MySQL, Borland and Macromedia" are bad-bad-bad corporations? Especially since MySQL could not be MUCH bigger, rig
  • Now that all the hard work and volunteering has paid off and PHP is a worldwide success, it appears that PHP could soon be another corporate shill owned by Sun, MySQL, Borland and Macromedia, if not on paper, then by direct influence on the people at Zend. Of course it will remain open source so that those half-million developers can continue to contribute their time and genius to its success, but if those thousands of contributions lead to direct financial gain for companies whose coffers are already overf

  • No Such Evidence (Score:3, Insightful)

    by Tablizer ( 95088 ) on Saturday August 07, 2004 @12:58AM (#9906823) Journal
    Java became successful for a reason: it's intelligently designed and facilitates code reuse. By borrowing the best features of Java's object model, PHP has leveraged itself with...

    For years I have been asking for concrete examples of OO producing code reuse in the business domain, but have yet to see a convincing example. OO does NOT have objectively demonstratable magic properties (except in a few narrow conditions that I don't encounter very often).

    Some people pick OO because they personally like it, NOT because it is objectively better. Enough with the OO hype.
    • With Java, pretty much anything you'd want to reuse is already included in the massive standard library, simple stuff like ArrayList and TreeMap come up every day. Java's Object hierarchy itself is an excellent demonstration of code reuse. Because of the massive library, the code you do write yourself will probably be customized to whatever you're doing. That's a good thing.

      On a less bloated front, I often write objects into a test harness before dropping them into a large project. This allows for easi
  • On November 4th, 2003, Zend announced a strategic partnership with Sun. This deal also included advisors from Borland, Macromedia, MySQL and others. The purported purpose of this deal was to make PHP part of Sun's web server and bring it to the corporate world of development that previously had been dominated by ASP and ColdFusion.
    ColdFusion, is a product of Macromedia. Is that the deal hiring advisors from Macromedia, or advisor itself is Macromedia?
  • by eric.t.f.bat ( 102290 ) on Saturday August 07, 2004 @05:00AM (#9907531)
    This guy only knows Java and PHP, and he's amazed at how similar they are. Me, I only know Latin and PHP, and I'm amazed at how similar THEY are! I predict that PHP will soon change its name to the Pompeii Hypertext Processorium!
  • It's an interesting exercise to study just how much OSS is actually helping corporations, who already use it in one form or another, and individuals, people at home.

    Especially those on the wrong side of the tracks, or the border lines, affected by the "digital divide".

    I tried installing Linux for internet access on an old P5, just the way it was, without changing any hardware.

    Winmodems are what the poor have. They don't work on Linux.
    Ethernet is what corporations have. It works.
  • So now, we'll have two Java clones, .NET and PHP?

I tell them to turn to the study of mathematics, for it is only there that they might escape the lusts of the flesh. -- Thomas Mann, "The Magic Mountain"

Working...