Benim HTML içinde, bir dosyayı içeren bir php komut dosyası var. Bu noktada, kod 2 sekme girintili. Ne yapmak istiyorum php script her satıra iki sekme ekleyin olun. İşte bir örnek:
Ana sayfa:
<body>
<div>
<?php include("test.inc"); ?>
</div>
</body>
Ve "test.inc":
<p>This is a test</p>
<div>
<p>This is a nested test</p>
<div>
<p>This is an more nested test</p>
</div>
</div>
Ne olsun:
<body>
<div>
<p>This is a test</p>
<div>
<p>This is a nested test</p>
<div>
<p>This is an more nested test</p>
</div>
</div>
</div>
</body>
Ne istiyorum:
<body>
<div>
<p>This is a test</p>
<div>
<p>This is a nested test</p>
<div>
<p>This is an more nested test</p>
</div>
</div>
</div>
</body>
Ben sadece içerme dosyası giden sekmeler ekleyebilir biliyoruz. Ben belgeyi biçimlendirmek Ancak, VS olanlar kaldırma tutar.