摘要: //缩放图片 function resizeImage($im, $maxwidth, $maxheight, $name, $filetype) { $pic_width = imagesx($im); $pic_height = imagesy($im); if (($maxwidth && $ 阅读全文
posted @ 2016-11-07 17:57 雪后西溏 阅读(236) 评论(0) 推荐(0)
摘要: //把字符转化为数组自动识别中英文 function math($string, $code = 'UTF-8') { if ($code == 'UTF-8') { $pa = "/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|\xe0[\xa0-\xbf][\x80-\x 阅读全文
posted @ 2016-11-07 17:52 雪后西溏 阅读(411) 评论(0) 推荐(0)