我已经编写了一个登录到我们学校笔记系统的 php 脚本。但我正在尝试将 HTML 页面解析为 xml。但我遇到了一些麻烦。首先,表格的 html 代码有点乱,我不知道现在该做什么。
这是 CURL PHP 页面: http: //koetse.eu/test/curl.php。这是回复的源代码:http: //pastebin.com/RDawmsnY
我正在尝试将凌乱的 HTML 表格更改为 xml 文件,看起来有点像:
<?xml version="1.0" ?> >
<notes>
<name>Jurre (4HC)</name>
<class>kwt</class>
<class>netl</class>
<note>6.6</note>
<note>6.3</note>
<note>4.9</note>
<se>5.8</se>
<class>entl</class>
<note>7.5</note>
<note>7.3</note>
<note>7.7</note>
<note>10.0</note>
<note>6.6</note>
<note>9.6</note>
<note>6.7</note>
<note>6.7</note>
<se>8.6</se>
<class>lv</class>
<note>7.8</note>
<note>4.8</note>
<se>6.3</se>
</notes>
等...(我只做了前3行作为例子)
很抱歉使用 pastebin,但我与帖子的最大长度发生了争执。
问候尤尔