Programming
|
*
Abstract classes
Php
Php
Abstract classes
catalin <?php /* * A Very simple example to understand why we should use ABSRACT CLASSES. ... |
|
*
Front Controller pattern
Php
Php
Front Controller pattern
catalin The Front Controller Pattern is a software design pattern listed in several pattern catalogs. The pattern relates to the design of web applications. It "provides a centralized entry point for handling requests." [1] The front ... |
|
*
Php Static property or method
Php
Php
Php Static property or method
catalin Declaring class properties or methods as static makes them accessible without needing an instantiation of the class. A property declared as static can not be accessed with an instantiated class object (though a static ... |
|
*
Php method visibility
Php
Php
Php method visibility
catalin The visibility of a property or method can be defined by prefixing the declaration with the keywords: public, protected or private. Public Public declared items can be accessed everywhere . <?php ... |
|
*
Php Exceptions
Php
Php
Php Exceptions
catalin PHP 5 has an exception model similar to that of other programming languages. ... |
|
*
Set_exception_handler
Php
Php
Set_exception_handler
catalin Sets a user-defined exception handler function <?php # 1 throw new Exception ( 'abc' ); ... |
|
*
Rapid developement
Overview
Overview
Rapid developement
catalin You don't have to worry having to set lots of configuration settings for each component just so that you can get started using it. For example, the most simplistic use of the whole MVC is boostrapped with just: ... |
|
*
Components
Overview
|
|
*
Zend_Filter
Overview
Overview
Zend_Filter
catalin The Zend_Filter class provides a set of filters that typically remove or transform unwanted data from the input as it passes through the filter. For example, an numeric filter would remove any characters that were not numbers from the input ... |
|
*
Zend_Validate
Overview
Overview
Zend_Validate
catalin Zend_Validate provides a very similar function to Zend_Filter, except that it provides a yes/no answer to the question "is this data what I expect?". Validation is generally used to ensure that the data is correctly formed, such as ... |
|
*
Zend_Debug
Overview
Overview
Zend_Debug
catalin Zend_Debug::dump() is used to output debugging information about a variable by providing a formatted var_dump() output. |