<?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>Sun, 12 Feb 2012 21:01:38 -0600</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[Jakub Zalas' Blog: Managing object creation in PHP with the Symfony2 Dependency Injection component]]></title>
      <guid>http://www.phpdeveloper.org/news/16832</guid>
      <link>http://www.phpdeveloper.org/news/16832</link>
      <description><![CDATA[<p>
On his blog today <i>Jakub Zalas</i> has posted a tutorial he's written up about <a href="http://www.zalas.eu/managing-object-creation-in-php-with-the-symfony2-dependency-injection-component">using dependency injection in PHP</a> with the Symfony2 dependency injection component (DIC).
</p>
<blockquote>
Symfony's <a href="https://github.com/symfony/DependencyInjection">DependencyInjection component</a> is a PHP implementation of a Service Container, or as others like to call it, a Dependency Injection Container (DIC). The component also provides useful tools for handling service definitions, like XML loaders or dumpers. If you want to learn more about the dependency injection or the dependency injection container, read an excellent series of articles on the subject by Fabien Potencier: <a href="http://fabien.potencier.org/article/11/what-is-dependency-injection">What is Dependency Injection?</a>
</blockquote>
<p>
He walks you through the entire process - installing the needed libraries (the DIC, a config and class loader component and Buzz, a lightweight HTTP client). Code is included to show object creation the "usual way" and then creating the same types of objects in a dependency injection environment. Also included is a sample XML document describing the services for the container. He finishes the post with a <a href="http://www.zalas.eu/uploads/wp/2011/08/services.png">GraphvizDumper-generated image</a> for the container.
</p>]]></description>
      <pubDate>Thu, 08 Sep 2011 09:24:55 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Brian Swan's Blog: Getting Started with SQL Server Reporting Services (SSRS) and PHP]]></title>
      <guid>http://www.phpdeveloper.org/news/14472</guid>
      <link>http://www.phpdeveloper.org/news/14472</link>
      <description><![CDATA[<p>
<i>Brian Swan</i> has a new post to his MSDN blog today that looks at <a href="http://blogs.msdn.com/brian_swan/archive/2010/05/04/getting-started-with-sql-server-reporting-services-ssrs-and-php.aspx">working with the SQL Server Reporting Services SDK</a> and PHP to automatically create some reports based on the date in your database.
</p>
<blockquote>
In this post I'll dive into the SSRS SDK for PHP that was recently released by the Interoperability team here at Microsoft. [...] The documentation in the SDK is complete with explanations for the classes that make up the SDK, code examples, and a "hello world" example. However, in this post, I'll build a simple web page (code attached to this post) that renders the <a href="http://blogs.msdn.com/brian_swan/archive/2010/04/29/getting-started-with-sql-server-reporting-services-ssrs.aspx">Sales report that I created last week</a>.
</blockquote>
<p>
He starts off with an overview of how all of the technology will fit together and some of the things you'll need to have before you can get started - a user with the right permissions and a connection to the server. The "SSRSReport" class in the SDK gives you quick access to load a report based on a named location. You can then use methods like "RenderAsHTML" to output it as HTML or one of other methods (like CSV, text, PDF, etc). 
</p>]]></description>
      <pubDate>Thu, 06 May 2010 10:12:15 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[RIAZone: Integrating PHP with Flash Collaboration Services]]></title>
      <guid>http://www.phpdeveloper.org/news/13672</guid>
      <link>http://www.phpdeveloper.org/news/13672</link>
      <description><![CDATA[<p>
On the RIA Zone (a part of the <a href="http://dzone.com">DZone</a> network) there's <a href="http://ria.dzone.com/articles/php-flash-rest">a new tutorial</a> from <i>Ryan Stewart</i> about combining PHP with the Flash Collaboration Services (real-time collaboration and social capabilities via the LCCS) in the second part of his series (<a href="http://php.dzone.com/articles/integrating-php-flash">part one</a>).
</p>
<blockquote>
Another great way to integrate LCCS and PHP is with the REST APIs and the library that ships with the LCCS SDK. With those APIs we can perform a number of management functions including creating and deleting rooms, managing roles, and creating templates. These APIs make it very easy to create a customized, dynamic collaboration experience with PHP. You can create rooms on the fly for your users and get information about what kind of content is in those rooms. In this example we're going to create a basic room manager with PHP that will let us create, delete, and view information about specific rooms.
</blockquote>
<p>
Code is included to use the AFCS PHP library to connect to the Services API and pass in the username and password directly from the user. The request is made and a token is passed back to the calling script. The XML description of the full Flex application is included in <a href="http://php.dzone.com/articles/integrating-php-flash">the tutorial</a>.
</p>]]></description>
      <pubDate>Mon, 14 Dec 2009 13:47:28 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Aaron Wormus' Blog:  Interoperability is Overrated]]></title>
      <guid>http://www.phpdeveloper.org/news/7272</guid>
      <link>http://www.phpdeveloper.org/news/7272</link>
      <description><![CDATA[<p>
Despite opinions from some of the PHP community, interoperability between PHP applications isn't is such a bad state - at least <a href="http://www.wormus.com/aaron/stories/2007/02/13/interoperability-is-overrated.html">According to Aaron Wormus</a>:
</p>
<blockquote>
<p>
The fact of the matter is that it's not such a big deal. Porting a plugin from Wordpress to Serendipity is usually trivial, and as we see more web-services based plugins (stuff like the awesome askimet) the task becomes simpler and simpler.
</p>
<p>
Interoperability is overrated, the more you think of it the more complex it gets. As you start throwing in new factors into the equation (how will this interoperate with a java/c# application) you start to develop monsters like JSR 170 which solve a lot of problems on paper, but in reality are too unwieldy to be truly useful.
</p>
</blockquote>
<p>
He <a href="http://www.wormus.com/aaron/stories/2007/02/13/interoperability-is-overrated.html">even lists out</a> some of his "steps to interoperability" to help speed things along (like "use as much abstract code as possible" and "use services").
</p>]]></description>
      <pubDate>Wed, 14 Feb 2007 07:19:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Zend Developer Zone: Ben Ramsey on XML, SOAP, and Web Services]]></title>
      <guid>http://www.phpdeveloper.org/news/6429</guid>
      <link>http://www.phpdeveloper.org/news/6429</link>
      <description><![CDATA[<p>
On the Zend Developer Zone, <i>Cal Evans</i> <a href="http://devzone.zend.com/node/view/id/1005">talks about</a> one of the presenters of the upcoming <a href="http://www.zendcon.com">Zend/PHP Conference and Expo</a> - <i>Ben Ramsey</i>. He asked <i>Ben</i> some questions about the conference and a talk that he'll be giving - "XML & Web Services with PHP (An Overview)".
</p>
<blockquote>
Ben Ramsey will be speaking on "XML & Web Services with PHP (An Overview)" at the upcoming <a href="http://zendcon06.kbconferences.com/index.php">Zend/PHPConference and Expo</a>. Since I hang out with Ben in the freenode.net #phpc channel I thought it would be cool to talk to him for a bit about his session.
</blockquote>
<p>
They <a href="http://devzone.zend.com/node/view/id/1005">talk about</a> why <i>Ben</i> is passionate about web services, the two popular protocols for using these services - SOAP and REST, and which one of them <i>Ben</i> prefers.
</p>]]></description>
      <pubDate>Thu, 05 Oct 2006 09:43:00 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Davey Shafik's Blog: More Web Services]]></title>
      <guid>http://www.phpdeveloper.org/news/6396</guid>
      <link>http://www.phpdeveloper.org/news/6396</link>
      <description><![CDATA[<p>
<i>Davey Shafik</i> has posted <a href="http://pixelated-dreams.com/archives/251-More-Web-Services.html">another update</a> on his web services component he's working up for the Zend Framework, the <a href="http://framework.zend.com/wiki/display/ZFPROP/Zend_Service_Server+Proposal+-+Davey+Shafik">Zend_Service_Server</a>.
</p>
<blockquote>
<p>
I have been working closely with Matthew Weier O'Phinney for the last week on bringing my Zend_Service_Server proposal to fruition.
</p>
<p>
There have been several changes, but the core has not moved too far. Matthew, Andi and I have decided that we will first implement the different server/client libraries.
</p>
</blockquote>
<p>
He <a href="http://pixelated-dreams.com/archives/251-More-Web-Services.html">lists the libraries</a> they'll need to tackle first and talks about an "exercise" he did to work up a JSON server component that works in a similar fashion.
</p>]]></description>
      <pubDate>Mon, 02 Oct 2006 08:55:00 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[PHPied.com: The PEAR book is on it's way]]></title>
      <guid>http://www.phpdeveloper.org/news/6256</guid>
      <link>http://www.phpdeveloper.org/news/6256</link>
      <description><![CDATA[<p>
To prepare the way for the upcoming PEAR book from Packt Publishing correctly, <i>Stoyan Stefanov</i> has <a href="http://www.phpied.com/the-pear-book-is-on-its-way/">posted this info</a> about the book and where to find the latest details on it.
</p>
<blockquote>
<p>
Here's the link to publisher's page dedicated to the <a href="http://www.packtpub.com/pear/book">PHP Programming with PEAR</a>. Guess who wrote the chapter for MDB2? ;)
</p>
<p>
It's an honour to me to be in the company of the other authors, people who have done a lot for the PEAR community
</p>
</blockquote>
<p>
He <a href="http://www.phpied.com/the-pear-book-is-on-its-way/">also mentions</a> some of the topics that the book will contain, including accessing databases with MDB2, creating and parsing XML documents, and accessing web APIs. The book is coming out in September, so keep on the lookout for it at your local bookseller soon.
</p>]]></description>
      <pubDate>Tue, 12 Sep 2006 16:25:06 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Zend Developer Zone: Live Blogging From php/db|works 2006]]></title>
      <guid>http://www.phpdeveloper.org/news/6253</guid>
      <link>http://www.phpdeveloper.org/news/6253</link>
      <description><![CDATA[<p>
This week, <i>Cal Evans</i> is <a href="http://devzone.zend.com/node/view/id/908">reporting live</a> from this year's <a href="http://www.phparch.com/works">php/db|works conference</a> in Toronto. Since today is "Tutorial Day", the schedule is a little lighter, and he makes to time to catch <a href="http://devzone.zend.com/node/view/id/909">Rob Richards' talk</a> on PHP and Advanced XML and Web Services.
</p>
<blockquote>
<p>
<a href="http://www.cdatazone.org/index.php">Rob Richards</a> is the author of <a href="http://www.apress.com/book/bookDisplay.html?bID=10092">Pro PHP XML and Web Services</a>. He literally wrote the book on using PHP and XML together. At php|works, he is leading a tutorial on using XML in web services using the DOM extension. 
</p>
<p>
If you ever get a chance to hear Rob do a presentation, let me warn you, it is not for the faint of heart. As I learned last night when I sat down with Rob to record an interview, Rob likes to speak on leading edge and advanced topics. This tutorial is an excellent example of that philosophy.
</p>
</blockquote>
<p>
<i>Cal</i> <a href="http://devzone.zend.com/node/view/id/909">talks more</a> about the content of the talk - its simplicity despite the complex topic, how much info is jammed in, and the fact that it's not just one giant pitch for <i>Rob</i>'s book.
</p>]]></description>
      <pubDate>Tue, 12 Sep 2006 15:49:47 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Scott Mattocks' Blog: Zend Con '06]]></title>
      <guid>http://www.phpdeveloper.org/news/6172</guid>
      <link>http://www.phpdeveloper.org/news/6172</link>
      <description><![CDATA[<p>
<i>Scott Mattocks</i>, like so many others, has just reciently recieved notification that he's been accepted as a speaker for the <a href="http://www.zendcon.com/">Zend/PHP Conference & Expo</a> this fall. He <a href="http://crisscott.com/2006/08/29/zend-con-06/">talks more</a> about his speech in his latest post.
</p>
<blockquote>
My session, "Consusming Web Services with PHP-GTK 2&#8243; will be a look at how to turn a web services API into a desktop application. I only have fifty minutes so it won't be very heavy on implementation details. Instead it will look more at representing different data structures, collecting different types of data and how creating a desktop application can make life easier for the company and the end user.
</blockquote>
<p>
<i>Scott</i> joins <a href="http://zendcon.com/speakers_temp.php">other speakers</a> for this great event, including speakers like <i>Ilia Alshanetsky</i>, <i>Wez Furlong</i>, and <i>Zeev Suraski</i>. Be sure to check back on the Zend site soon to see when <i>Scott</i> and others' talks will be held.
</p>]]></description>
      <pubDate>Wed, 30 Aug 2006 07:23:14 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Felix Geisendorfer's Blog: The Future of ThinkingPHP.org]]></title>
      <guid>http://www.phpdeveloper.org/news/6093</guid>
      <link>http://www.phpdeveloper.org/news/6093</link>
      <description><![CDATA[<p>
As all good sites must do, the ThinkingPHP blog is moving onward and upward in its focus, and <a href="http://www.thinkingphp.org/2006/08/20/the-future-of-thinkingphporg/">according to this new post</a>, that only means good things for PHPers.
</p>
<blockquote>
You might have noticed that I changed the title of this blog to "ThinkingPHP and beyond" a couple days ago. I did that because currently I'm thinking a lot about where go with it. I definetly want to stay focused on PHP in general, but I feel like I (and a lot of other php developers) actually work with a lot more technologies then "just" php. So I'd like to talk about that as well.
</blockquote>
<p>
Some of the other topics <i>Felix</i> is <a href="http://www.thinkingphp.org/2006/08/20/the-future-of-thinkingphporg/">considering talking</a> about include PHP coding practices, web standards/usability/accessibility, web services, and agile development topics. Keep an eye out here for more to come from this great blog - we'll always post the latest.
</p>]]></description>
      <pubDate>Mon, 21 Aug 2006 08:04:00 -0500</pubDate>
    </item>
  </channel>
</rss>

