【发布时间】:2016-10-13 04:25:18
【问题描述】:
我的 XLS 文件的第一列中有以下数据
<table border="1">
<tr>
<th align="left">First Name</th>
<th align="left">Gender</th>
<th align="left">Nationality</th>
</tr>
<tr>
<td align="left">Mike</td>
<td align="left">M</td>
<td align="left">Singaporean</td>
</tr>
我想把它转换成 CSV 文件,所以输出应该是 CSV 文件
First Name Gender Nationality
Mike M Singaporean
我之前见过https://sourceforge.net/projects/phpexcelreader/
使用自定义PHP脚本如何实现?
【问题讨论】:
标签: php excel csv customization