快速业务通道

7个超级实用的PHP代码片段分享

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-05-22
ys" => 0, "hours" => 0, 
      "minutes" => 0, "seconds" => 0, 
    ); 
    if($time >= 31556926){ 
      $value["years"] = floor($time/31556926); 
      $time = ($time%31556926); 
    } 
    if($time >= 86400){ 
      $value["days"] = floor($time/86400); 
      $time = ($time%86400); 
    } 
    if($time >= 3600){ 
      $value["hours"] = floor($time/3600); 
      $time = ($time%3600); 
    } 
    if($time >= 60){ 
      $value["minutes"] = floor($time/60); 
      $time = ($time%60); 
    } 
    $value["seconds"] = floor($time); 
    return (array) $value; 
  }else{ 
    return (bool) FALSE; 
  } 
}

 

  4、强制下载文件

  一些诸如 mp3 类型的文件,通常会在客户端浏览器中直接被播放或使用。如果你希望它们强制被下载,也没问题。可以使用以下代码:

function downloadFile($file){ 
    $file_name = $file; 
    $mime = 'application/force-download'; 
    header('Pragma: public');     // required 
    header('Expires: 0');        // no cache 
    header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); 
    header('Cache-Control: private',false); 
    header('Content-Type: '.$mime); 
    header('Content-Disposition: attachment; filename="'.basename($file_name).'"'); 
    header('Content-Transfer-Encoding: binary'); 
    header('Connection: close'); 
    readfile($file_name);        // push it out 
    exit(); 
}

 

  5、使用 Google API 获取当前天气信息

  想知道今天的天气?这段代码会告诉你,只需 3 行代码。你只需要把其中的 ADDRESS 换成你期望的城市。

$xml = simplexml_load_file('http://www.google.com/ig/api?weather=ADDRESS'); 
  $information = $xml->xpath("/xml_api_reply/weather/current_conditions/condition"); 
  echo $information[0]->attributes();

 

  6、获得某个地址的经纬度

  随着 Google Maps API 的普及,开发人员常常需要获得某一特定地点的经度和纬度。这个非常有用的函数以某一

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号