是否可以使用php将iframe转换为页面上的html(如果这有任何意义的话),以便搜索引擎可以索引内容?我在这里使用电子表格:
http://www.landedhouses.co.uk/offers/
<p><iframe width='700' height='1200' frameborder='0' src='https://docs.google.com/spreadsheet/pub?key=0Ai0rAM-RzQC4dE1hQ2FpdmFoU29POGFUR1NMQUl2RWc&single=true&gid=1&output=html&widget=true'></iframe></p>
最佳答案
要使用php提取html,可以使用file_get_contents
函数:
$html = file_get_contents('https://docs.google.com/spreadsheet/pub?key=0Ai0rAM-RzQC4dE1hQ2FpdmFoU29POGFUR1NMQUl2RWc&single=true&gid=1&output=html&widget=true');