博客列表 >PHP初级本地搭建和实例讲解

PHP初级本地搭建和实例讲解

wen。
wen。原创
2021年01月24日 12:02:391420浏览

PHP本地搭建

PHP既”超文本预处理器”,是在服务器端执行的脚本语言;而正因为服务器执行的脚本语言,使得浏览器无法直接访问后缀名为php的文件,这个时候我们就需要本地搭建一个服务端。

一键式搭建PHP运行环境工具

首推phpstudy和wampServer
1.1 phpstudy
phpstudy

1.2 wampServer
wampServer

搭建环境后,需要修改一下配置文件,把localhost改成自定义域名
修改配置文件

静态转变动态的发展历史

2.1 动态的诞生背景
最初的网站只是单纯的静态网页,浏览器的最初也只是主要展现静态的文本和图片信息,然而人们不仅仅是满足于Web服务器上的静态文件;随着新技术的衍生,CGI定义了Web服务器与外部应用程序之间的通信接口标准,因此Web服务器可以通过CGI执行外部程序,让外部程序根据Web请求内容生成动态的内容。

2.2特点

  • 交互性
  • 动态访问
  • 服务端发送请求

PHP动态仿豆瓣电影小实例

3.1 header.php头部页

  1. <div id="db-nav-movie" class="nav">
  2. <div class="nav-wrap">
  3. <div class="nav-primary">
  4. <div class="nav-logo">
  5. <a href="https:&#47;&#47;movie.douban.com">豆瓣电影</a>
  6. </div>
  7. <div class="nav-search">
  8. <form action="https:&#47;&#47;search.douban.com&#47;movie/subject_search" method="get">
  9. <fieldset>
  10. <legend>搜索:</legend>
  11. <label for="inp-query">
  12. </label>
  13. <div class="inp"><input id="inp-query" name="search_text" size="22" maxlength="60" placeholder="搜索电影、电视剧、综艺、影人" value=""></div>
  14. <div class="inp-btn"><input type="submit" value="搜索"></div>
  15. </fieldset>
  16. </form>
  17. </div>
  18. </div>
  19. </div>
  20. </div>

3.2 index.php首页

  1. <?php include('common.php')?>
  2. <!DOCTYPE html>
  3. <html lang="zh-CN" class="ua-windows ua-webkit">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta name="renderer" content="webkit">
  7. <meta name="referrer" content="always">
  8. <title><?=$title?></title>
  9. <meta name="keywords" content="<?=$keywords?>" />
  10. <meta name="description" content="<?=$description?>" />
  11. <link href="static/css/douban.css" rel="stylesheet" type="text/css">
  12. <link href="static/css/_all.css" rel="stylesheet" type="text/css">
  13. <link href="static/css/init.css" rel="stylesheet">
  14. <link rel="stylesheet" href="static/css/home.css" />
  15. <link rel="stylesheet" href="static/css/11d137da675bd116.css">
  16. <link href="static/css/bundle.css" rel="stylesheet" type="text/css">
  17. <link href="static/css/bundle_1.css" rel="stylesheet" type="text/css">
  18. </head>
  19. <body>
  20. <?php include('header.php') ?>
  21. <div id="wrapper">
  22. <div id="content">
  23. <div class="grid-16-8 clearfix">
  24. <div id="dale_movie_homepage_top_large"></div>
  25. <div class="article">
  26. <?php foreach($movies as $movie):?>
  27. <div class="gaia gaia-lite gaia-movie">
  28. <div class="detail-pop"></div>
  29. <input type="hidden" name="islogin" value="false">
  30. <div class="fliter-wp">
  31. <h2>
  32. <div data-type="movie"><?=$movie['movie_title']?></div>
  33. <div class="fliter-placeholder"></div>
  34. <a href="#" class="more-link">更多»</a>
  35. </h2>
  36. </div>
  37. <div class="list-wp">
  38. <div class="slider">
  39. <div class="slide-container" style="height: 426px;">
  40. <?php for($i=0;$i<count($movie);$i++):?>
  41. <div class="slide-page" style="width: 700px;" data-index="0">
  42. <a class="item" target="_blank" href="#">
  43. <div class="cover-wp" data-isnew="false">
  44. <img src="<?=$movie[$i]['images']?>" alt="<?=$movie[$i]['name']?>">
  45. </div>
  46. <p>
  47. <?=$movie[$i]['name']?>
  48. <strong><?=$movie[$i]['score']?></strong>
  49. </p>
  50. </a>
  51. </div>
  52. <?php endfor?>
  53. </div>
  54. </div>
  55. </div>
  56. </div>
  57. <?php endforeach?>
  58. <div id="reviews" class="s" data-dstat-areaid="77" data-dstat-mode="click,expose">
  59. <div class="reviews-hd">
  60. <h2>最受欢迎的影评</h2>
  61. </div>
  62. <div class="reviews-bd">
  63. <?php foreach($reviews as $review):?>
  64. <?php for($i=0;$i<count($review);$i++):?>
  65. <div class="review ">
  66. <div class="review-hd">
  67. <a href="#">
  68. <img class="lazy" src="<?=$review[$i]['icon']?>" alt="<?=$review[$i]['title']?>" />
  69. </a>
  70. </div>
  71. <div class="review-bd">
  72. <h3><a href="#" class=""><?=$review[$i]['title']?></a></h3>
  73. <div class="review-meta">
  74. <a href="#"><?=$review[$i]['comment']?></a> 评论
  75. <a href="#"><?=$review[$i]['movie']?></a>
  76. <span class="allstar40"></span>
  77. </div>
  78. <div class="review-content">
  79. <?=$review[$i]['description']?>
  80. <a href="#">(全文)</a>
  81. </div>
  82. </div>
  83. </div>
  84. <?php endfor?>
  85. <?php endforeach?>
  86. </div>
  87. </div>
  88. </div>
  89. </div>
  90. </div>
  91. <?php include('footer.php') ?>
  92. </div>
  93. </html>

3.3 footer.php底部

  1. <div id="footer">
  2. <div class="footer-extra"></div>
  3. <span id="icp" class="fleft gray-link">
  4. &copy; 2005-2021 douban.com, all rights reserved 北京豆网科技有限公司
  5. </span>
  6. <a href="https://www.douban.com/hnypt/variformcyst.py" style="display: none;"></a>
  7. <span class="fright">
  8. <a href="https://www.douban.com/about">关于豆瓣</a>
  9. · <a href="https://www.douban.com/jobs">在豆瓣工作</a>
  10. · <a href="https://www.douban.com/about?topic=contactus">联系我们</a>
  11. · <a href="https://www.douban.com/about/legal">法律声明</a>
  12. · <a href="https://help.douban.com/?app=movie" target="_blank">帮助中心</a>
  13. · <a href="https://www.douban.com/doubanapp/">移动应用</a>
  14. · <a href="https://www.douban.com/partner/">豆瓣广告</a>
  15. </span>
  16. </div>
  17. </div>

3.4 common.php公共数据

  1. <?php
  2. $title = '仿豆瓣电影小案例';
  3. $keywords = '电影、经典电影、热映、电视剧、美剧、影评、电影院、电影票、排行、推荐';
  4. $description = '豆瓣电影提供最新的电影介绍及评论包括上映影片的影讯查询及购票服务。你可以记录想看、在看和看过的电影电视剧,顺便打分、写影评。根据你的口味,豆瓣电影会推荐好电影给你。';
  5. $movies = [
  6. [
  7. 'movie_title' => '最近热门电影',
  8. [
  9. 'name' => '夺冠',
  10. 'images' => 'static/picture/p2620083313.jpg',
  11. 'score' => '7.3',
  12. 'state' => '0'
  13. ],
  14. [
  15. 'name' => '神奇女侠1984',
  16. 'images' => 'static/picture/p2626959989.jpg',
  17. 'score' => '6.3',
  18. 'state' => '0'
  19. ],
  20. [
  21. 'name' => '一个父亲的寻子之路',
  22. 'images' => 'static/picture/p2587004515.jpg',
  23. 'score' => '7.7',
  24. 'state' => '1'
  25. ],
  26. [
  27. 'name' => '校园大逃杀',
  28. 'images' => 'static/picture/p2630759444.webp',
  29. 'score' => '6.3',
  30. 'state' => '1'
  31. ],
  32. [
  33. 'name' => '神秘博士元旦特集:戴立克革命',
  34. 'images' => 'static/picture/p2627360144.jpg',
  35. 'score' => '6.0',
  36. 'state' => '1'
  37. ],
  38. [
  39. 'name' => '除暴',
  40. 'images' => 'static/picture/p2625777429.jpg',
  41. 'score' => '6.3',
  42. 'state' => '0'
  43. ],
  44. [
  45. 'name' => '穷途鼠的奶酪梦',
  46. 'images' => 'static/picture/p2586418907.jpg',
  47. 'score' => '6.3',
  48. 'state' => '0'
  49. ],
  50. [
  51. 'name' => '女人的碎片',
  52. 'images' => 'static/picture/p2625877469.jpg',
  53. 'score' => '7.8',
  54. 'state' => '0'
  55. ],
  56. [
  57. 'name' => '一秒钟',
  58. 'images' => 'static/picture/p2628373757.jpg',
  59. 'score' => '7.4',
  60. 'state' => '0'
  61. ],
  62. [
  63. 'name' => '前程似锦的女孩',
  64. 'images' => 'static/picture/p2622450735.jpg',
  65. 'score' => '7.4',
  66. 'state' => '0'
  67. ]
  68. ],
  69. [
  70. 'movie_title' => '最近热门电视剧',
  71. [
  72. 'name' => '弥留之国的爱丽丝 第一季',
  73. 'images' => 'static/picture/p2624050592.jpg',
  74. 'score' => '8.0',
  75. 'state' => '0'
  76. ],
  77. [
  78. 'name' => '甜蜜家园',
  79. 'images' => 'static/picture/p2628425414.jpg',
  80. 'score' => '7.0',
  81. 'state' => '7.8'
  82. ],
  83. [
  84. 'name' => '工作细胞 第二季',
  85. 'images' => 'static/picture/p2591979945.jpg',
  86. 'score' => '9.0',
  87. 'state' => '0'
  88. ],
  89. [
  90. 'name' => '到了30岁还是处男,似乎会变成魔法师',
  91. 'images' => 'static/picture/p2622449274.jpg',
  92. 'score' => '8.9',
  93. 'state' => '0'
  94. ],
  95. [
  96. 'name' => '天竺鼠车车',
  97. 'images' => 'static/picture/p2629954180.jpg',
  98. 'score' => '9.5',
  99. 'state' => '1'
  100. ],
  101. [
  102. 'name' => '无职转生:到了异世界就拿出真本事',
  103. 'images' => 'static/picture/p2627757433.jpg',
  104. 'score' => '7.0',
  105. 'state' => '0'
  106. ],
  107. [
  108. 'name' => '堀与宫村',
  109. 'images' => 'static/picture/p2620695919.jpg',
  110. 'score' => '9.3',
  111. 'state' => '0'
  112. ],
  113. [
  114. 'name' => '大江大河',
  115. 'images' => 'static/picture/p2541093820.jpg',
  116. 'score' => '6.8',
  117. 'state' => '0'
  118. ],
  119. [
  120. 'name' => '约定的梦幻岛 第二季',
  121. 'images' => 'static/picture/p2627528391.webp',
  122. 'score' => '9.3',
  123. 'state' => '0'
  124. ],
  125. [
  126. 'name' => '亚森·罗宾',
  127. 'images' => 'static/picture/p2627475199.jpg',
  128. 'score' => '8.0',
  129. 'state' => '0'
  130. ]
  131. ]
  132. ];
  133. $reviews = [
  134. [
  135. 'view' => '最受欢迎的影评',
  136. [
  137. 'title' => '大雄的新恐龙:令和时代下工具理性和天皇制的再反思',
  138. 'icon' => 'static/picture/p2624375776.webp',
  139. 'comment' => '陆泓旭',
  140. 'movie' => '《哆啦A梦:大雄的新恐龙》',
  141. 'description' => '与其说恐龙新生的迦南之地是立体景观模型演化的大雄伊甸园,倒不如说是那个集地震、海啸、火山、核爆灭绝恐慌于一身的日本列岛的镜像。末日硝烟下弥漫的孤岛危机萦绕在每只无邪恐龙潜意识深处,三一一地震和福岛...'
  142. ],
  143. [
  144. 'title' => '潘乘风的摇摆不定,像极了迷茫的港人',
  145. 'icon' => 'static/picture/p2621379901.jpg',
  146. 'comment' => 'JetWoo',
  147. 'movie' => '《拆弹专家2》',
  148. 'description' => '熟悉邱礼涛导演的观众都知道,邱的作品,多数都有其对社会议题的思考。仔细回想,拆2也不例外。倪妮的一句台词“信我你就是警察,不信我你就是恐怖分子”,以及刘德华黑口罩,恐袭元素,很难不让人联想到如今的香...'
  149. ],
  150. [
  151. 'title' => '他与自己如此不同,像灼热的阳光,温暖了清冷的冬。',
  152. 'icon' => 'static/picture/p2607822901.jpg',
  153. 'comment' => 'DONT_BOTHER',
  154. 'movie' => '《在回家之后重新开始》',
  155. 'description' => '我个人很喜欢这部电影。因为这部电影能让我慢下来。可能是能够共情到光臣的想法,也向往最后光臣与自己和解,过上这样慢节奏的安心的生活。 光臣,自视甚高,本以为可以在大城市做着有趣的工作,没想到现实并非如...'
  156. ],
  157. [
  158. 'title' => '《毕业舞会》:舞会与美好生活',
  159. 'icon' => 'static/picture/p2627517148.webp',
  160. 'comment' => 'Enlightening',
  161. 'movie' => '《毕业舞会》',
  162. 'description' => '“如果音乐足够刺耳,无人会在意你那不羁的心灵会爱上谁。让人们看看,这世界有一天会变成怎样,如果我们抓住机会,梦想便可能成真。但在那天到来之前,让我们一同起舞。” 作者:Enlightening 首发:[陀螺电影] ...'
  163. ],
  164. ]
  165. ];
  166. ?>

效果如下
豆瓣电影小实例

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议