FFI::string
(PHP 7 >= 7.4.0, PHP 8)
FFI::string — Creates a PHP string from a memory area
說明
   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 sizeis omitted,ptrmust be a zero terminated array of Cchars.
返回值
The freshly created PHP string.
更新日誌
| 版本 | 說明 | 
|---|---|
| 8.0.0 | sizeis nullable now; previously, its default was0. |