Blogger Information
Blog 6
fans 0
comment 0
visits 3766
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php添加文章评论功能-2019-09-20
゛\ぢ尛琦的博客
Original
743 people have browsed it

一、代码截图

1.png

二、运行结果

私人影院.png

三、代码

实例

<?php
$bt='文章评论';
	
	$pls = [
		[
			'touxiang' =>'tx.jpg',
			'time' =>'2019-09-01',
			'duzhe' =>'这部电视剧很不错,这是一部优秀的影视剧,深受大家喜爱!顶起!!!',
			'zuozhe' =>'感谢支持'
		],
		[
			'touxiang' =>'tx.jpg',
			'time' =>'2019-09-02',
			'duzhe' =>'良心好剧!顶起!!!',
			'zuozhe' =>'感谢打赏'
		],
		[
			'touxiang' =>'tx.jpg',
			'time' =>'2019-09-03',
			'duzhe' =>'这是一部优秀的影视剧,深受大家喜爱!顶起!!!',
			'zuozhe' =>'感谢支持!'
		],
	];
?>
<div class="pl">
	<h3><?php echo $bt?></h3>
	<?php
	foreach( $pls as $k => $v){
		echo '<div class="tl">';
		echo '<p><img src="/0920/img/'.$v['touxiang'].'"></p>';
		echo '<div>';
		echo '<p>'.$v['time'].'</p>';
		echo '<p>'.$v['duzhe'].'</p>';
		echo '<p>'.$v['zuozhe'].'</p>';
		echo '</div>';
		echo '</div>';
	}
	?>
</div>

运行实例 »

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

实例

p{margin:0; padding: 0}
.pl h3{ font-size: 1rem;}
.tl{display: flex; font-size: 0.8rem; margin-bottom:0.5rem}
.tl>p{ flex:0.2; border-radius: 50%}
.tl p img{width: 100%;display: block}
.tl div{ flex:0.78; margin-left: 2%}

运行实例 »

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

Correction status:qualified

Teacher's comments:完成的不错。
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
Author's latest blog post