Blogger Information
Blog 9
fans 1
comment 0
visits 8795
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
影视详情增加评论功能
江水的博客
Original
785 people have browsed it

实例

//评论数组
$comment=[
    [    'p_id'=>1,//影视的id
        'u_name'=>'张三',//评论的用户
        'time'=>'2048-8-21',//评论时间
        'content'=>'期待第二部'//评论内容
    ],
    [    'p_id'=>1,
    'u_name'=>'李四',
    'time'=>'2048-8-21',
    'content'=>'剧中佟年的***,是杨紫自带的还是剧组搭配的?实在忍不住吐槽,除了两三套能显现杨紫身材的优势外,其余的都好难看,显得杨紫又矮又胖!'
],
[    'p_id'=>2,
'u_name'=>'张三',
'time'=>'2019-8-21',
'content'=>'基于两位主演去看的剧,看了两集还是不错的,有追下去的欲望,话题也聚焦热点'
],
[    'p_id'=>2,
'u_name'=>'李四',
'time'=>'2048-8-21',
'content'=>'闫妮饰演的王胜男就是我妈本妈'
],
[    'p_id'=>3,
'u_name'=>'张三',
'time'=>'2019-8-21',
'content'=>'陈乔恩万年台式言情女王不做评价,佟大为为什么演了这么一个讨人厌的角色,爱面子想上进却总是做错事为自己找借口,小鲜肉的演技还是再磨磨吧。'
],
[    'p_id'=>3,
'u_name'=>'李四',
'time'=>'2018-8-21',
'content'=>'佟大为竟然莫名的苏,陈乔恩还是很美的~'
],
[    'p_id'=>4,
'u_name'=>'张三',
'time'=>'2048-8-21',
'content'=>'这是个啥玩意儿啊,束焕的小品集锦让小岳岳又演一遍?一个编剧改当导演,剧本这么傻逼,真服了,段子全靠极为低级的巧合,审美趣味low爆,美术那叫一个廉价,全他么的现代印刷字体。'
],
[    'p_id'=>4,
'u_name'=>'李四',
'time'=>'2048-8-21',
'content'=>'开心麻花后继有人,虽然沙雕,能笑出来也有点价值,总比又傻又烂到看不下去强'
],
[    'p_id'=>5,
'u_name'=>'张三',
'time'=>'2048-8-21',
'content'=>'我是很惊讶《疯狂外星人》这么亲民的片居然在知乎和豆瓣不被待见的'
],
[    'p_id'=>5,
'u_name'=>'李四',
'time'=>'2048-8-21',
'content'=>'飞驰人生看了也是中规中矩,有笑点,有燃点,但是还不够爆笑的程度。总得来说不如后会无期,更像是韩寒既满足自己兴趣,又足够商业的电影'
],
[    'p_id'=>6,
'u_name'=>'张三',
'time'=>'2048-8-21',
'content'=>'除了尴尬的台湾女主其他人都很好笑,沈腾和常远一出场大家就笑,本来是8-9分的好笑程度,因为女主演技稀烂扣掉2星,最后金先生承认自己是二奶好评,电影现在能公开带一点同性恋内容也不容易'
],
[    'p_id'=>6,
'u_name'=>'李四',
'time'=>'2048-8-21',
'content'=>'整体水准而言,尚不及铁拳,把给铁拳的长评移过来都不用怎么改。笑点依旧是小品似的片段笑点,都靠以沈腾为主的麻花们撑,一盘散沙。对资本的戏谑与讽刺,是闪光的点,可惜仅仅是一闪,如果是有意为之,就比较可惜。'
],
[    'p_id'=>7,
'u_name'=>'张三',
'time'=>'2048-8-21',
'content'=>'跟真实事件差的太多了。风挡掉了给改成发动机。全员衣冠楚楚走下***。人家机长衣服都吹飞了。'
],
[    'p_id'=>7,
'u_name'=>'李四',
'time'=>'2048-8-21',
'content'=>'我是从烈火英雄过来的,同一个导演,希望不要过度煽情啊。'
],
[    'p_id'=>8,
'u_name'=>'张三',
'time'=>'2048-8-21',
'content'=>'这个片子最好的真的是欧豪 而且这个片子真的非常一般'
],
[    'p_id'=>8,
'u_name'=>'李四',
'time'=>'2048-8-21',
'content'=>'现在的国产小成本电影已经越来越成熟,多线叙事,黑色幽默基调,以及犯罪元素和底层情怀。而且类型化上做的很好,面向普通观众可看度和娱乐性都做的不错,欧豪演技很突破'
],
[    'p_id'=>9,
'u_name'=>'张三',
'time'=>'2048-8-21',
'content'=>'这部片可以理解为人定胜天吗?'
],
[    'p_id'=>9,
'u_name'=>'李四',
'time'=>'2048-8-21',
'content'=>'又一部好电影,值得期待。该片子演员阵容真是很强大。'
]
];

运行实例 »

点击 "运行实例" 按钮查看在线实例

实例

<?php 
//引入公共头部文件
include __DIR__.'/header.php';
$get_id=$_GET['detail_id'];
$get_id=intval($get_id);
//根据传递过来的id查询影视剧详细类容
foreach($arr as $v){
    if($get_id==$v['mov_id']){
        echo "<h2>{$v['mov']}</h2>";
        echo "<div class='container'>";
        echo "<img src='".$v['img']."' alt=''/>";
        echo "<p>{$v['detail']}</p>";
        echo "</div>";
    }
}
echo "<h3>全部评论</h3>";
echo "<hr>";
//评论
foreach($comment as $v){
    if($get_id==$v['p_id']){
        echo "<div class='comment'>";
        echo "<span>{$v['u_name']}</span><br>";
        echo "<p>{$v['content']}</p>";
        echo "<span>时间:{$v['time']}</span>";
        echo "</div>";
    
    }
}
    

//映入公共底部
include __DIR__.'/footer.php';
?>

运行实例 »

点击 "运行实例" 按钮查看在线实例

最终运行效果图:

pl.png

Correction status:qualified

Teacher's comments:对于大段的包含有html的代码, 例如: if($get_id==$v['mov_id']){ echo "<h2>{$v['mov']}</h2>"; echo "<div class='container'>"; echo "<img src='".$v['img']."' alt=''/>"; ech
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments