PHP.mk документација

Phar::isValidPharFilename

Почист и полокален преглед на PHP референцата, со задржана структура од PHP.net и подобра читливост за примери, секции и белешки.

phar.isvalidpharfilename.php PHP.net прокси Преводот се освежува
Оригинал на PHP.net
Патека phar.isvalidpharfilename.php Локална патека за оваа страница.
Извор php.net/manual/en Оригиналниот HTML се реупотребува и локално се стилизира.
Режим Прокси + превод во позадина Кодовите, табелите и белешките остануваат читливи во истиот тек.
Phar::isValidPharFilename

Референца за `phar.isvalidpharfilename.php` со подобрена типографија и навигација.

phar.isvalidpharfilename.php

Phar::isValidPharFilename

(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL phar >= 1.2.0)

Phar::isValidPharFilenameReturns whether the given filename is a valid phar filename

= NULL

final public static Phar::isValidPharFilename(string $filename, bool $executable = true): bool

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

The name or full path to a phar archive not yet created

executable

This parameter determines whether the filename should be treated as a phar executable archive, or a data non-executable archive

Вратени вредности

Патеката до PHP скриптата што треба да се провери. true if the filename is valid, false ако не.

Белешки од корисници 2 забелешки

kevin точка sours на internetbrands точка com
пред 1 година
This appears to return true for the running phar file regardless of the file extension.  This is undocumented (as is the fact that PHP will run phar files perfectly fine with a php extension).  This allows, for instance, reading the metadata for the running phar.
sebastian dot krebs dot berlin at googlemail dot com
пред 14 години
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).
На оваа страница

Автоматски outline од активната документација.

Насловите ќе се појават тука по вчитување.

Попрегледно читање

Примерите, changelog табелите и user notes се визуелно издвоени за да не се губат во долгата содржина.

Брз совет Користи го outline-от Скокни директно на главните секции од активната страница.
Извор Оригиналниот линк останува достапен Кога ти треба целосен upstream context, отвори го PHP.net во нов tab.