0
我想解析確實使用PHP簡單的HTML Dom解析器。 我是PHP新手。 我需要幫助才能從Indeed中獲取內容並將其表示爲表格。使用PHP簡單的Dom解析器從確實提取內容並將其放在表中
所以總之我需要以下方式。
表:
Company Name | Job Title | job Description | Date of posting ------------------------------------------------------------ IBM | Developer | developer at US | 12/22/2014
代碼:
<?php
include("simple_html_dom.php");
// Create DOM from URL or file
$str = '';
// Find all images
$html = file_get_html('https://www.indeed.com/jobs?q="IBM"&l=');
foreach($html->find('div[data-tn-component=organicJob]') as $jobtitle)
$str =$str . $jobtitle->innertext . '<br>';
echo $str;
?>
使用[API](https://www.indeed.com/publisher)而不是試圖刮擦網站。 –
我不熟悉API,因爲它不提供職位描述 –