gpt4 book ai didi

javascript - 下载google suggest javascript文件的链接是什么?

转载 作者:行者123 更新时间:2023-11-30 12:06:30 24 4
gpt4 key购买 nike

我正在尝试将谷歌建议链接到我的网站。我认为我正在使用的链接或我尝试读取文件的方式可能有问题。无论如何,这是我在我的 php 文件中使用的链接和代码

$filehandle=fopen("http://suggestqueries.google.com/complete/search?client=firefox&q=" . $_GET["qu"],"r") 

在我的 php 文件中。它似乎仍然不起作用。

当我在我的 AJAX 文件中 window.alert(httpobject.responseText) 时,它显示空白。可能是什么问题?这是我的 PHP 代码:

<?php
$filehandle=fopen("http://suggestqueries.google.com/completesearch?client=firefox&q=" . $_GET["qu"],"r");
while(!feof($filehandle))
{
$download=fgets($filehandle);
echo $download;
}
fclose($filehandle);
?>

最佳答案

试试这个:

$filetype = mime_content_type($filename);
header('Content-type: '.$filetype);
header('Content-Disposition: attachment; filename="'.$filename.'"');

关于javascript - 下载google suggest javascript文件的链接是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35070582/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com