12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- class RegexFindFile extends FindFile
- {
-
- function __construct($path, $regex)
- {
- parent::__construct($path, $regex);
- }
-
- function accept()
- {
- return preg_match($this->getSearch(), $this->current());
- }
- }
- ?>
|