Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 27, 2019 02:17
Show Gist options
  • Save parzibyte/74624931a0e6e7c523d93f8eb9847659 to your computer and use it in GitHub Desktop.
Save parzibyte/74624931a0e6e7c523d93f8eb9847659 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 = array_merge($detallesUsuario, $masDetalles);
print_r($con_array_merge);
/*
Array
(
[nombre] => Luis Cabrera Benito
[sitio_web] => https://parzibyte.me/blog
[edad] => 22
)
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment