WordPress\AiClientDependencies\Psr\Http\Message

UploadedFileInterface::getClientMediaTypepublicWP 1.0

Retrieve the media type sent by the client.

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

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

Method of the class: UploadedFileInterface{}

No Hooks.

Returns

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

was provided.

Usage

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

UploadedFileInterface::getClientMediaType() code WP 7.0

public function getClientMediaType(): ?string;