html_radios 함수

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

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

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 구분 기호="<br />"}


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 분리기="<br />"}


출력: (두 예 모두)
<input type="radio" name="id[ ]" value="1000"> ;조 슈모<br />
<input type="radio" name="id[]" value="1001" check="checked"><br />
<input type="radio " name="id[]" value="1002">제인 존슨<br />
<input type="radio" name="id[]" value="1003 ">찰리 브라운<br / >

微信图片_20180313123336.png

지속적인 학습
||
<?php echo "html_radios函数";
  • 코스 추천
  • 코스웨어 다운로드
현재 코스웨어를 다운로드할 수 없습니다. 현재 직원들이 정리하고 있습니다. 앞으로도 본 강좌에 많은 관심 부탁드립니다~