我设计了一个HTML模板,我需要将大量数据放入模板中,以便通过分页访问它。
我的数据如下:
Mazda
Features
- Four doors
- Leather interior with heated seats
Resources
- http://example.com/
- http://example.com/mazdarepairs
Subaru
Features
- Vibrant color, bright headlights
- 35 miles per gallon on the highway
Resources
- http://example.com
- http://example.com/buyasubaru
它现在是Word文档中的一组静态数据,其中包含大约30个“汽车”。将此转换为更好的格式(例如JSON)以便在PHP中访问的最有效方法是什么?我不需要任何花哨的东西。
答案 0 :(得分:1)
你可以接近它的可能方式
然后,逐行开始读取数据。
循环:
这种方法显然非常适合您的情况,只有在您的数据一致时才会起作用。