Smarty intercepts the string, calls the steps in php, and runs the foreach loop.

Source: Internet
Author: User
Smarty intercepts strings and calls methods in php. foreach loop 1. smarty truncate string & nbsp; code & nbsp; & lt; {$ content | truncate: 30: & quot ;... & q smarty intercepts the string, calls the method in php, and runs the foreach loop.

1. smarty truncated string

Code in html <{$ content | truncate: 30: "..."}>

Cut the $ content string by 30 characters, and use "..." to replace the subsequent content.

 

2. smarty calls methods in php

Code in html<{$ Content | sub}>

Pass $ content as a variable to the method sub in php (the php page here is the php page on the display html page)

Code in php

Function sub ($ con ){

Return "123 ";

}

?>

If you want to pass multiple parameters to the methods on the php page

The codes <{$ content | sub: "aa": "bb"}> aa and bb in html are the second and third parameters.

Pass $ content as a variable to the method sub in php (the php page here is the php page on the display html page)

Code in php

Function sub ($ con, $ aa, $ bb ){

Return "123 ";

}

?>

3. foreach loop

<{Foreach item = arr from = $ row}> $ row is an array passed from the php page.

<{$ Arr. name}>

<{/Foreach}>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.