poll.php
来自「xm2sv1.0寻梦二手网 v1.0,一个经过我调试的PHP原代码,有机会大家多」· PHP 代码 · 共 27 行
PHP
27 行
<?php
/*
[DISCUZ!] include/poll.php - show poll in thread viewing page
This is NOT a freeware, use is subject to license terms
Version: 2.0.0
Author: Crossday (info@discuz.net)
Copyright: Crossday Studio (www.crossday.com)
Last Modified: 2002/12/5 10:00
*/
$pollopts = unserialize($thread['pollopts']);
$polloptions = array();
foreach($pollopts['options'] as $option) {
$totalvotes += $option[1];
$polloptions[] = array( 'option' => dhtmlspecialchars($option[0]),
'votes' => $option[1],
'width' => @round($option[1] * 300 / $polloptions['max']) + 2,
'percent' => @sprintf ("%01.2f", $option[1] * 100 / $polloptions['total'])
);
}
$allowvote = $allowvote && $discuz_user && !in_array($discuz_user, $pollopts['voters']);
$optiontype = $pollopts['multiple'] ? 'checkbox' : 'radio';
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?