WordPress\AiClientDependencies\Psr\Http\Message

UploadedFileInterface::getClientFilenamepublicWP 1.0

Retrieve the filename sent by the client.

Do not trust the value returned by this method. A client could send a malicious filename with the intention to corrupt or hack your application.

Implementations SHOULD return the value stored in the "name" key of the file in the $_FILES array.

Method of the class: UploadedFileInterface{}

No Hooks.

Returns

String|null. The filename sent by the client or null if none

was provided.

Usage

$UploadedFileInterface = new UploadedFileInterface();
$UploadedFileInterface->getClientFilename(): ?string;

UploadedFileInterface::getClientFilename() code WP 7.0

public function getClientFilename(): ?string;