Skip to content

Instantly share code, notes, and snippets.

@victorvaz
Created January 5, 2016 00:15
Show Gist options
  • Save victorvaz/0c60e4623bd4bdddd317 to your computer and use it in GitHub Desktop.
Save victorvaz/0c60e4623bd4bdddd317 to your computer and use it in GitHub Desktop.
<?php
# Abrimos o arquivo JSON:
$arquivo = file_get_contents('dados.json');
# Convertemos o json em um objeto:
$json = json_decode($arquivo);
?>
<p>Nome: <?= $json->nome ?></p>
<p>Lindão: <?= $json->lindao ?></p>
<p>Tarefa: <?= $json->tarefa ?></p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment