czproject/file-matcher

v1.1.0 2018-12-26 13:05 UTC

This package is auto-updated.

Last update: 2024-03-27 00:37:00 UTC


README

Build Status

Installation

Download a latest package or use Composer:

composer require czproject/file-matcher

CzProject\FileMatcher requires PHP 5.4.0 or later.

Usage

<?php

use CzProject\FileMatcher\FileMatcher;

FileMatcher::matchMask($path, $masks[, $isPathDirectory]);

$masks = array(
	'temp/*',
	'.git*',
	'!.gitignore',
);

FileMatcher::matchMask('.git', $masks, TRUE); // returns TRUE
FileMatcher::matchMask('.gitignore', $masks); // return FALSE
FileMatcher::matchMask('temp/cache', $masks, TRUE); // returns TRUE
FileMatcher::matchMask('log/2016', $masks, TRUE); // returns FALSE

License: New BSD License
Author: Jan Pecha, https://www.janpecha.cz/