用php生成excel和word文档
<?
header(“Content-type:application/vnd.ms-excel”);
header(“Content-Disposition:filename=test.xls”);
echo “test1\t”;
echo “test2\t\n”;
echo “test1\t”;
echo “test2\t\n”;
echo “test1\t”;
echo “test2\t\n”;
echo “test1\t”;
echo “test2\t\n”;
echo “test1\t”;
echo “test2\t\n”;
echo “test1\t”;
echo “test2\t\n”;
?>
只需改动相应文件头就可以输出.doc .xls等文件格式
WooCommerce 条件判断函数 wordpress is_shop
所有的条件判断函数测试当前条件是否匹配,匹配返回 TRUE,不匹配则返 阅读更多…