|
|
||
|
Source : http://www.phpfreaks.com
Activity:
0 comments
2618 views
last activity : 07 06 2010 20:18:04 +0000
|
||
|
|
Welcome to part one of the "PHP OOP Concepts" series.
This article is an overview of what PHP has to offer with respect to OOP, with examples on how to use these concepts.
If you have wanted to grasp OOP, but haven't come around to learning it, this article is for you. If you've read some "Hello World" in OOP tutorial, gotten familiar with OOP syntax but are interested in learning more, this article is for you too.
Index
1. The Very Basics
1.1 A tiny bit of theory
1.2 Hold on, read this disclaimer first
1.3 Absolute basic syntax
2 Defining how objects should behave
2.1 Classes
2.2 Inheritance
2.3 Constructors
2.4 Scope Resolution Operator
2.5 Abstract Classes
3 Beyond the Absolute Basics
3.1 Object Handles
3.2 Interfaces
3.3 Autoload
3.4 Destructors
3.5 Visibility
3.6 Class Constants
3.7 Type Hinting
3.8 Exceptions
3.9 The Final Keyword
3.10 More Magic Methods
3.10.1 Object Overloading
3.10.2 Object cloning
3.10.3 Serialization
3.10.4 Other
3.11 Object Iteration
4. Hot off The Press Features
4.1 Namespaces
4.2 Late static binding
In conclusion
More Information can be found from the below link:
http://www.phpfreaks.com/tutorial/oo-php-part-1-oop-in-full-effect

- Create a confidential Career Profile and Resume/C.V. online
- Get advice for planning their career and for marketing of experience and skills
- Maximize awareness of and access to the best career opportunities
|
|
|
|
|
|
|
|
|
|
|
|
And also 1.If the band width is low then Ajax performance will degrade Ex: check gmail when net is slow. 2.Javascript is browser dependent, so one should be careful while coding as it will not be same code for IE,firefox.. |
When on, register_globals will inject your scripts with all sorts of variables, like request variables from HTML forms. This coupled with the fact that PHP doesn't require variable initialization means writing insecure code is that much easier. It was... |
GET method limits on the amount of information to send((max. 100 characters), refer this link to get information about GET method http://www.w3schools.com/PHP/php_get.asp. so in that case its better to use POST method, which does not have limitation... |