Created
January 5, 2016 00:15
-
-
Save victorvaz/0c60e4623bd4bdddd317 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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