我正在尝试使用PHP创建一个制表符分隔文件并遇到一些麻烦。基本上我的标签和换行符\t
和\n
最终会被打印出来,而不是转换成他们应该的样子。
我的代码很简单:
$sql = 'SELECT * FROM products';
$res = mysql_query($sql);
$page_print = 'id \t title \t description \t price';
while($row = mysql_fetch_array($res)) {
$page_print .= $row['product_id'] . ' \t ' . $row['product_name'] . ' \t ' . strip_tags($row['product_content']) . ' \t ' . $row['product_price'] . '\n';
}
$page_print = sanitize_output($page_print);
$myFile = "products.txt";
$fh = fopen($myFile, 'w');
$stringData = trim($page_print);
fwrite($fh, $stringData);
fclose($fh);
我在这里做错了什么?
答案 0 :(得分:6)
在\t
和\n
周围使用双引号。您也可以使用PHP_EOL
常量作为行尾。
$page_print .= $row['product_id'] . " \t " . $row['product_name'] . " \t " . strip_tags($row['product_content']) . " \t " . $row['product_price'] . PHP_EOL;
答案 1 :(得分:5)
答案 2 :(得分:5)
而不是编写自己的代码。您可以使用 fputcsv 功能
$sql = 'SELECT * FROM products ';
$res = mysql_query($sql);
$myFile = "products.txt";
$fh = fopen($myFile, 'w');
fputcsv($fh, array('id', 'title', 'description', 'price'), "\t");
while($row = mysql_fetch_array($res)) {
fputcsv($fh, $row, "\t");
}
fclose($fh);
答案 3 :(得分:1)
使用双引号"
代替单'
$page_print .= $row['product_id'] . " \t " . $row['product_name'] . " \t " . strip_tags($row['product_content']) . " \t " . $row['product_price'] . "\n";
编辑1
当然你也可以使用chr()
$page_print .= $row['product_id'] . chr(9) . $row['product_name'] ;
答案 4 :(得分:0)
\t
) - http://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.double 时, " "
才会在输出中成为标签符号