一个 php 文件将从使用的表单接收 1 到 30 之间的变量
$style = $_GET['style'];
然后我想通过 $style 来帮助我选择用户选择的 css stlye,例如,如果选择的是 style 3,那么 css stlye 3 将被传递给这样的图像
<img style="<?php $choice3?>"; src="xxx.png" />
所以到目前为止我所拥有的是这个
<?php
$style = $_GET['style'];
function choice1()
{
$choice1 = "display: block;padding:5px; etc, etc etc";
return $choice1; }
function choice2()
{
$choice2 = "display: block;padding:10px; etc, etc etc";
return $choice2; }
function choice3()
{
$choice3 = "display: block;padding:20px; etc, etc etc";
return $choice3; }
if ($style == 1){
?>
<img style="<?php $choice1?>"; src="xxx.png" />
<?php
}
if ($style == 2){
?>
<img style="<?php $choice2?>"; src="xxx.png" />
<?php
}
.......and so on till 30
?>
我很确定有一种更简单、更智能的方式来表达我的逻辑。