Home arrow PHP arrow Page 4 - Using Restrictive Constructors in PHP 5

Traversing a simple text file - PHP

What exactly is a restrictive constructor, and why would you want to use one? If you're a PHP programmer who uses such design patterns as Singleton and Factory, this series of articles on restrictive constructors will give you another tool to use in your applications.

TABLE OF CONTENTS:
  1. Using Restrictive Constructors in PHP 5
  2. Building a generic data iterator class with a restrictive constructor
  3. Building a basic file iterator
  4. Traversing a simple text file
By: Alejandro Gervasio
Rating: starstarstarstarstar / 3
March 04, 2010

print this article
SEARCH DEV SHED

TOOLS YOU CAN USE

advertisement

In the section that you just read, I built a basic iterator class whose main task was to traverse the contents of a specified text file. Having discussed briefly the inner workings of this class, it'd be really useful to set up an example that shows it in action. Below I coded a short script that demonstrates how to work with the mentioned iterator, assuming that the text file that will be traversed has been defined like this:

(data.txt)

 

 

 

line 1

line 2

line 3

line 4

line 5

line 6

line 7

line 8

line 9

line 10

Since the definition of the above "data.txt" file doesn't bear any further discussion, please look at the following code fragment. It shows a simple usage of the earlier "FileIterator" class, provided that the definition of the corresponding parent has been previously included in the script:

// use FileIterator class

try

{

    // create instance of FileIterator

    $fit = new FileIterator();

    // reset iterator pointer

    $fit->rewind();

    // display current file line

    echo $fit->current();

    // move iterator pointer forward

    $fit->next();

    // display current file line

    echo $fit->current();

    // move iterator pointer forward

    $fit->next();

    // display current file line

    echo $fit->current();

    // reset iterator pointer

    $fit->rewind();

    // display current file line

    echo $fit->current();

}

 

 

 

// catch exceptions

catch (Exception $e)

{

    echo $e->getMessage();

    exit();  

}

There you have it. Thanks to the implementation of a simple protected constructor within the base "DataIterator" class, I managed to build a neat hierarchy of classes that let you easily navigate the contents of a target text file. Although it's fair to admit that this particular example can be improved for the reasons given previously, it's handy for demonstrating a simple use of a restrictive constructor in PHP 5. As usual, feel free to introduce your own modifications to all of the code samples shown before, which hopefully will spark your creativity for implementing protected and private constructors when developing your PHP applications.

Final thoughts

In this introductory part of the series, I showed you a trivial example where a protected constructor was used to prevent the direct instantiation of a parent, generic array iterator class. While this approach will produce the expected results, it's admittedly pretty pointless because a stronger level of restriction can be achieved by declaring the class in question abstract.

Since PHP 5 offers great support for working with abstract classes, in the next tutorial I'm going to recreate the example that you saw before, but this time by simply using an abstract iterator class.

Don't miss the upcoming article!



 
 
>>> More PHP Articles          >>> More By Alejandro Gervasio
 

blog comments powered by Disqus
   

PHP ARTICLES

- PHP Closures as View Helpers: Lazy-Loading F...
- Using PHP Closures as View Helpers
- PHP File and Operating System Program Execut...
- PHP: Effects of Wrapping Code in Class Const...
- PHP: Building Concrete Validators
- Sanitizing Input with PHP
- Executing Shell Commands with PHP
- Handling File Data with PHP
- File Security and Resources with PHP
- ArrayObject PHP Class Examples
- ArrayObject PHP Class: An Introduction
- Getting File System Data with PHP
- PHP Tools for Working with the File and Oper...
- Working with the File and Operating System w...
- PHP Proxy Patterns: Completing a Blog


© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 2 - Follow our Sitemap

Dev Shed Tutorial Topics: