Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created January 24, 2021 00:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/3a51a77b055631390e716e46596ab4f8 to your computer and use it in GitHub Desktop.
Save parzibyte/3a51a77b055631390e716e46596ab4f8 to your computer and use it in GitHub Desktop.
<?php
// https://parzibyte.me/blog
$arreglo = [
"nombre" => "Luis",
"edad" => 23,
];
$objeto = (object) $arreglo;
echo "Hola, " . $objeto->nombre;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment