Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Developer.com:
PHP 5 OOP - Protecting Data With Visibility
May 10, 2006 @ 20:02:18

In Developer.com's latest article, they continue their series (part 1) of working with PHP5's object system to create an abstraction layer, specifically a database layer.

In the prior article, PHP 5 OOP: Interfaces Abstract Classes and the Adapter Pattern, I presented an interface for abstracting database access from the actual database. The article also presented code for accessing a database.

In this article you will learn to expand upon the functionality you built from the first article in order to show how to protect your data using visibility modifiers.

They start with a look at some of the "accessibility modifiers" that PHP5 has to offer - like private or public - in it's object model. They define them in the context of their database class as well, demonstrating how both variables and classes can be marked this way. After this, it's all about the code, looking first at preparing the SQL query, then validate the SQL before sending it off to the last step - executing the query and fetching the results (if needed).

tagged: php5 oop protecting data visibility part2 php5 oop protecting data visibility part2

Link:


Trending Topics: