Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有一种简单的方法(插件/函数)使用 Tidy 或其他一些库来漂亮地打印 Wordpress 的 HTML 输出?
它是不可读的,几乎不可能编写一个具有适当缩进的主题,所有包含/钩子都在各处进行。
性能不是问题,因为它只需要为开发目的而激活。
我建议:
\n
\t
试试Kint PHP 调试器。
非常适合使用漂亮的 UI 进行 var_dumps。
例子:
$items = array('pine', 'apple', array('numbers' => [1,2,3,4])); d($items);