-1

我有一个要显示在特定<div>标签中的 html 代码。这是 html 代码:

<form id="web_formsGenerateFormForm" method="post" accept-charset="utf-8"> <input type="hidden" name="_method" value="POST"/><h2> DETAILS</h2><div class="input text"></div></form>

我需要将其显示为对齐/格式化的代码。有什么方法可以使用 PHP/Cake PHP 吗?这整个 html 是由 php 生成的,并且是动态的。所以我不能添加&nbsp;任何我喜欢的地方。请给我建议。

4

2 回答 2

1

用于\t制表符和\n换行

例子:

<?php
$data = '<form id="web_formsGenerateFormForm" method="post" accept-charset="utf-8">\n
           \t<input type="hidden" name="_method" value="POST"/>\n
           \t\t<h2> DETAILS</h2>\n
           <div class="input text"></div>\n
         </form>';
于 2013-10-23T07:34:58.577 回答
0

在输出任何内容之前,请在页面开头使用以下内容:

ob_start('ob_tidyhandler');

看看:http ://www.php.net/manual/en/tidy.setup.php

于 2013-10-23T07:35:18.933 回答