Utilisation sim...LOGIN

Utilisation simple des tableaux

Utilisation des tableaux par Smarty : array[subscript], array.subscript

Modifier le fichier test.php :

<?php
require "./libs/Smarty.class.php";
$smarty = new Smarty;
$smarty->assign('address',
    array('0', '1',
        array('2--0',
            '2--1')));
$smarty->display('./templates/test.html');

Modifier test.html:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>test</title>
</head>
<body>
<!--html的注释-->
{*smarty模板的注释*}
<!--{assign var='add'  value='www.php.cn'}-->
我们网站的网址是:{$address[2][0]}<br>
我们网站的网址是:{$address.2.0}
</body>
</html>

L'affichage est le suivant :

微信图片_20180312151514.png

section suivante
<?php echo "数组的简单使用";
soumettreRéinitialiser le code
chapitredidacticiel