我想用PHP檢索表格單元格的內容到另一個文件。使用此代碼,我檢索行的全部單元的內容。PHP獲取單元格內容
$url = 'folder/myPage.php';
$content = file_get_contents($url);
$first_step = explode('<tr id="foo">' , $content);
$second_step = explode('</tr>' , $first_step[1]);
echo $second_step[0];
如何檢索特定的單元格? (第二個,例如...)
$url = 'folder/myPage.php';
$content = file_get_contents($url);
//Ugly Code !...doesn't work !
$first_step = explode('<tr id="foo"><td[1]' , $content);
$second_step = explode('</td></tr>' , $first_step[1]);
echo $second_step[0];
Thanks.Nicolas。
您不應該使用PHP來檢查DOM文檔,但無論如何..如果您確實使用了[library](http://simplehtmldom.sourceforge.net/)。 – Xorifelse
我會盡力的。謝謝。 –
如果它不是PHP,它是AJAX? Jquery? –