Php kodu çözülmüş json dizi satır aralığı nasıl eklenir

0 Cevap php


I need to add some sort of line break after each segment (date, name, address, phone) to separate them, I have tried using the break and paragraph etc but just keep on getting syntax errors with the usual unexpected "<" and have also tried using tables but that failed too.

Ayrı bir satıra lütfen her bölümünü görüntülemek için bu çıktıyı biçimlendirmek için kolay bir yolu var mı?

<?php
    $file = file_get_contents('http://somesite.com/Data/jsontxt');
        $out = (json_decode($file));
            echo $out->date;
            echo $out->name;
            echo $out->address;
            echo $out->phone;
?>

Bu dizinin bir örnek:

{
"name":"Joe Bloggs",
"date":"11:58pm 28 August 2010",
"address":"13 Boggy Ave, Hamilton",
"phone":"555-5478"
}

ve ben şu anda ne alıyorum:

Joe Bloggs11: 58pm 28 Ağustos 201013 Boggy Ave, Hamilton555-5478

0 Cevap