本篇文章主要给大家介绍如何用PHP自动生成一组单选代码。
主要思路是:利用php形成创建单选按钮的html代码,返回给浏览器,而浏览器可以解析html代码。
代码示例:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <?php
header('Content-type:text/html; charset=utf-8');
function radioFun( $arr , $name , $checked ) {
$html = '';
foreach ( $arr as $key => $value ) {
# 遍历数组,分别形成不同的单选框html代码
if ( $checked == $value ) {
$html .= "<input type=\"radio\" name=\"$name\" checked=\"checked\" >$value" ;
} else {
$html .= "<input type=\"radio\" name=\"$name\" >$value" ;
}
}
return $html ;
}
$color = array ( "红色" , "黑色" , "绿色" , "蓝色" );
echo radioFun( $color , "color" , "绿色" );
?>
|
Copier après la connexion
希望对有需要的朋友有所帮助。