常数如 PHP_EOL 用于制表 php

constant like PHP_EOL for tabulation php

请帮忙, 我怎样才能找到像 PHP_EOL 这样的常量用于制表 我的代码写的文件有很多生成的表格和新行 新行写对了,但我有很多“\t\t” 参见示例:

common.app \t/loader \t/growl \t\t/error \t/form

PHP_EOL 是来自核心 PHP 的常量。您可以简单地定义自己的常量并使用它们。例如:

<?php

    defined("TAB1") or define("TAB1", "\t");
    defined("TAB2") or define("TAB2", "\t\t");
    defined("TAB3") or define("TAB3", "\t\t\t");
    defined("TAB4") or define("TAB4", "\t\t\t\t");
    defined("TAB5") or define("TAB5", "\t\t\t\t\t");


    $string = "common.app"     . TAB1 . "/loader" . TAB1 . "/growl" . 
               TAB2 . "/error" . TAB1 . "/form";

好的,我找到了解决方案

chr(9) 将表格写入输出文件

谢谢!

我用css

解决了
<style>
.MyCSS{
    border:1px solid #FFF; 
    width:10em; 
    float:left; 
    font-weight:bold;
    }
</style>
<?php 
// here the selection query
while($row = mysqli_fetch_array($result, MYSQLI_ASSOC)) { ?>
<div>
<div class="MyCSS">
<?php stripslashes($row['Country']);?>
</div>
<?php echo stripslashes($row['CountryDescription'])."<br>";?> 
</div>
<div style="clear:both;"></div>
<?php } ?>