亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

?? ??

capture ??

???:

{capture name="foo"}? {/capture} ??? ?? ???? ?? ?? ???? ???? $foo ??? ?????.
???? ??????. $smarty.capture.foo? ? ??? ?????.
name ??? ???? ??? ??? ????? "default"? ?????.
{capture}? ??? ???? ???. ?, ? ??? ??? ? ????.


test.html:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>{#pageTitle#}</title>
</head>
<body>
{capture name=banner}
{include file="./test1.html"}
{/capture}
{$smarty.capture.banner}
</body>
</html>

test1.html:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    1111111111111111
</body>
</html>

?? ??:

1111111111111111

???? ??
||
<?php echo "capture函數(shù)";