Heim >Backend-Entwicklung >PHP-Tutorial >改进后的《自动显示天气预报》小程序(Linux和Windows环境都可以)-PHP应用-PHP教程-_PHP教程

改进后的《自动显示天气预报》小程序(Linux和Windows环境都可以)-PHP应用-PHP教程-_PHP教程

WBOY
WBOYOriginal
2016-07-13 16:58:09784Durchsuche

这次改进,主要是增加了图象的获取,并提供了一个比较完整的获取远端文件的函数。具体代码如下:

$fcont=file("http://www.bjmb.gov.cn/today.asp");
$arr=array();
for($i=0;$i    $tmp=$fcont[$i];
    $tmp=ereg_replace("
"," ",$tmp);
    if(!strstr(strtolower($tmp),"img")){
        $tmp=trim(strip_tags($tmp));
    } else {
        $st=ereg_replace(">⌒        $stt=split("⌒",$st);
        foreach($stt as $key => $value){
       if(strstr($value,"img") ){
           $tmp=$value;
           if(strstr($tmp,"bt9.jpg") || strstr($tmp,"colline.gif")){
          $tmp="";
           }else{
          $tmp=ereg_replace(""","",$tmp);
          $st=split("src=",$tmp);
          $st1=split(" ",$st[1]);getpic("http://www.bjmb.gov.cn/$st1[0]","image");
          if(count($st)>2){
          $st2=split(" ",$st[2]);getpic("http://www.bjmb.gov.cn/$st1[0]","image");
          }

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/631444.htmlTechArticle这次改进,主要是增加了图象的获取,并提供了一个比较完整的获取远端文件的函数。具体代码如下: ? $fcont=file(http://www.bjmb.gov.cn/today.as...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn