企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
tpl\_app\_form\_field\_calendar() - 出生日期选择器 ### 说明 ~~~ tpl_app_form_field_calendar($name, $values = array()) ~~~ ### 参数 * **$name**表单字段的名称,同一页面不能为空 * **$values**选中的生日日期,结构为 ~~~ array('year' => 2013, 'month' => '10', 'day' => 3) ~~~ ### 示例 ~~~ <div class="mui-input-row"> <label>出生日期</label> <!-- 注意:复制时去除下行代码中 “{” 和 “php”的空格 --> { php echo tpl_app_form_field_calendar('birth', array('year' => $profile['birthyear'], 'month' => $profile['birthmonth'], 'day' => $profile['birthday']));}</div> ~~~