Zend_Acl
Provides lightweight and flexible access control list (ACL) functionality and privileges management.Role: It is an object that may request to access the Resource.
Resource: Object which access is controller.
e.g. Driver request to access the car. Here driver is Role & Car is resource.
Zend_Auth
Zend_Auth provides an API for authentication and includes concrete authentication adapters for common use case scenarios, as well as "Identity 2.0" adapters such as OpenID and Microsoft InfoCard.Zend_Cache
Zend_Cache provides a flexible approach toward caching data, including support for tagging, manipulating, iterating, and removing subsets.Zend_Config
Zend_Config simplifies the use of configuration data for web applications.Zend_Console_Getopt
Command-line PHP applications benefit from this convenient object-oriented interface for declaring, parsing, and reporting command-line arguments and options.Zend_Controller and Zend_View
Controller is for logical part and view is for Html Part.Zend_Date
Zend_Date offers a detailed but simple API for manipulating dates and times.Zend_Db
This is a lightweight database access layer, providing an interface to PDO and other database extensions in PHP. It includes adapters for each database driver, a query profiler, and an API to construct most SELECT statements.Zend_Db_Table
The Zend_Db_Table component is a lightweight solution for object-oriented programming with databases.Zend_Feed
This component provides a very simple way to work with live syndicated feeds.Zend_Filter and Zend_Validate
These components encourage the development of secure websites by providing the basic tools necessary for input filtering and validation.Zend_Filter_Input
This is a configurable solution for declaring and enforcing filtering and validation rules. This component serves as a "cage" for input data, so they are available to your application only after being validated.Zend_Form
This component provides an object-oriented interface for building forms, complete with input filtering and rendering capabilities.Zend_Gdata (Zend Google Data Client)
The Google Data APIs provide read/write access to such services hosted at google.com as Spreadsheets, Calendar, Blogger, and CodeSearch.Zend_Http_Client
This component provides a client for the HTTP protocol, without requiring any PHP extensions. It drives our web services components.Zend_Json
Easily convert PHP structures into JSON and vice-versa for use in AJAX-enabled applications.Zend_Layout
Easily provide sitewide layouts for your MVC applications.Zend_Loader
Load files, classes, and resources dynamically in your PHP application.Zend_Locale
Zend_Locale is the Framework's answer to the question, "How can the same application be used around the whole world?" This component is the foundation of Zend_Date, Zend_Translate, and others.Zend_Log
Log data to the console, flat files, or a database. Its no-frills, simple, procedural API reduces the hassle of logging to one line of code and is perfect for cron jobs and error logs.Zend_Mail and Zend_Mime
Almost every Internet application needs to send email. Zend_Mail, assisted by Zend_Mime, creates email messages and sends them.Zend_Measure
Using Zend_Measure, you can convert measurements into different units of the same type. They can be added, subtracted, and compared against each other.- supports localized handling of measurements and numbers
- supports converting of measurements and numbers
Zend_Memory
Zend_Memory offers an API for managing data in a limited memory mode. A PHP developer can create a Zend_Memory object to store and access large amounts of data, which would exceed the memory usage limits imposed by some PHP environments.Zend_Registry
The registry is a container for storing objects and values in the application space. By storing an object or value in the registry, the same object or value is always available throughout your application for the lifetime of the request. This mechanism is often an acceptable alternative to using global variables.Zend_Rest_Client and Zend_Rest_Server
REST Web Services use service-specific XML formats. These ad-hoc standards mean that the manner for accessing a REST web service is different for each service. REST web services typically use URL parameters (GET data) or path information for requesting data and POST data for sending data.Zend_Search_Lucene
The Apache Lucene engine is a powerful, feature-rich Java search engine that is flexible about document storage and supports many complex query types. Zend_Search_Lucene is a port of this engine written entirely in PHP 5.Zend_Service: Akismet, Amazon, Audioscrobbler, Delicious, Flickr, Nirvanix, Simpy, StrikeIron and Yahoo!
Web services are important to the PHP developer creating the next generation of mashups and composite applications. Zend Framework provides wrappers for service APIs from major providers to make it as simple as possible to use those web services from your PHP application.Zend_Session
Zend_Session helps manage and preserve session data across multiple page requests by the same client.Zend_Translate
The Zend_Translate component provides Zend Framework with message translation functionality.Zend_Uri
Zend_Uri is a component that aids in manipulating and validating Uniform Resource Identifiers (URIs). Zend_Uri exists primarily to service other components such as Zend_Http_Client but is also useful as a standalone utility.Zend_XmlRpc
Zend_XmlRpc makes it easy to communicate with and create XML-RPC services from PHP.- mimics PHP's SOAP extension
- flexible request and response implementation allows for use with non-HTTP services
- server implementation allows attaching existing classes to quickly expose APIs as XML-RPC services
############# setup the zend caching #############
ReplyDeleteIN bootstap.php, add following function
public function _initCache() {
$cache = Zend_Cache::factory(
'Core', 'File', array(
'lifetime' => 3600 * 24 * 7, //cache is cleaned once a day
'automatic_serialization' => true
), array('cache_dir' => APPLICATION_PATH . '/cache')
);
Zend_Db_Table_Abstract::setDefaultMetadataCache($cache);
Zend_Registry::set('Cache', $cache);
}
############# setup the zend caching #############
############# use the zend caching #############
$cache = Zend_Registry::get('Cache');
$cacheKey = 'ZendCacheKey';
if (($data = $cache->load($cacheKey)) == false) {
$data ='';
for($i=0;$i<10000000; $i++){
$data+=$i;
}
$cache->save($data, $cacheKey, array('ZendCacheTag'));
}
############# use the zend caching #############
Above will work in ZF>1.5 and ZF<2.0
Delete