PhiO: Object-oriented filesystem library for PHP
  • Namespace
  • Class
  • Tree
  • Todo

Namespaces

  • amekusa
    • phio
  • PHP

Classes

  • amekusa\phio\Directory
  • amekusa\phio\File
  • amekusa\phio\FilePool
  • amekusa\phio\Filter
  • amekusa\phio\Perms
  • amekusa\phio\RegexFilter
  • amekusa\phio\RegFile

Exceptions

  • amekusa\phio\ErrorException
  • amekusa\phio\IOException
 1  2  3  4  5  6  7  8  9 10 11 12 
<?php namespace amekusa\phio; main::required;

/**
 * @author amekusa <post@amekusa.com>
 */
class RegexFilter extends Filter {

    public function matches($File) {
        return preg_match($this->pattern, (string) $File);
    }
}
PhiO: Object-oriented filesystem library for PHP API documentation generated by ApiGen