php九宫格日志

WBOY
Freigeben: 2016-07-25 09:01:08
Original
1127 Leute haben es durchsucht
根据要求,要在九个表格中写入文字,标题可以编辑,有天气、背景、表情可以选择。最后生成一个图片,图片可以分享,结果也可以存入数据库。github地址:9Diary GitHub
  1. /**
  2. * 添加日志
  3. * bgid 背景图片
  4. * title 日志标题
  5. * 表格标题与内容以'-|*dt*|-'分隔为1、2、3、4、6、7、8、9个表格中的信息
  6. * 表格5相关:mid_title,emoticons
  7. * 模板id: tempid,待开发
  8. * open: 隐私
  9. */
  10. //dump($_POST);
  11. $bgid = intval(htmlspecialchars($_REQUEST['bgid']));
  12. $title = htmlspecialchars($_POST['title']);
  13. $cnt = str_replace(PHP_EOL, '',$_POST['cnt']);
  14. //标题和内容不能为空
  15. if (!isset($title) || !isset($cnt)){
  16. echo '标题和内容不能为空!';
  17. }
  18. $imgid = intval($_POST['imgId']);
  19. $weatherId = intval($_POST['weatherId']);
  20. $mid_title = htmlspecialchars($_POST['mid_title']);
  21. $cnt_titles = $_POST['cnt_titles'];
  22. $tempId = intval($_POST['tempId']);
  23. $open = intval($_POST['open']);
  24. //写入图片
  25. require_once('AppDiary.class.php');
  26. $image = new AppDiary();
  27. $path = dirname(__FILE__);
  28. $backimage = $path.'/images/preview/'.$bgid.'.jpg';
  29. $weatherimg = $path.'/images/weather/'.$weatherId.'.gif';
  30. $emoticons_img = $path.'/images/emoticons/'.$imgid.'.gif';
  31. $contents = explode('-|*dt*|-',$cnt);
  32. $contents_title = explode('-|*dt*|-', $cnt_titles);
  33. $str = array(
  34. array($weatherimg,528,1,61,62),//天气
  35. array($contents_title[0],35,83,146,28,'cnt'),//表格1 标题
  36. array($contents[0],35,111,160,100,'cnt_titles'),//表格1 内容
  37. array($contents_title[1],222,83,146,28,'cnt'),//表格2 标题
  38. array($contents[1],222,111,160,100,'cnt_titles'),//表格2 内容
  39. array($contents_title[2],407,83,146,28,'cnt'),//表格3 标题
  40. array($contents[2],407,111,160,100,'cnt_titles'),//表格3 内容
  41. array($contents_title[3],35,244,146,28,'cnt'),//表格4 标题
  42. array($contents[3],35,273,160,100,'cnt_titles'),//表格4 内容
  43. array($mid_title,240,235,146,38,'mid_title'),//表格5 标题
  44. array($emoticons_img,261,283,80,80),//表格5 内容
  45. array($contents_title[4],407,244,146,28,'cnt'),//表格6 标题
  46. array($contents[4],407,273,160,100,'cnt_titles'),//表格6 内容
  47. array($contents_title[5],35,409,146,28,'cnt'),//表格7 标题
  48. array($contents[5],35,436,160,100,'cnt_titles'),//表格7 内容
  49. array($contents_title[6],221,409,146,28,'cnt'),//表格8 标题
  50. array($contents[6],221,436,160,100,'cnt_titles'),//表格8 内容
  51. array($contents_title[7],407,409,146,28,'cnt'),//表格9 标题
  52. array($contents[7],407,436,160,100,'cnt_titles'),//表格9 内容
  53. );
  54. //var_dump($str);
  55. $pic = $image->topaste($backimage,$str);
  56. $filename = $path.'/upfile/'.$pic;
  57. //加了一个time()主要为了防止相同的文件名
  58. $newname = $title.'_'.time().strrchr($pic, '.');
  59. $newfile = $path.'/upfile/'.$newname;
  60. //这里主要用于中文标题
  61. $newfile = iconv( 'UTF-8', 'GB18030', $newfile );
  62. if (file_exists($filename)){
  63. //更改文件名成功
  64. if (rename($filename,$newfile)){
  65. $pic = $newname;
  66. }
  67. echo json_encode(array('info'=>$pic,'status'=>1));
  68. }else{
  69. //生成文件失败
  70. echo json_encode(array('info'=>'Error'.$pic,'status'=>0));
  71. }
复制代码
php九宫格日志 php九宫格日志 php九宫格日志


Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
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
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage