我正在尝试从某个 URL 获取文本,该文本位于两个文本之间。例如 :
<td >Item number:</td><td >**GX12033111**</td></tr>
我需要得到GX12033111零件,
我试过这个:
<?php
$file_string = file_get_contents('LINK GOES HERE');
preg_match('/<td >Item number:</td><td >(.*)<\/td><\/tr>/i', $file_string, $title);
$title_out = $title[1];
echo $title_out ;
?>
但它不起作用。