我想重复特殊字符或 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>;
我尝试了几种单引号和双引号的方法,但结果总是错误的