是否可以使用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&#038;single=true&#038;gid=1&#038;output=html&#038;widget=true'></iframe></p>

最佳答案

要使用php提取html,可以使用file_get_contents函数:

$html = file_get_contents('https://docs.google.com/spreadsheet/pub?key=0Ai0rAM-RzQC4dE1‌​hQ2FpdmFoU29POGFUR1NMQUl2RWc&#038;single=true&#038;gid=1&#038;output=html&#038;wi‌​dget=true');

10-06 00:06