This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* The string tokenizer class allows an application to break a string into tokens. | |
* | |
* @author Azeem Michael | |
* @example The following is one example of the use of the tokenizer. The code: | |
* <code> | |
* <?php | |
* $str = "this is:@\t\n a test!"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This interface imposes a total ordering on the objects of each class that implements | |
* it. This ordering is referred to as the class's natural ordering, and the class's | |
* compareTo method is referred to as its natural comparison method | |
* @author Azeem Michael | |
*/ | |
interface Comparable { | |
/** |