Latest information on PHP upcoming releases

I'm trying to track the progress of PHP 5.3 and PHP 6 and I occassionally see blogs posting information but there doesn't seem to be an authoritative source. Does anybody know where there is an official summary of possible new features?

EDIT: There are some meeting notes that have been around for years... as far as I can tell this meeting has long since been superceded and nearly all of the other information out there is based entirely on that meeting.

I'm more looking for where the PHP developers themselves record the changes that they are currently making rather than the long-term vision.

This question and answers originated from www.stackoverflow.com
Question by (8/1/2008 12:09:41 PM)

Answer

i think the wiki is your best bet http://wiki.php.net/

Answer by

Find More Answers
Related Topics  php
Related Questions
  • Get Upcoming Birthdays Mysql and PHP

    I've been trying to get upcoming birthdays using mysql statement and php. Problem is i've seen some solutions but they use date fields. Unfortunately mine is stored as timestamps. The code below onl…
  • Get information on a website with php

    I 've been reading some of the topic about this. However, I dont quite understand how to do it. Need some help. I want to get information from a website. For example, I want to get information such…
  • Upgrade PHP to latest version on CentOS 4.5

    I'm a Linux newbie but I need to upgrade PHP on CentOS 4.5 to the latest version -- or at least 5.2.2 or better. What's the easiest way to do that? The latest available via yum seems to be 5.1.6 and…
  • Information on accessing SVN repositories via PHP

    Googling this does little good, as you can imagine. Does anyone have resources that outline how the PHP Subversion support works. I need to open a repository on disk, and read new commit logs, et…
  • Fetching latest blog post on wordpress using php?

    I have used this php to fetch my blog's latest post: function read_rss($display=0,$url='') { $doc = new DOMDocument(); $doc->load($url); $itemArr = array(); foreach ($doc->getEleme…
  • PHP latest Tweet

    I've created a twitter class with a method that pulls in the latest tweet depending on the user specified...uses twitter .XML class twitter { // Set twitter basepath public $basepath = 'http://t…
  • How to upgrade PHP to 5.3 on latest MAMP

    I've been struggling with this for quit a while... Googling all sorts of things has brought up anything useful so far. I have MAMP 1.8.4 install on my MBP running snow leopard - i want to upgrade…
  • php form: passing on submitted information

    if(!isset($_POST['JoinFaction'])) { echo '<form method="post" action="'.$page_name.'"><dl id="sample" class="dropdown" align="left">' .'<dt><a href="#"><span>Recruit…
  • Latest Actions in PHP?

    If you go to http://www.foxnews.com , and scroll down a little you would see the box "LATEST NEWS". Now I want to do something like that, but with modification. I have 3 queries, that get out …
  • php latest upload

    hi For various dull reasons, I'd like to assay a script that looks at the files in a directory, copies the filename of the latest and inserts it into a mysql table. It shld also check if the insert…