0
我有一個字符串,我從抓取相關網站獲得:https://www.exploit-db.comHTML字符串縮進代碼
在一個特定的漏洞,我得到的代碼:
$code = $crawler2->filterXPath('//div[@id="container"]/pre->each(function ($nodes) {
return $nodes->text();
});
然後我打印:
print $code[0];
我沒有格式。
如何打印縮進,以一種很好的方式?
預先感謝您;)
這就是我所做的: $ code [3] - > formatOutput = 1; print $ code [3]; 我得到相同的輸出。 – aDoN