使用 PHP 如何将文本文件连同链接一起输出到表格中
我有这个文本文件:
Dec 04 20:15 Naruto 123
Dec 04 17:42 Naruto 98
Dec 04 16:19 D Gray Man 001
Dec 04 16:05 Bleach 128
Dec 04 12:13 50 x 50 44
我需要将内容输出到一个表中,其中日期和时间在其自己的列中,而平铺和章节在另一列中。
另外..我需要用必须采用以下格式的链接替换标题和章节:
<a href="/title/title chapter">title chapter</a>
为了澄清,文本文件中的标题是:
Naruto
Naruto
D Gray Man
Bleach
50 x 50
章节是后面的数字:
123
98
001
128
44
I have this text file:
Dec 04 20:15 Naruto 123
Dec 04 17:42 Naruto 98
Dec 04 16:19 D Gray Man 001
Dec 04 16:05 Bleach 128
Dec 04 12:13 50 x 50 44
I need to output the contents into a table with the Date and Time in its own column and the Tile and Chapter in another.
Also.. I need to replace the Title and Chapter with a link that must be formatted this way:
<a href="/title/title chapter">title chapter</a>
For clarification the titles in the text file are:
Naruto
Naruto
D Gray Man
Bleach
50 x 50
And the chapters are the numbers that follow:
123
98
001
128
44
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样的事情应该可以解决问题(尚未测试代码):
Something like this should do the trick (haven't tested the code):
标签
这是开始的正则表达式 - 您可能需要对其进行一些修改以满足您的需求:
对于数组中的每个项目,编写适当的
&
标签填充了提取的数据。
更新:
<table>
tagHere is the regex to start with - you might want to modify it a little to meet your needs:
For each item in the array, write appropriate
<tr>
&<td>
tags filled with the extracted data.Update: