我想弄清楚什么是完成这项工作的最佳方法,我是 php 新手。使用在我的本地服务器上测试的以下脚本,我能够使我的脚本工作以查找我的 htm 文件中的特定数据。
<?php
include ('simple_html_dom.php');
//create DOM from URL or local file
$html = file_get_html ('Lotto Texas.htm');
//find td class name currLotWinnum and store in variable winNumbers
foreach($html ->find('td.currLotWinnum') as $winNumbers)
//print winNumbers
echo "<b>The winning numbers are</b><br>";
echo $winNumbers -> innertext . '<br>';
?>
这里需要一些亮点,最终我想创建一个 Web 服务来返回 json 格式并使用 NSJSONSerialization 类从我的 iOS 应用程序访问该数据。