html_radios 함수

이 함수는 값과 출력 속성을 지정하거나 옵션 대안을 지정해야 함을 지정할 수 있습니다.

위 표에 언급되지 않은 기타 매개변수 태그에 "이름/속성" 쌍의 형태로 표시됩니다.

index.php:
require('Smarty.class.php');
$smarty = new Smarty;
$smarty->할당(' cust_ids', array(1000,1001,1002,1003));
$smarty->ass('cust_names', array('Joe Schmoe','Jack Smith','Jane
Johnson','Carlie Brown') );
$smarty->ass('customer_id', 1001);
$smarty->display('index.tpl');


index.tpl:
{html_radios 값=$cust_ids 확인됨= $customer_id 출력=$cust_names 구분 기호="
"}


index.php:
require('Smarty.class.php');
$smarty = new Smarty;
$smarty-> ;sign('cust_radios', array(
1001 => 'Joe Schmoe',
1002 => 'Jack Smith',
1003 => 'Jane Johnson',
1004 = > '찰리 브라운')) ;
$smarty->할당('customer_id', 1001);
$smarty->display('index.tpl');


index.tpl:
{ html_radios name="id" options= $cust_radios selected=$customer_id 분리기="
"}


출력: (두 예 모두)
;조 슈모



제인 존슨

찰리 브라운

微信图片_20180313123336.png

지속적인 학습
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!