|
楼主 |
发表于 2014-5-30 17:56:01
|
显示全部楼层
我要改成这样吗?
public function show($name, $type, $value = '', $default = '',$width = 0 , $height = 0)
{
$this->_find_real_value($name, $default);
$type = '_' . $type;
$field = array('name' => $name, 'values' => $value, 'width' => $width, 'height' => $height);
echo $this->$type($field, $default);
} |
|