FFI::string

(PHP 7 >= 7.4.0, PHP 8)

FFI::stringCreates a PHP string from a memory area

Descrizione

public static FFI::string(FFI\CData &$ptr, ?int $size = null): string

Creates a PHP string from size bytes of the memory area pointed to by ptr.

Elenco dei parametri

ptr

The start of the memory area from which to create a string.

size

The number of bytes to copy to the string. If size is omitted or null, ptr must be a zero terminated array of C char.

Valori restituiti

The freshly created PHP string.

Log delle modifiche

Versione Descrizione
8.0.0 size is nullable now; previously, its default was 0.
add a note add a note

User Contributed Notes

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