返回
首页 > 数码科技

你的电脑上如何同时装上office 、project 及 visio

时间: 2023-01-23
  1. <meta http-equiv='content-type' content='text/html;charset=utf-8'
  2.  
  3. <?php 
  4.     include 'snoopy/Snoopy.class.php'
  5.      
  6.     $snoopy = new Snoopy(); 
  7.      
  8.     $sourceURL = "http://xxxxx"
  9.     $snoopy->fetchlinks($sourceURL); 
  10.      
  11.     $a = $snoopy->results; 
  12.     $re = "/d+.html$/"
  13.      
  14.     //过滤获取指定的文件地址请求 
  15.     foreach ($a as $tmp) { 
  16.         if (preg_match($re$tmp)) { 
  17.             getImgURL($tmp); 
  18.         } 
  19.     } 
  20.      
  21.     function getImgURL($siteName) { 
  22.         $snoopy = new Snoopy(); 
  23.         $snoopy->fetch($siteName); 
  24.          
  25.         $fileContent = $snoopy->results; 
  26.          
  27.         //匹配图片的正则表达式 
  28.         $reTag = "/<img[^s]+src="(http://[^"]+).(jpg|png|gif|jpeg)"[^/]*/>/i"
  29.          
  30.         if (preg_match($reTag$fileContent)) { 
  31.             $ret = preg_match_all($reTag$fileContent$matchResult); 
  32.              
  33.             for ($i = 0, $len = count($matchResult[1]); $i < $len; ++$i) { 
  34.                 saveImgURL($matchResult[1][$i], $matchResult[2][$i]); 
  35.             } 
  36.         } 
  37.     } 
  38.      
  39.     function saveImgURL($name$suffix) { 
  40.         $url = $name.".".$suffix
  41.          
  42.         echo "请求的图片地址:".$url."<br/>"
  43.          
  44.         $imgSavePath = "E:/xxx/style/images/"
  45.         $imgId = preg_replace("/^.+/(d+)$/""1"$name); 
  46.         if ($suffix == "gif") { 
  47.             $imgSavePath .= "emotion"
  48.         } else { 
  49.             $imgSavePath .= "topic"
  50.         } 
  51.         $imgSavePath .= ("/".$imgId.".".$suffix); 
  52.          
  53.         if (is_file($imgSavePath)) { 
  54.             unlink($imgSavePath); 
  55.             echo "<p style='color:#f00;'>文件".$imgSavePath."已存在,将被删除</p>"
  56.         } 
  57.          
  58.         $imgFile = file_get_contents($url); 
  59.         $flag = file_put_contents($imgSavePath$imgFile); 
  60.          
  61.         if ($flag) { 
  62.             echo "<p>文件".$imgSavePath."保存成功</p>"
  63.         } 
  64.          
  65.     } 
  66. ?> 
  1. $(function () { 
  2.     $("code").each(function () { 
  3.         $(this).html("<ul id='codeblock'><li>" + $(this).html().replace(/n/g, "n</li><li>") + "n</li></ul>"); 
  4.     }); 
  5. }); 
  1.    config.extraPlugins = 'etranfile,etranmedia,etranmore,autoformat,ecleanalltext,einsertbr,einsertpage,einserttime,equotetext,codesnippet';   
  2.    config.toolbar = 'full';  
  3. config.codeSnippet_theme = 'foundation'

猜你喜欢

版权所有 Copyright©2023 餐饮美食网 版权所有

粤ICP备15109582号

联系邮箱:187348839@qq.com