Creating Web Page Templates with PHP and Twig (part 1)
Vikram Vaswani |
2 comments |
Wednesday, April 6, 2011
There’s no shortage of PHP template engines and they’re all very similar, often differing only in implementation details and support for specific features. They all serve the same purpose: that of functionally separating a Web application’s user interface from its business logic, and thereby enabling developers and interface designers to work on the same application without getting in each other’s hair.
[…]
Using the Plurk API with PHP
Vikram Vaswani |
1 comment |
Thursday, March 24, 2011
Plurk is a popular micro-blogging site that allows users to quickly and concisely post status updates, news and event streams. It also comes with a JSON-based Web service API that allows developers to programmatically add, search and manipulate Plurk content. This article shows you how to quickly and efficiently connect your PHP application to Plurk using Plurk's PHP library.
[…]
Mirroring the Zend Server Repositories
shahar |
0 comments |
Wednesday, December 1, 2010
Zend Server, Zend Server CE and Zend Server Cluster Manager for Linux are provided through DEB And RPM repositories. This has multiple benefits; one of them is the ability to easily create an internal mirror of the Zend Server repositories, using common tools available on virtually all Linux machines. The question always comes up though, “Why Mirror? I’ll look at that plus how to setup your mirror in this article.
[…]
Using the Digg API with PHP and PEAR
Vikram Vaswani |
1 comment |
Tuesday, November 2, 2010
Digg offers a Web service API that makes possible to develop customized applications on top of the base service. This API, currently in its second incarnation, allows access to a number of important Digg functions, including searching and commenting on Digg stories. This article takes a fast look at how to integrate Digg's Web service with a PHP application using the PEAR Services_Digg2 class.
[…]
Using APC with PHP
Vikram Vaswani |
8 comments |
Friday, October 29, 2010
If you've been around PHP for a while, you've probably heard about APC, the Alternative PHP Cache. Adding APC to an application usually results in improved application response times, reduced server load and happier users. This article will introduce you to APC and guide you through the process of integrating it with your PHP application.
[…]
Manipulating Configuration Data with Zend_Config
Vikram Vaswani |
2 comments |
Tuesday, September 28, 2010
When building a Web application, you'll often find it necessary to save and retrieve user-defined configuration values. Rather than rolling your own code, consider using Zend_Config, which offers a complete API to read and write configuration data in INI, XML and PHP array formats. In this article, I'll give you a crash course in how Zend_Config works, and show you how you can integrate it into a PHP application.
[…]
Improving Code Quality with Flash Builder 4 and PHPUnit
Cal Evans (Editor-in-Chief pro tem) |
0 comments |
Monday, September 13, 2010
Unit testing is becoming a fairly common element of software projects because of its promise of providing better quality to the code base. A unit test is a class or method that exercises your code for purposes of verifying that it functions correctly. During the course of your project, these tests remain as artifacts that can be used over and over again to verify that your code is always working correctly. The higher percentage of your production code you exercise, the higher degree of certainty you can have that your code is doing what it was designed to do.
[…]
Five tips for speeding up Eclipse PDT and Zend Studio
zvikico |
8 comments |
Wednesday, September 8, 2010
Eclipse Helios (3.6) and Zend Studio 7.1 (and above) include a new version of Eclipse PDT, labeled 2.2. This new release uses a new repository for storing code reference information. With these simple tips you can significantly improve the performance of this repository which will speed up code completion, searching for definitions, type hierarchy views and more.
[…]
DataModeler: Simple ORM - Part 1 Models
leftnode |
3 comments |
Tuesday, August 31, 2010
DataModeler is an Open Source ORM I began writing at the beginning of the year. I had experience with ActiveRecord, but was dissuaded from using it too often because it was difficult to unit test (at least I felt so). Wanting to learn Test Driven Development better, I decided to create my own small ORM framework: DataModeler. In this article, I’ll go over creating a Model and the different ways you can modify one.
[…]
Creating PDF Documents with Zend Framework
Vikram Vaswani |
13 comments |
Monday, August 30, 2010
PHP comes with a number of options to help developers dynamically generate PDF files from within their applications. The Haru and PDFlib extensions offer a complete API for dynamic PDF generation, and there also exist a number of open-source PHP components that can be used for the same purpose. This article will introduce you to one such component, the Zend_Pdf component that ships as part of the Zend Framework, and illustrate how it can be used to perform sophisticated PDF operations from within a PHP application.
[…]

