<?xml version="1.0"?>
<rss version="2.0">
  <channel>
    <title>PHPDeveloper.org</title>
    <link>http://www.phpdeveloper.org</link>
    <description>Up-to-the Minute PHP News, views and community</description>
    <language>en-us</language>
    <pubDate>Sat, 22 Nov 2008 01:08:08 -0600</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[PHPBuilder.com: Localizing a Web Page for Different Languages]]></title>
      <guid>http://www.phpdeveloper.org/news/6482</guid>
      <link>http://www.phpdeveloper.org/news/6482</link>
      <description><![CDATA[<p>
PHPBuilder.com excerpts once again from the Sams Publishing book "PHP 5 in Practice" today with <a href="http://www.phpbuilder.com/columns/white-eisenhamer20060915.php3">this new tutorial</a> showing a method for localizing web pages for different languages.
</p>
<blockquote>
Internationalization and localization of a web page is simply the act of setting it up to be able to handle displaying in multiple languages and adding those different languages in. There are many different ways in which to do this. One of the simplest is to just make sure that all your strings that you ever output are stored as variables or constants in an included file. That way, you can make multiple copies of that file,each with different language versions written into them. Just include the appropriate file for the language that you want to display.
</blockquote>
<p>
They <a href="http://www.phpbuilder.com/columns/white-eisenhamer20060915.php3">show the creation</a> of the different language PHP files that will be included and the master "language.php" that works with the under's input to switch to the correct language (and set a cookie to save the preference).
</p>]]></description>
      <pubDate>Wed, 11 Oct 2006 15:36:00 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Kore Nordmann's Blog: New Image_3D release]]></title>
      <guid>http://www.phpdeveloper.org/news/5018</guid>
      <link>http://www.phpdeveloper.org/news/5018</link>
      <description><![CDATA[<i>Kore Nordmann</i> has released the <a href="http://kore-nordmann.de/home/blog/php/new_image_3d_release">latest edition</a> of his PEAR Image_3D package - <a href="http://pear.php.net/package/Image_3D/">version 0.4-alpha</a> - including some great new features.
<p>
<quote>
<i>
The new release of <a href="http://pear.php.net/package/Image_3D/">Image_3D (0.4-alpha)</a> is out. It was quite some time ago, Richard Davey wrote his <a href="http://www.corephp.co.uk/archives/15-Creating-3D-with-PHP.html">great introduction into Image_3D</a>. He asked for some different types of lights, I didn't thought of, when I released Image_3D first. This needed a minor change in the API you use to create lights, but offers some great improvements. See changelog for details.
</i>
</quote>
<p>
Some of the <a href="http://kore-nordmann.de/home/blog/php/new_image_3d_release">other additions mentioned</a> include, as mentioned, the ability to create different types of lights (light, ambient, point, and spotlight) and the inclusion of an object that allows for the creation of bezier areas from an array of points.]]></description>
      <pubDate>Mon, 20 Mar 2006 07:34:12 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[PHPit.net: Taking a look at ten different PHP frameworks]]></title>
      <guid>http://www.phpdeveloper.org/news/5017</guid>
      <link>http://www.phpdeveloper.org/news/5017</link>
      <description><![CDATA[From PHPit.net, there's <a href="http://www.phpit.net/article/ten-different-php-frameworks/">this article posted</a> that takes a look at ten of the more prominent PHP frameworks offered today, including the Zend Framework, Cake, Symfony, and Seagull. They compare each of them, including a large chart outlining their basic setup and features.
<p>
<quote>
<i>
PHP frameworks are the latest hot topic in the PHP community, and new frameworks are being released daily. With over 40 frameworks available it's difficult to decide which framework works best for you, especially as each framework offers different functionality.
<p>
In this article we will look at ten popular frameworks, and compare them to each other. First I will give you a general chart which gives you a quick overview of all the frameworks, and after that we'll go through each framework and discuss it in short.
</i>
</quote>
<p>
They <a href="http://www.phpit.net/article/ten-different-php-frameworks/">start with the chart</a> mentioned above for those that just want to boiled down version of the reviews. From there, they work through each, describing general details about them and the general feel that the author got from them as they developed in them. Of course, there is no real "winner" when it comes to this kind thing. Sure, there's always a few that rise to the top as more well developed and suited for more of the projects out there, but it's really more about what fits for you, not an overarching single framework to do it all...]]></description>
      <pubDate>Mon, 20 Mar 2006 07:27:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Sebastian Bergmann's Blog: PHP 5.1 / GCC Benchmark (Update)]]></title>
      <guid>http://www.phpdeveloper.org/news/4724</guid>
      <link>http://www.phpdeveloper.org/news/4724</link>
      <description><![CDATA[<i>Sebastian Bergmann</i> has updated a <a href="http://www.sebastian-bergmann.de/blog/archives/504-PHP-5.1-Performance.html">previous benchmark</a> concerning the performance of PHP 5.1 as built with various versions of <a href="http://gcc.gnu.org/">GCC</a>.
<p>
<quote>
<i>
I updated my previous benchmark of PHP 5.1. This time around I built PHP with GCC 3.4.5, GCC 4.0.2, and GCC 4.1.0.
<p>
The bottom line result seems to be that GCC 4 generates slightly slower code:
<ul>
<li>GCC 3.4.5: 15.223
<li>GCC 4.0.2: 17.896
<li>GCC 4.1.0: 17.847
</ul>
When I have more time, I will investigate this further using alternative optimizations, including profiling-guided ones.
</i>
</quote>
<p>
The <a href="http://www.sebastian-bergmann.de/blog/archives/566-PHP-5.1-GCC-Benchmark-Update.html">detailed results</a> are also included, showing how he came to each point mentioned above. They include the specs for the machine, how the testing was set up, and the detailed breakdown of the stats for each GCC version.]]></description>
      <pubDate>Wed, 25 Jan 2006 06:40:40 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Vidyut Luther's Blog: Difference between "require()" and "include()" in PHP]]></title>
      <guid>http://www.phpdeveloper.org/news/4611</guid>
      <link>http://www.phpdeveloper.org/news/4611</link>
      <description><![CDATA[On his blog, phpcult.com, <i>Vidyut Luther</i> talks about the difference between <a href="http://www.phpcult.com/archives/36-Difference-between-require-and-include-in-PHP.html">require and include</a> in PHP.
<p>
<quote>
<i>
This should be well known, and people should be aware as to why they are using either or. But, I've noticed lately that a lot of people new to PHP or programming are not aware of the difference. Depending on what you need you, need to decide what the differences are.
</i>
</quote>
<p>
It's a <a href="http://www.phpcult.com/archives/36-Difference-between-require-and-include-in-PHP.html">short post</a>, but for someone just getting into PHP, it's some handy information to have. He looks at both functions and gives what they're good for. He does throw in a few caveats, though - including an issue with parse errors in included files pre-PHP 4.3.5...]]></description>
      <pubDate>Thu, 05 Jan 2006 06:56:33 -0600</pubDate>
    </item>
  </channel>
</rss>
