在PHP中,memcpy()
函数用于将一块内存区域的内容复制到另一块内存区域
$source = [1, 2, 3, 4, 5];
$destination = [0, 0, 0, 0, 0];
$length = count($source);
memcpy()
函数:现在你可以使用memcpy()
函数将源数组的内容复制到目标数组中。memcpy($destination, $source, $length * sizeof(int));
这里,我们将源数组和目标数组的长度(以整数为单位)相乘,以获取要复制的字节数。这是因为memcpy()
函数需要一个表示要复制字节数的参数。
print_r($destination);
完整的示例代码如下:
<?php
$source = [1, 2, 3, 4, 5];
$destination = [0, 0, 0, 0, 0];
$length = count($source);
memcpy($destination, $source, $length * sizeof(int));
print_r($destination);
?>
输出结果:
Array
(
[0] => 1
[1] => 2
[2] => 3
[3] => 4
[4] => 5
)
这就是在PHP中使用memcpy()
函数的最佳用法。