PHP 8.1.28 Released!

streamWrapper::rename

(PHP 5, PHP 7, PHP 8)

streamWrapper::renameRenames a file or directory

Descrizione

public streamWrapper::rename(string $path_from, string $path_to): bool

This method is called in response to rename().

Should attempt to rename path_from to path_to

Nota:

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

Elenco dei parametri

path_from

The URL to the current file.

path_to

The URL which the path_from should be renamed to.

Valori restituiti

Restituisce true in caso di successo, false in caso di fallimento.

Errori/Eccezioni

Emits E_WARNING if call to this method fails (i.e. not implemented).

Note

Nota:

The streamWrapper::$context property is updated if a valid context is passed to the caller function.

Vedere anche:

  • rename() - Rinomina un file o una directory

add a note

User Contributed Notes

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