이 문서의 예에서는 일반적인 스마트 코드 세그먼트를 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 사항은 다음과 같습니다:
1,
<select > {html_options values=$cust_ids selected=$customer_id output=$cust_names} </select>
지침: 드롭다운 메뉴를 생성합니다. 값=배열, 배열 요소는 목록 값입니다. 선택됨=값, 기본 열입니다
테이블 값 출력=배열, 배열 요소는 표시된 목록 값입니다
{html_checkboxes values=$cust_ids checked=$customer_id output=$cust_names separator="<br/>"}
설명: 확인란. 위와 동일; 구분 기호="
"는 각 확인 버튼을
{html_radios values=$cust_ids checked=$customer_id output=$cust_names separator="<br/>"}
설명: 라디오 버튼
2,{counter start=0 skip=2 print=ture}설명: 카운터는 이후에 사용될 때 0부터 시작하여 매번 2씩 증가합니다. 3,
{section loop=$data} <tr bgcolor="{cycle values="#eeeeee,#d0d0d0"}"> <td>{$data[rows]}</td> </tr> {/section}설명: Reincarnation은 배열 요소(또는 시퀀스) 값을 반환합니다. 4,
{assign var="name" value="Bob"} The value of $name is {$name}.//The value of $name is Bob。설명: 할당 5,
{fetch file="http://www.myweather.com/68502/" assign="weather"}설명: 가져오기는 로컬 파일 시스템인 HTTP에서 파일을 가져오는 데 사용됩니다. 또는 FTP 그리고 파일 이름 이 "http://"로 시작하면 웹사이트 페이지를 가져와서 표시합니다. 파일 이름이 "ftp://"로 시작합니다. , FTP 서버에서 가져옵니다. 이 파일이 표시됩니다.
설명: 날짜 드롭다운 메뉴를 생성합니다.
{html_image file="../path/relative/to/currdir/pumpkin.jpg" border="1" height="100" width="100" alt="smarty学习笔记之常见代码段用法总结" href="1.html"}
설명: 시간 드롭다운 메뉴를 만드는 데 사용됩니다. 언제든지, 분, 초를 표시할 수 있습니다.
8,
{html_select_date}
설명: $data 배열 요소를 사용하여 4열 테이블을 구성합니다. table_attl은 테이블 속성, tr_attr은 행 속성, td_attr
은 열 속성
{html_select_time}9,
설명: 수학 연산 기능
{html_table loop=$data cols=4 table_attr='border="0"' tr_attr=$tr td_attr=$td}10,
지침: 이메일 링크 생성
11,
{math equation="x + y" x=$height y=$width}
참고: 자바스크립트 팝업 창을 만들려면 먼저 popup_init 함수
를 호출해야 합니다. 이 글이 스마트한 템플릿을 기반으로 하는 모든 사람의 PHP 프로그램 설계에 도움이 되기를 바랍니다.
{mailto address="me@domain.com" text="send me some mail"}위 내용은 관련 내용을 포함하여 스마트 스터디 노트에 일반적인 코드 조각 사용법을 요약하여 소개했습니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.