Creates a PHP string from a memory area
&$ptr
$size
null
Creates a PHP string from size bytes of the memory area pointed to by ptr.
size
ptr
The start of the memory area from which to create a string.
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.
char
The freshly created PHP string.
0