FFI::memcpy

(PHP 7 >= 7.4.0)

FFI::memcpyCopies one memory area to another

Opis

public static FFI::memcpy ( FFI\CData &$dst , mixed &$src , int $size ) : void

Copies size bytes from the memory area src to the memory area dst. Both src and dst can be any native data structures (FFI\CData) or PHP strings.

Parametry

dst

The start of the memory area to copy to.

src

The start of the memory area to copy from.

size

The number of bytes to copy.

Zwracane wartości

Nie jest zwracana żadna wartość.

add a note add a note

User Contributed Notes

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