doufeixuan8882 2012-04-14 08:32
浏览 11
已采纳

试图保存图像,其名称完整的PHP

Hi i am using the script below to save an image FROM another domain into my own domain.

  //get image name and extension
  $img = 'http://otherdomain.com/image/123.jpg';
  $getname = explode('/', $img);
  $thumbname = $getname[count($getname) - 1];
  //save the image file
  $file = file_get_contents($img);
  $path = 'thumbs/'+ $thumbname;
  file_put_contents($path, $file);

But i cant get this to work. the $path resulted in 123 but not 123.jpg(which i need). and am i doing the file get content and file put content right?

  • 写回答

2条回答 默认 最新

  • dongluan7821 2012-04-14 08:36
    关注

    You can use basename() to determine the last part (= filename) of a path.

    $image_name = basename($img); // This will contain 123.jpg
    

    See the docs over at http://php.net/manual/en/function.basename.php

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 php 同步电商平台多个店铺增量订单和订单状态
  • ¥15 关于logstash转发日志时发生的部分内容丢失问题
  • ¥17 pro*C预编译“闪回查询”报错SCN不能识别
  • ¥15 微信会员卡接入微信支付商户号收款
  • ¥15 如何获取烟草零售终端数据
  • ¥15 数学建模招标中位数问题
  • ¥15 phython路径名过长报错 不知道什么问题
  • ¥15 深度学习中模型转换该怎么实现
  • ¥15 Stata外部命令安装问题求帮助!
  • ¥15 从键盘随机输入A-H中的一串字符串,用七段数码管方法进行绘制。提交代码及运行截图。