PhpRiot Latest Zend Framework Articles http://www.phpriot.com/images/logo.gif 2010-07-01T00:00:00+00:00 Zend_Feed_Writer http://www.phpriot.com/tag/Zend+Framework <![CDATA[Zend Framework 101: Zend_Oauth]]> 2010-07-01T00:00:00+00:00 2010-07-01T00:00:00+00:00 http://www.phpriot.com/articles/twitter-authentication-zend-oauth Quentin Zervaas http://www.phpriot.com/author/Quentin+Zervaas OAuth is a standard that allows to share protected data with other sites. In this article I will show you how to use the Zend_Oauth component of the Zend Framework. To demonstrate how to use Zend_Oauth we will create a script that posts a status update to Twitter for the authenticated user. <![CDATA[Zend Framework 101: Zend_Gdata_YouTube]]> 2010-06-10T00:00:00+00:00 2010-06-10T00:00:00+00:00 http://www.phpriot.com/articles/embedding-videos-with-zend-gdata-youtube Quentin Zervaas http://www.phpriot.com/author/Quentin+Zervaas The Zend Framework contains a number of APIs for accessing Google services, including YouTube. In this article I will show you how to retrieve a feed of videos from YouTube using Zend_Gdata. <![CDATA[Zend Framework 101: Zend_Cache]]> 2010-05-13T00:00:00+00:00 2010-05-13T00:00:00+00:00 http://www.phpriot.com/articles/speed-up-your-php-with-zend-cache Quentin Zervaas http://www.phpriot.com/author/Quentin+Zervaas In this article I will introduce you to the Zend_Cache component of the Zend Framework. This component is used for improving the performance of your web application by saving generated data for later reuse. <![CDATA[Fetching Data With Zend_Db]]> 2010-04-07T00:00:00+00:00 2010-04-07T00:00:00+00:00 http://www.phpriot.com/articles/fetch-data-with-zend-db Quentin Zervaas http://www.phpriot.com/author/Quentin+Zervaas In this PhpRiot Snippet I will show you a couple of different ways to fetch data when using the Zend Framework's Zend_Db component. <![CDATA[Zend Framework 101: Zend_Service_Amazon_S3]]> 2010-03-06T00:00:00+00:00 2010-03-06T00:00:00+00:00 http://www.phpriot.com/articles/zend-service-amazon-s3 Quentin Zervaas http://www.phpriot.com/author/Quentin+Zervaas In this article I will introduce you to the Zend_Service_Amazon_S3 component of the Zend Framework. This component makes use of Amazon Web Services (AWS) to manage files on Amazon's Simple Storage Service (S3). <![CDATA[Zend Framework 101: Zend_Session]]> 2010-01-06T00:00:00+00:00 2010-01-06T00:00:00+00:00 http://www.phpriot.com/articles/zend-session Quentin Zervaas http://www.phpriot.com/author/Quentin+Zervaas In this article I will introduce you to the Zend_Session component of the Zend Framework. This component is built upon PHP's native session-handling functionality, making it easier to manage session data, as well as providing more advanced features. <![CDATA[Zend Framework 101: Zend_Soap]]> 2009-08-08T00:00:00+00:00 2009-08-08T00:00:00+00:00 http://www.phpriot.com/articles/zend-soap Quentin Zervaas http://www.phpriot.com/author/Quentin+Zervaas In this article I will introduce you to the Zend_Soap component of the Zend Framework. This component allows you to easily create and consume SOAP web services. We will create a simple web service with several methods using Zend_Soap_Server, and consume the service with Zend_Soap_Client. <![CDATA[Zend Framework 101: Zend_Log]]> 2009-04-12T00:00:00+00:00 2009-04-12T00:00:00+00:00 http://www.phpriot.com/articles/zend-log Quentin Zervaas http://www.phpriot.com/author/Quentin+Zervaas This article shows you how to use Zend_Log, the logging component of the Zend Framework. It allows you to record messages from your application however you please. In this article I will show you how to record messages to a log file. Additionally, if you use the Firebug and FirePHP plug-ins for Firefox, Zend_Log can be extremely useful for application development and debugging. I will also show you how to achieve this. <![CDATA[Zend Framework 101: Zend_Registry]]> 2009-03-15T00:00:00+00:00 2009-03-15T00:00:00+00:00 http://www.phpriot.com/articles/zend-registry Quentin Zervaas http://www.phpriot.com/author/Quentin+Zervaas In this article in the Zend Framework 101 series I will introduce you to the Zend_Registry class. This class used is to allow you manage variables and objects in the global application namespace. This is used as an alternative to using global variables in PHP. I will show you how to use the Zend_Registry class and also provide a practical example of where it would be useful to use the registry. <![CDATA[Zend Framework 101: Zend_Loader]]> 2009-03-11T00:00:00+00:00 2009-03-11T00:00:00+00:00 http://www.phpriot.com/articles/zend-loader Quentin Zervaas http://www.phpriot.com/author/Quentin+Zervaas In this article I will introduce you to Zend_Loader, a Zend Framework class used to automatically load other classes. Typically you would use include_once or require_once when you want to load a class but using Zend_Loader you don't have to.