Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 6, 2019 21:41
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/c72f4bbe043985579f4494388aa138d8 to your computer and use it in GitHub Desktop.
Save parzibyte/c72f4bbe043985579f4494388aa138d8 to your computer and use it in GitHub Desktop.
<?php
// Definimos variables del perfil, obviamente
// estas deberían de venir de una base de datos o de la sesión
$nombre = "Luis Cabrera";
$apodo = "Parzibyte";
$sitioWeb = "https://parzibyte.me/blog";
// Preparar el objeto que vamos a mostrar
$datos = [
"nombre" => $nombre,
"apodo" => $apodo,
"sitioWeb" => $sitioWeb,
];
// Mostrar codificadas como JSON
echo json_encode($datos);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment