在PHP中使用file_get_contents()时获取文件扩展名

时间:2018-03-03 19:32:45

标签: php google-places-api

我使用以下代码行从我的PHP服务器上检索图像来放置API

    $response = file_get_contents($url);

我也将此文件写入服务器上的文件夹,如下所示:(返回的文件是二进制文件,而不是图像文件)

    file_put_contents($folderPath,$response);

如何查找我在$ response中读取的文件的文件扩展名?

我尝试了以下内容:

    $response = file_get_contents($url);
    $size = getimagesize($response);
    $extension  = image_type_to_extension($response)

3 个答案:

答案 0 :(得分:1)

Google不会返回带后缀的文件。尝试mime_content_type($response),然后解析响应以指出正确的后缀

答案 1 :(得分:0)

尝试使用pathinfo

http://php.net/manual/en/function.pathinfo.php

它可以帮到你

[编辑] 由于您的图像以二进制形式返回,请使用php的geERGizefromstring http://php.net/manual/en/function.getimagesizefromstring.php

它将返回您需要的所有详细信息。

答案 2 :(得分:0)

您可以使用pathinfo获取扩展名。

$extension = pathinfo($response, PATHINFO_EXTENSION);