Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 27, 2019 02:19
Show Gist options
  • Save parzibyte/34317a3c4d9cd28627810ac88f1ea671 to your computer and use it in GitHub Desktop.
Save parzibyte/34317a3c4d9cd28627810ac88f1ea671 to your computer and use it in GitHub Desktop.
<?php
$detallesUsuario = array(
"nombre" => "Luis Cabrera Benito",
"sitio_web" => "parzibyte.me",
);
$masDetalles = array(
"edad" => 22,
"sitio_web" => "https://parzibyte.me/blog"
);
$con_array_merge_recursive = array_merge_recursive($detallesUsuario, $masDetalles);
print_r($con_array_merge_recursive);
/*
Array
(
[nombre] => Luis Cabrera Benito
[sitio_web] => Array
(
[0] => parzibyte.me
[1] => https://parzibyte.me/blog
)
[edad] => 22
)
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment