FFI::string
PHP function
Edit on GitHub ✎
(PHP 7 >= 7.4.0, PHP 8)
Creates a PHP string from a memory area
Description
FFI::string(FFI\CData $ptr, int|null $size = null): string
Creates a PHP string from size bytes of the memory area pointed to by ptr.
Parameters
ptrThe start of the memory area from which to create a
string.sizeThe number of bytes to copy to the
string. Ifsizeis omitted or null,ptrmust be a zero terminated array of Cchar.
Return Values
The freshly created PHP string.
Changelog
| Version | Description |
|---|---|
| 8.0.0 | size is nullable now; previously, its default was 0. |