AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
# button Form::button() 参数 ``` <pre class="brush:php;toolbar:false">$type       button的类型,支持的有button、submit、reset $name       button的名称 $value      button的值 $attr       表单的属性,可以为任意属性 ``` 使用 ``` <pre class="brush:php;toolbar:false">//控制器 echo \system\Form::button('button' , 'name' , '点我')); //模板 {:libsStatic('Form' , 'button('button' , 'name' , '点我')')} ```