streamWrapper::mkdir

(PHP 5, PHP 7)

streamWrapper::mkdirCreate a directory

Descrierea

public streamWrapper::mkdir ( string $path , int $mode , int $options ) : bool

This method is called in response to mkdir().

Notă:

In order for the appropriate error message to be returned this method should not be defined if the wrapper does not support creating directories.

Parametri

path

Directory which should be created.

mode

The value passed to mkdir().

options

A bitwise mask of values, such as STREAM_MKDIR_RECURSIVE.

Valorile întoarse

Întoarce valoarea true în cazul succesului sau false în cazul eșecului.

Erori/Excepții

Emite o eroare E_WARNING dacă apelul acestei metode eșuează (de ex. nu este implementată).

Note

Notă:

Proprietatea streamWrapper::$context este reînnoită dacă un context valid este transmis funcției apelante.

A se vedea și

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top