Smarty intercepts the string, invokes the steps in PHP, and the Foreach Loop

Source: Internet
Author: User
Smarty intercepts a string, invokes a method in PHP, and a foreach loop

1.smarty Intercept string

The code in HTML <{$content |truncate:30: "..."}>

Truncate the $content string by 30 characters, followed by "..." To replace

2.smarty calling Methods in PHP

the code in HTML <{$content |sub}>

The $content character channeling is passed as a variable to the method sub in PHP (The PHP page here is the PHP page of the display HTML page)

The code in PHP

function sub ($con) {

return "123";

}

?>

If you want to pass multiple arguments to a method in a PHP page

code in HTML <{$content |sub: "AA": "BB"}> AA and BB are the second and third parameters

The $content character channeling is passed as a variable to the method sub in PHP (The PHP page here is the PHP page of the display HTML page)

The code in PHP

function sub ($con, $AA, $BB) {

return "123";

}

?>

3.foreach Cycle

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

<{$arr .name}>

<{/foreach}>

  • Related Article

    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.