<?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>Wed, 19 Jun 2013 03:22:05 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[7PHP.com: Interview with Matthew Turland, Co-Author of "PHP Master: Write Cutting Edge Code"]]></title>
      <guid>http://www.phpdeveloper.org/news/18480</guid>
      <link>http://www.phpdeveloper.org/news/18480</link>
      <description><![CDATA[<p>
7PHP.com has posted another interview with a PHP community member - this time it's <a href="http://7php.com/php-interview-matthew-turland/">with Matthew Turland</a>, one of the co-author's of SitePoint's "<a href=http://www.amazon.com/gp/product/0987090879">PHP Master: Write Cutting Edge Code</a>" and known speaker/author.
</p>
<blockquote>
In this edition I talked with [Matthew Turland <a href="http://twitter.com/elazar">@elazar</a>], co-author of the PHP book '<a href="http://7php.com/recommended-book/book.php?b=Write-Cutting-Edge-Code">PHP Master:Write Cutting Edge Code</a>'. He currently works as a Senior Platform Engineer for <a href="http://twitter.com/Synacor">Synacor Inc</a>. Matthew was also a former technical editor for <a href="http://twitter.com/phparch">php|architect</a> Magazine, contributor to the <a href="http://twitter.com/zfChannel">Zend Framework</a> project and has spoken at conferences like <a href="http://twitter.com/zendcon">ZendCon</a> and <a href="http://twitter.com/phptek">php|tek</a>. On the FOSS side, Turland is the man behind the Phergie project - a PHP-based IRC bot. 
</blockquote>
<p>His answers talk about things like:</p>
<ul>
<li>What kind of environment (and tools) he uses for his development
<li>His work on the Phergie IRC bot project
<li>Resources he recommends for those new to the language
<li>What software he recommends/appreciates
<li>Some of the good and bad about conferences he's attended
<il>And a recommendation to check out the <a href="http://phpmentoring.org">PHP Mentoring project</a> for more guidance
</ul>]]></description>
      <pubDate>Mon, 17 Sep 2012 08:33:58 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[php|architect: oddWeek Episode #5]]></title>
      <guid>http://www.phpdeveloper.org/news/14199</guid>
      <link>http://www.phpdeveloper.org/news/14199</link>
      <description><![CDATA[<p>
php|architect has published the latest episode in their "oddWeek" podcast series today - <a href="http://www.phparch.com/2010/03/16/oddweek-episode-5">episode 5</a> with an interview with <i>Matthew Turland</i>.
</p>
<blockquote>
This week we talk with <a href="http://blueparabola.com/">Blue Parabola</a> Alumni Matthew Turland about the awesomeness that is Phergie [<a href="http://www.phparch.com/2010/03/16/oddweek-episode-5/phergie.org">an IRC bot</a> developed in PHP].
</blockquote>
<p>
You can listen to this latest episode in a few different ways - you can either listen via the <a href="http://www.phparch.com/2010/03/16/oddweek-episode-5">in-page player</a>, by downloading <a href="http://mtadata.s3.amazonaws.com/podcasts/20100316.mp3">the mp3 directly</a> or by subscribing to the <a href="http://www.phparch.com/feed/">php|architect feed</a> to get this and other great news and articles from the site.
</p>]]></description>
      <pubDate>Wed, 17 Mar 2010 11:02:01 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Matthew Turland's Blog: Environmental Awareness Quickie]]></title>
      <guid>http://www.phpdeveloper.org/news/10691</guid>
      <link>http://www.phpdeveloper.org/news/10691</link>
      <description><![CDATA[<p>
<i>Matthew Turland</i> <a href="http://ishouldbecoding.com/2008/07/26/environmental-awareness-quickie">came across</a> someone having an issue running his PHP-based IRC bot (<a href="http://phergie.org/">Phergie</a>) an an environment where the <a href="http://www.php.net/exec">exec function</a> wasn't allowed:
</p>
<blockquote>
This causes a warning in the <a href="http://trac2.assembla.com/phergie/browser/trunk/Phergie/Plugin/Quit.php">Quit</a> plugin, which uses exec to automatically detection of the full path to the PHP CLI binary on non-Windows systems that it will later use that path to initiate a new PHP CLI process to "restart" the bot.
</blockquote>
<p>
It check this setting for the future, it was recommended that he look at the <a href="http://us3.php.net/manual/en/language.oop5.reflection.php#language.oop5.reflection.reflectionfunction">SPL ReflectionFunction class</a> (a part of the Standard PHP Library) that would let him check the disabled status of any PHP function (looking at the result of the isDisabled call).
</p>]]></description>
      <pubDate>Mon, 28 Jul 2008 07:57:00 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[C7Y: Reflections on Designing an IRC Bot in PHP, Part 2]]></title>
      <guid>http://www.phpdeveloper.org/news/9996</guid>
      <link>http://www.phpdeveloper.org/news/9996</link>
      <description><![CDATA[<p>
<i>Matthew Turland</i> notes that the <a href="http://c7y.phparch.com/c/entry/1/art,irc_bots_in_php2">second part</a> of his "IRC Bots in PHP" series of articles has been posted to the C7Y community site (from <a href="http://www.phparch.com">php|architect</a>).
</p>
<blockquote>
The precursor to this article introduced some background and an overview of the design for the Phergie project as an example of the concepts involved in a PHP IRC bot implementation. This article will go further into the topic of plugins including descriptions of those that are commonly needed to make a bot fully functional as well as the commonly needed core features to support plugin development.
</blockquote>
<p>
In <a href="http://www.phpdeveloper.org/news/9934">part one</a> he set up some of the foundation code and explained some of the thought behind the structure of the bot. In <a href="http://c7y.phparch.com/c/entry/1/art,irc_bots_in_php2">this part</a> he gets more into the heart of the bot, showing how to define functions for common IRC actions (join/part/ping/etc) and how he made a plugin system to handle custom actions. He also mentions topics like memory usage, data storage methods and some of the "niceties" he included.
</p>]]></description>
      <pubDate>Fri, 18 Apr 2008 11:14:56 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Matthew Turland's Blog: Meet Phergie]]></title>
      <guid>http://www.phpdeveloper.org/news/9697</guid>
      <link>http://www.phpdeveloper.org/news/9697</link>
      <description><![CDATA[<p>
<i>Matthew Turland</i> has been working on a project based on an idea he and <i>Ben Ramsey</i> thought up - a wrapper around the <a href="http://libircclient.sourceforge.net/">libircclient</a> libraries to make IRC interface simple. As a result, <i>Matthew</i> turned it into a more practical application - you can call her <a href="http://ishouldbecoding.com/2008/02/20/meet-phergie/">Phergie</a>.
</p>
<blockquote>
I had toyed with some previous iterations of Phergie, some Python-based and later some PHP-based, before I finally got an API design I was happy with.
</blockquote>
<p>
The source for the bot can be downloaded from its <a href="http://svn2.assembla.com/svn/phergie/">subversion repository</a> and you can find out more about it on its <a href="http://trac2.assembla.com/phergie">Trac site</a>. Also, if you feel like chatting about it, you can head over to the #phergie channel on the <a href="http://www.freenode.org">Freenode IRC network</a>.
</p>]]></description>
      <pubDate>Mon, 25 Feb 2008 10:13:00 -0600</pubDate>
    </item>
  </channel>
</rss>
