News Feed
Jobs Feed
Sections



Recent Jobs

News Archive
feed this:

PHPClasses.org:
PHP 5.4 Features Shall you Upgrade to the newer PHP Version?
January 31, 2012 @ 10:05:03

Over on the PHPClasses.org blog today there's a new post looking at the next major upcoming PHP version (5.4), what it comes with and why you might want to make the upgrade.

PHP 5.4.0 is planned to be released on February, 2 2012. By the time you are reading this, it may already been out. It is a result of many months of development. Many features were proposed for this release. Some made into this version, others did not make it at least for now. So, now you may be wondering which interesting features really made it. Let me tell you more about some of the more interesting features present in this release.

The article mentions some of the usual major features that can be found in just about every "in PHP 5.4" list - traits, the built-in web server, binary notation for integers - but it also includes some of the features that didn't make the cut this time (like annotations and the inclusion of the APC caching extension). Also included are questions to ask to see if the upgrade is for you like:

  • Do you need the new features?
  • Do you need the updates now?
  • Try it and test it in dev first - does it meet your needs or cause other bugs?

The planned release for PHP 5.4 is during the first week of February (2012). Additionally, if you'd like to give the PHP development group some help testing out the latest Release Candidate, you can find instructions here.

0 comments voice your opinion now!
release feature upcoming guide opinion testing



KingFoo Blog:
PHP 5.4 - What's new?
January 24, 2012 @ 08:50:42

On the KingFoo blog today there's an excellent look at everything new coming up in PHP 5.4, the next version of PHP set to be released in early February.

PHP 5.4 will be stable soon. In this post I'll try to give you an overview and examples of the new PHP 5.4 features. If you want to try out PHP 5.4 (which is currently in RC3), it has to be installed first. I suggest that you try this out on a virtual machine so you don't break your current PHP version.

Improvements on the list include:

  • Improved Session Extension
  • Built-in webserver
  • Traits
  • Array dereferencing
  • Method calls through arrays
  • Binary notation for integers
  • Instantiate a class without running constructor
  • Improved JSON extension
  • Improved CURL extension

And this is just a start - they detail each of the improvements and provide code where needed to illustrate the update. They also link over to the PHP.net manual (or PHP bug tracker) for more information on the new feature/change.

0 comments voice your opinion now!
version upcoming language improvement addition new


Mayflower Blog:
Traits in PHP 5.4
August 05, 2011 @ 11:07:08

On the Mayflower blog there's a new post looking at the upcoming traits support PHP 5.4 will have to offer. (Note: original post in German)

PHP 5 was a big step in the right direction and today resembles the object-orientation of Java very much. At the end of June 2011 one more step was made, not based on Java, but from another popular language - Scala. The new language feature called Traits allow class and cross-code reuse with no vertical transmission. It is basically a relatively simple mechanism, which is explained below using a simple example.

Their examples are a "before" and "after" of the same functionality - creating a controller that can respond with a JSON message. The first example shows a simple controller that can respond in JSON, a JSON class that can work with HTTP and a User class that implements the Serializable interface on the JSON namespace. The second example redefines the Serializable interface as a trait that can be used inside the User class rather than inherited by it.

There's also a brief look at using multiple traits in one class and what to do about naming conflicts that might pop up and the prioritization method that's been put in place to help.

0 comments voice your opinion now!
traits feature upcoming example tutorial


PHPClasses.org:
Lately in PHP Podcast Episode 12 - Is PHP 5.4 really coming soon?
June 01, 2011 @ 10:54:36

PHPClasses.org has posted their latest episode of their "Lately in PHP" podcast series, Is PHP 5.4 really coming soon?

On the episode 12 of the Lately in PHP podcast, Manuel Lemos and Ernani Joppert discuss the latest developments and what is still stalling the progress of the developments needed to make PHP 5.4 happen.

They also have a bit of discussion about which browser is better for development - Chrome or Firefox (and the places Chrome might be lacking). You can listen to this latest episode either through the in-page player or by downloading the mp3 to listen at your convenience.

0 comments voice your opinion now!
podcast latelyinphp phpclasses episode upcoming release firefox chrome


Smashing Magazine:
Upcoming Web Design and Development Conferences in 2010
September 10, 2010 @ 10:18:48

If you're looking to take that next step in expanding your development/design knowledge outside of your local area, you might consider attending one of the many conferences out there on a wide range of topics. Finding them may not be the easiest thing, though, so Smashing Magazine has posted this huge list of conferences yet to come in 2010.

Using the contents of [last year's] list along with some other sources, we've compiled a list of web design and development-related conferences and events that will be taking place in the next six to eight months. As always, there is no way for us to be able to include every possible event here, but we'll be glad to update the list if you provide a comment to an upcoming event that you feel would be of interest to graphic designers or web developers.

The list is huge but they have it broken up into monthly chunks to make it a bit easier to digest with events like:

0 comments voice your opinion now!
web design conference development upcoming


Justin Tadlock's Blog:
Looking forward to WordPress 3.0
March 25, 2010 @ 13:22:38

In a recent post Justin Tadlock takes a look ahead and talks about the upcoming WordPress 3.0 version and some of what will come with it.

There's typically a ton of hype surrounding new WordPress releases, and WordPress 3.0 certainly won't be short of people singing its praises. This upcoming release might even have more hype than usual because the sheer number of new features will be overwhelming. When WordPress 3.0 is released, it'll mark the release of several things I've been waiting for in the last couple of years. It'll be at a point where it can be molded to create any type of website.

He talks about what things will make this release stand out from some of the ones in the past and what features with come with it including custom post types, improved navigation menu features, built-in shortlinks, custom headers/backgrounds and and more standardized comment form.

If I were to dub this release anything it'd be WordPress: Custom.
0 comments voice your opinion now!
wordpress release upcoming feature


PHPClasses.org:
Upcoming PHP 5.3 features and beyond
April 28, 2009 @ 07:56:34

This new post to the PHPClasses.org blog take a look at some of the new features that will be included in the PHP 5.3 release (coming soon to a web server near you!) by way of an interview with Lukas Smith.

his article presents an interview with core PHP developer Lukas Kahwe Smith that has pushed many of the new features of PHP 5.3 as release manager. Lukas talks about PHP 5.3 new features such as lambda functions, closures and PHAR support. He also explains what are traits, which for now it is a feature that was left out of PHP 5.3. He also talks about future PHP 5.x and PHP 6, as well how anybody can help in the development of PHP to make it come out faster.

They talk about the PHP.net wiki, briefly touch on the PHP 5.3 feature updates, performance/memory usage in the new version, Lambda functions, closures and PHAR and what's to come with PHP 6.

0 comments voice your opinion now!
lukassmith php5 upcoming php6 interview phar closures lambda memory usage


Gergely Hodicska's Blog:
What is new in PHP 5.3 - part 3 mysqlnd
November 19, 2007 @ 07:58:00

Gergely Hodicska continues his series on what's coming up in the next major PHP release with a new post covering the new mysql native driver (mysqlnd) that'll be included.

In the first two parts of this series I wrote about namaspaces and late static binding. In this part I will cover mysqlnd (MySQL native driver for PHP), which is also a really cool feature of PHP 5.3. This a replacement library (not an extension) for libmysql (MySQL Client Library) offering a lot of advantage over it.

He includes some of the reasoning why its a better choice, how it's integrated with the Zend Engine, the memory savings that it will give you and some of the functionality included with it like persistent connections, client-side query caching and statistical data collection functions.

0 comments voice your opinion now!
mysqlnd native driver php5 upcoming mysqlnd native driver php5 upcoming


Knut Urdalen's Blog:
PHPEdit as a Prado IDE
May 10, 2007 @ 10:27:00

As mentioned in Knut Urdalen's latest blog entry, the folks from Waterproof Software have announced a new extension that will be included with their upcoming version of PHPEdit (2.12) - "a Prado extension for syntax highlighting, code insight and and code hint".

This combined with the PHPUnit support in the same upcoming versions should make for quite the powerful tool. Check out the posting if you want more information on being a beta tester.

0 comments voice your opinion now!
prado phpedit upcoming version betatest phpunit waterproof prado phpedit upcoming version betatest phpunit waterproof


Chris Shiflett's Blog:
Upcoming PHP and Open Source Conferences
April 10, 2007 @ 07:36:00

Chris Shiflett has posted a reminder of some of the upcoming Open Source related conferences for the next few months including:

He's also included brief summaries of what each is about for you to pick out which you might want to attend. In the comments of the post, he mentions yet another conference (just passed unfortunately) for UKers - the PHPConference UK.

0 comments voice your opinion now!
upcoming opensource conference phptek eliberatica oscon upcoming opensource conference phptek eliberatica oscon



Community Events





Don't see your event here?
Let us know!


api framework application community extension package unittest language interview opinion introduction symfony2 development phpunit test series custom conference podcast release

All content copyright, 2012 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework