我的设置:
索引.php:
<?php
$page = file_get_contents('a.html');
$arr = array();
preg_match('/<td class=\"myclass\">(.*)\<\/td>/s',$page,$arr);
print_r($arr);
?>
一个.html:
...other content
<td class="myclass">
THE
CONTENT
</td>
other content...
输出:
Array
(
[0] => Array
(
)
)
如果我将 index.php 的第 4 行更改为:
preg_match('/<td class=\"myclass\">(.*)\<\/t/s',$page,$arr);
输出是:
Array
(
[0] => <td class="myclass">
THE
CONTENT
</t
[1] =>
THE
CONTENT
)