您的位置:首页 > 编程语言 > PHP开发

php方便 iconFont打包

2016-05-11 00:00 489 查看
摘要: php方便 iconFont打包

直接上效果图:



上代码

[code=plain]<?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>


[code=plain]<?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++;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: