php方便 iconFont打包

直接上效果图:

php方便 iconFont打包_第1张图片

上代码

<?php header("Content-type:text/html;charset=utf-8");  ?>
<html>
<title>iconfont tools</title>
<h1>赵大财专版released1.0 翻版不纠 2016.5.11</h1>
<form action="res.php" method="post">
   <textarea rows="10" cols="50" name="css">
      http://at.alicdn.com/t/font_1462962687_6478822.css
   </textarea>
    <br>

    <input type="submit" value="获取" />

</form>

</html>
<?php
/**
 * Created by PhpStorm.
 * User: point
 * Date: 16/5/11
 * Time: 下午6:57
 */
set_time_limit(1800) ;
//读取网页内容

//$data = file_get_contents($_POST["css"]);
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, trim($_POST["css"]));
curl_setopt($curl, CURLOPT_HEADER, 1);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$data = curl_exec($curl)."<hr><hr><hr><hr><hr><hr>";
curl_close($curl);

//.icon-loginagreen:before
preg_match_all("/.icon-(.*):before/sU",$data,$title);
preg_match_all("/{ content: (.*); }/sU",$data,$haha);
$arr =(explode(" ",$title[1]));

$i=0;
foreach($title[1] as $v){
    echo "static NSString *kIcon_".$v."=@".$haha[1][$i].";"."<br>";
    $i++;
}

 

你可能感兴趣的:(php方便 iconFont打包)