Php/docs/ffi.string

提供:Dev Guides
< Php
2020年12月14日 (月) 13:01時点におけるNotes (トーク | 投稿記録)による版 (autoload)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先:案内検索

FFI::string

(PHP 7 >= 7.4.0)

FFI::stringCreates a PHP string from a memory area


説明

public static FFI::string ( FFI\CData &$ptr [, int $size ] ) : string

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


パラメータ

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, ptr must be a zero terminated array of C chars.


返り値

The freshly created PHP string.