Phar::isValidPharFilename

(PECL phar:1.2.0-1.2.1)

Phar::isValidPharFilename — Returns whether the given filename is a valid phar filename

Описание

bool Phar::isValidPharFilename ( string $filename )

Returns whether the given filename is a valid phar filename that will be recognized as a phar archive by the phar extension. This can be used to test a name without having to instantiate a phar archive and catch the inevitable Exception that will be thrown if an invalid name is specified.

Список параметров

filename

Возвращаемые значения

Returns TRUE if the filename is valid.

[an error occurred while processing the directive]

Коментарии

Note, that this method accepts _everything_ (=> returns 'true'), when $executable is 'false' as long as the filename contains at least a dot

var_dump(\PharData::isValidPharFilename('randomstring.y', false));
bool(true)

This is not wrong at all, because I can name an archive like I want, but it makes the method completely useless (when $executable == false).
2011-10-09 15:54:32
http://php5.kiev.ua/manual/ru/phar.isvalidpharfilename.html

    Поддержать сайт на родительском проекте КГБ