特殊文字またはTABを繰り返したい。
私は str_repeat(str, int) で試します
//my function repeat
function tab($num){
return str_repeat('	', $num);
}
//if I call
echo '<table>' . "\r\n";
echo tab(3) . '<tr>';
//the result
<table>
			<tr>;
一重引用符と二重引用符を使用していくつかの方法を試しましたが、結果は常に間違っています