<?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>Fri, 24 May 2013 02:16:10 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[Lorna Mitchell: A Little More OOP in PHP]]></title>
      <guid>http://www.phpdeveloper.org/news/18680</guid>
      <link>http://www.phpdeveloper.org/news/18680</link>
      <description><![CDATA[<p>
<i>Lorna Mitchell</i> has <a href="http://www.lornajane.net/posts/2012/a-little-more-oop-in-php">republished a previous article about OOP</a> (following <a href="http://www.lornajane.net/posts/2012/introduction-to-php-oop">this entry</a>) introducing you to some of the core object-oriented programming concepts in PHP.
</p>
<blockquote>
This time around we'll look at some more advanced concepts and some more practical examples of building code, covering use of constructors and how to add access modifiers in to control how calling code can operate on your objects. We'll also show off how to create static methods and properties and, perhaps more importantly, illustrate applications of these features.
</blockquote>
<p>
She talks about initializing objects with constructors, working with "statics" and using <a href="http://php.net/instanceof">instanceof</a> to determine the object type. Sample code is included to help illustrate the concepts.
</p>]]></description>
      <pubDate>Thu, 01 Nov 2012 09:23:54 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Lorna Mitchell: Introduction to PHP OOP]]></title>
      <guid>http://www.phpdeveloper.org/news/18606</guid>
      <link>http://www.phpdeveloper.org/news/18606</link>
      <description><![CDATA[<p>
Making the transition from the procedural PHP world into the object-oriented world of some more complex applications can be difficult. It requires a shift in thinking that might take some learning. <i>Lorna Mitchell</i> has <a href="http://www.lornajane.net/posts/2012/introduction-to-php-oop">posted an introduction</a> to some of the common concepts.
</p>
<blockquote>
Since the introduction of PHP 5 in 2004, PHP has had an object model worthy of that description and became a truly modern language for use on the web. [...] Using OOP (Object Orientated Programming) enables us to architect our systems much more clearly, and to make them more manageable and more maintainable. This technique also allows us to separate form from function to create clean, navigable codebases with plenty of opportunities to reuse code, apply design patterns and bring in concepts from other brances of computer science.
</blockquote>
<p>
She covers some of the more common pieces you'll need to know to start venturing into OOP in PHP including: objects versus classes, using properties/methods, inheritance and access modifiers. Some sample code is included that works with user records in a database (along with the SQL to create the tables).
</p>]]></description>
      <pubDate>Mon, 15 Oct 2012 11:56:06 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Chris Morrell's Blog: Introducing Zit, an object-oriented dependency injection container]]></title>
      <guid>http://www.phpdeveloper.org/news/17724</guid>
      <link>http://www.phpdeveloper.org/news/17724</link>
      <description><![CDATA[<p>
In <a href="http://cmorrell.com/misc/zit-dependency-injection-container-976">his latest post</a> <i>Chris Morrell</i> introduces a project he's been working on to help with his dependency injection needs - <a href="https://github.com/inxilpro/Zit">Zit</a>, an object-oriented dependency injection container similar to the <a href="http://pimple.sensiolabs.org/">Pimple</a> DIC from <i>Fabien Potencier</i>.
</p>
<blockquote>
I'll admit right now that I'm fairly new to the world of dependency injection containers.  I usually do my dependency injection "manually" and have always thought that there must be a better way. Then I came across <a href="http://pimple.sensiolabs.org/">Pimple</a>, which is a wonderfully simple solution to the problem.  The only thing about it is that I hate its array-oriented interface.  Something about $container['session_storage'] rubs me the wrong way. 
</blockquote>
<p>
The <a href="https://github.com/inxilpro/Zit">Zit</a> tool should be very familiar to any user of Pimple, as it implements similar functionality, just in an OOP kind of way. He includes some example code in the post showing how to create a database connection object and inject it into the Zit container. You can find the latest code for the tool <a href="https://github.com/inxilpro/Zit">over on github</a>.
</p>]]></description>
      <pubDate>Fri, 23 Mar 2012 12:57:43 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Freek Lijten's Blog: Book Review - Growing Object-oriented software guided by tests]]></title>
      <guid>http://www.phpdeveloper.org/news/17661</guid>
      <link>http://www.phpdeveloper.org/news/17661</link>
      <description><![CDATA[<p>
<i>Freek Lijten</i> has <a href="http://www.freeklijten.nl/home/2012/03/10/Book-Review-Growing-Object-oriented-software-guided-by-tests">a new post</a> to his blog - a review of a book (from Freeman & Price) called "Growing Object-Oriented Software Guided by Tests". It's based on Java, but the ideas presented can be applied pretty universally.
</p>
<blockquote>
It may seem strange but I'd like to start out with giving my opinion on this book: It is brilliant! If you don't like reading my post you at least know what you should do next: buy the friggin' <a href="http://www.amazon.com/Growing-Object-Oriented-Software-Guided-Tests/dp/0321503627">book</a>. The book offers some theory concerning agile development, (unit-)testing and code quality but its killer feature is the almost 200 page long example of developing an application the TDD way! In the rest of this post I will shortly highlight different parts of the books and stuff I enjoyed or learned from it.
</blockquote>
<p>
He breaks up the review in to a few different parts - the process of test-driven development, his "first real lesson", their working example and a section about the more advanced topic of sustainable test driven development.
</p>]]></description>
      <pubDate>Mon, 12 Mar 2012 13:57:57 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Gonzalo Ayuso's Blog: Runtime Classes. A experiment with PHP and Object Oriented Programming]]></title>
      <guid>http://www.phpdeveloper.org/news/16684</guid>
      <link>http://www.phpdeveloper.org/news/16684</link>
      <description><![CDATA[<p>
<i>Gonzalo Ayuso</i> has put together an experiment related to the current OOP structure of PHP - a test <a href="http://gonzalo123.wordpress.com/2011/08/08/runtime-classes-a-experiment-with-php-and-object-oriented-programming/">working with runtime classes</a>, a structure generated entirely when the script is executed and not predefined in the file.
</p>
<blockquote>
Last week I was thinking about creation of a new type of classes. PHP classes but created dynamically at run time. When this idea was running through my head I read the following <a href="http://dhotson.tumblr.com/post/1167021666/php-object-oriented-programming-reinvented">article</a> and I wanted to write something similar. Warning: Probably that it is something totally useless, but I wanted to create a working prototype (and it was fun to do it).
</blockquote>
<p>
His class is pretty basic - a "Human" object that echoes a "hello world" sort of message via a "hello()" method. He creates the classes inside of different test methods to ensure that his assertions are true. The tests check basic output of the "hello()" method, calling undefined methods, testing inheritance and a test creating and evaluating a dynamic function.
</p>
<p>
For something more complex, he creates a dynamic class that solves the <a href="http://codingdojo.org/cgi-bin/wiki.pl?KataFizzBuzz">FizzBuzz</a> kat, a popular programming puzzle. You can find the full code for this and his other examples <a href="https://github.com/gonzalo123/HClass">on github</a>.
</p>]]></description>
      <pubDate>Mon, 08 Aug 2011 09:17:05 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[RubySource.com: Confessions of a Converted PHP Developer: Animal Abuse]]></title>
      <guid>http://www.phpdeveloper.org/news/16523</guid>
      <link>http://www.phpdeveloper.org/news/16523</link>
      <description><![CDATA[<p>
In another entry in his "Confessions of a Converted PHP Developer" series <i>Mal Curtis</i> about a <a href="http://rubysource.com/confessions-of-a-converted-php-developer-animal-abuse/">typical class development path</a> PHP developers take and how it can be a limiting, linear progression from one step to another.
</p>
<blockquote>
In converting to Ruby I realized how strict PHP is in its class hierarchy. This surprised me as I'd always viewed PHP as a very loose language, mainly due to its loose typing and lack of formal code structure guidelines. [...] I find most PHP developers learn starting by using inline PHP as a low learning curve entry point into dynamic web languages and then move on to fuller, more complex, applications.
</blockquote>
<p>
He includes a few code samples comparing how Ruby, while still allowing the same kind of structure, also lets you redefine classes on the fly. His example shows redefining a method in a Ruby class using a method commonly called "monkey patching". It's good that he points out a downfall of the approach too:
</p>
<blockquote>
I must note that Monkey Patching is often a quick fix solution that can create headaches for future developers (or for yourself, if your memory is like mine) for several reasons. [...] Use at your own risk! 
</blockquote>
<p>
There's <a href="http://www.google.com/#sclient=psy&hl=en&authuser=0&source=hp&q=monkey+patch+php">several different articles</a> all over the web talking about the "monkey patching" approach and if it's possible/useful in PHP.
</p>]]></description>
      <pubDate>Mon, 27 Jun 2011 13:40:02 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Slawek Lukasiewicz's Blog: Working with date and time in object oriented way]]></title>
      <guid>http://www.phpdeveloper.org/news/16451</guid>
      <link>http://www.phpdeveloper.org/news/16451</link>
      <description><![CDATA[<p>
<i>Slawek Lukasiewicz</i> has a new post today about <a href="http://www.leftjoin.net/2011/06/working-with-date-and-time-in-object-oriented-way/">working with dates and times in PHP</a> on a more object-oriented fashion than in the more traditionally procedural way of just calling PHP date/time functions on the string values.
</p>
<blockquote>
Date and time manipulation in PHP is mostly connected with functions like: date, time or strtotime. They can be sufficient, but if we want to deal with dates like with objects - we can use DateTime class. DateTime class is not only straightforward wrapper for standard functions, it has a lot of additional features - for example timezones.
</blockquote>
<p>
He shows how to use the <a href="http://php.net/datetime">DateTime</a> functionality to return an object you can call several different methods on. He gives examples of the formatting call, comparing one DateTime object to another, how to update the date after the object's created, calculating the difference between two dates and iterating through a certain time period.
</p>]]></description>
      <pubDate>Fri, 10 Jun 2011 08:13:14 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Elated.com: Object-Oriented PHP: Working with Inheritance]]></title>
      <guid>http://www.phpdeveloper.org/news/16391</guid>
      <link>http://www.phpdeveloper.org/news/16391</link>
      <description><![CDATA[<p>
On Elated.com there's a new <a href="http://www.elated.com/articles/object-oriented-php-working-with-inheritance/">introduction to working with inheritance in PHP</a> for object-oriented applications. They work through some of the basic concepts including parent/child classes, final and abstract classes and interfaces.
</p> 
<blockquote>
In this article we're going to explore the idea of inheritance in object-oriented programming, and how inheritance works in PHP. With inheritance, your objects and classes can become much more powerful and flexible, and you can save a lot of time and effort with your coding.
</blockquote>
<p>
They start with the basics of how inheritance works and then move right into creating child classes from a parent. Their example code makes a basic forum system (just example code, not fully functioning) with administrators, members and forum creation. They use this as a base to show the method overriding and exposure with "final". The finish it off with examples of two things that can promote good application structure - abstract classes an interfaces.
</p>]]></description>
      <pubDate>Fri, 27 May 2011 09:21:20 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Web Developer Juice: PHP Magic Functions: Best Part of Object Oriented PHP - Part 1]]></title>
      <guid>http://www.phpdeveloper.org/news/16288</guid>
      <link>http://www.phpdeveloper.org/news/16288</link>
      <description><![CDATA[<p>
On the Web Developer Juice blog there's a <a href="http://www.webdeveloperjuice.com/2011/04/28/php-magic-functions-best-part-of-object-oriente-php/">recent post</a>, the first part in a series</a> looking at one of the more handy features of the recent releases of PHP - the magic functions (some which were added in the PHP 5.x series).
</p>
<blockquote>
There are some reserved function names  in PHP class starting with __ ( double underscore ). These are <a href="http://www.php.net/manual/en/language.oop5.decon.php#language.oop5.decon.constructor">__construct</a>, <a href="http://www.php.net/manual/en/language.oop5.decon.php#language.oop5.decon.destructor">__destruct</a>, <a href="http://www.php.net/manual/en/language.oop5.overloading.php#language.oop5.overloading.members">__isset</a>, <a href="http://www.php.net/manual/en/language.oop5.overloading.php#language.oop5.overloading.members">__unset</a>, <a href="http://www.php.net/manual/en/language.oop5.overloading.php#language.oop5.overloading.methods">__call</a>, <a href="http://www.php.net/manual/en/language.oop5.overloading.php#language.oop5.overloading.methods">__callStatic</a>, <a href="http://www.php.net/manual/en/language.oop5.magic.php#language.oop5.magic.sleep">__sleep</a>, <a href="http://www.php.net/manual/en/language.oop5.magic.php#language.oop5.magic.sleep">__wakeup</a>, <a href="http://www.php.net/manual/en/language.oop5.overloading.php#language.oop5.overloading.members">__get</a>, <a href="http://www.php.net/manual/en/language.oop5.overloading.php#language.oop5.overloading.members">__set</a>, <a href="http://www.php.net/manual/en/language.oop5.magic.php#language.oop5.magic.tostring">__toString</a>, <a href="http://www.php.net/manual/en/language.oop5.magic.php#language.oop5.magic.set-state">__set_state</a>, <a href="http://www.php.net/manual/en/language.oop5.magic.php#language.oop5.magic.invoke">__invoke</a> and <a href="http://www.php.net/manual/en/language.oop5.cloning.php">__clone</a>. You cannot use these functions to serve your logical purpose but these are meant to be used for providing magic functionality.
</blockquote>
<p>
They go through some of the above methods and talk about what role they can play in your code and, for some, a brief bit of code to explain how it works. This first part covers __construct/__destruct and __call/__callStatic.
</p>]]></description>
      <pubDate>Tue, 03 May 2011 11:57:08 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Web Builder Zone: The PHP paradigms poll results: OOP wins]]></title>
      <guid>http://www.phpdeveloper.org/news/15231</guid>
      <link>http://www.phpdeveloper.org/news/15231</link>
      <description><![CDATA[<p>
According to <a href="http://css.dzone.com/articles/php-paradigms-poll-results-oop">this new post</a> on the Web Builder Zone, the results of a poll taken about the best programming method for PHP these days is - by far - object-oriented programming.
</p>
<blockquote>
After two weeks of gathering votes, the PHP paradigms poll is now closed. With 216 votes (73%), the winner paradigm in popularity is Object-Oriented Programming. The old procedural approach to PHP, which has given fame to Wordpress and Drupal, is coming to an end. Even Drupal 7 has an object-oriented database layer as a primary component, and this paradigm is by far the most diffused in the world for web sites and applications written in high level languages (different from C).
</blockquote>
<p>
While the overwhelming amount of votes went to OOP, there were still a few for some of the other options including the second place winner - procedural programming. He also talks a bit about OOP's current place in the PHP ecosystem and how it has allowed for certain great tools to be developed, but how it also has a good ways to go in functionality.
</p>]]></description>
      <pubDate>Tue, 05 Oct 2010 11:21:17 -0500</pubDate>
    </item>
  </channel>
</rss>
