格式化json内容输出

这个问题在这里已经有了答案:

  • 漂亮的打印JSON与PHP 20答案

  • 我假设你正在向用户显示“HTML”,并且你希望显示的格式是HTML格式,那么 n不会导致新行...使用“ <br/>"

    然后你的单引号和双引号也不重要。


    尝试将您的新行字符转换为<br> HTML元素,因为无论您用于解析并显示JSON,显然都不会遵守n新行:

    $displaystring = nl2br($displaystring);
    

    $displaystring = "Welcome to Polio Buddy. Please select.n <a href="register.php">1 : Register Family</a>n <a href="check.php">2: Check Vaccination Status</a>n <a href="vaccinate.php">3: Vaccinate Child</a>";
    

    PHP可以用双引号解释字符串,也可以在有单个字符时留下。 我的自定义变量字符串print' n t $ variable“; //将不会输出nt $variable

    顺便说一句:只要有可能,最好使用单引号,因为如果有任何变量需要输出,PHP不会浪费资源来解释。

    链接地址: http://www.djcxy.com/p/47273.html

    上一篇: Formatting json contents output

    下一篇: Represent JSON data from one line string to structured source