fonction config_load

Fonction config_load

Comment utiliser :

Le fichier de configuration peut contenir plusieurs parties. Dans ce cas, vous pouvez utiliser la section d'attribut supplémentaire pour spécifier de quelle partie obtenir les variables.

. Remarque : dans le fichier de configuration, la section et la section de fonction intégrée du modèle portent simplement le même nom et n'ont rien à voir l'une avec l'autre.

eg:

test.html:

{config_load file="colors.conf" section="Customer"}
<html>
<title>{#pageTitle#}</title>
<body bgcolor="{#bodyBgColor#}">
<table border="{#tableBorderSize#}" bgcolor="{#tableBgColor#}">
<tr bgcolor="{#rowBgColor#}">
<td>First</td>
<td>Last</td>
<td>Address</td>
</tr>
</table>
</body>
</html>

colors.conf:

#注释
#段落变量
[Customer]
pageTitle='顾客表'
bodyBgColor='#00f'
tableBorderSize='1'
tableBgColor='skyblue'
rowBgColor='red'
tableBgColor='skyblue'
[Person]
pageTitle='所有人表'
bodyBgColor='#eee'
tableBorderSize='1'
tableBgColor='skyblue'
rowBgColor='red'
tableBgColor='skyblue'
[other]
other='这是其他'

Exécuter les résultats:

微信图片_20180313092919.png


Exécuter lorsque section="Personne" Résultat :

微信图片_20180313093218.png



Formation continue
||
<?php echo "config_load函数";
soumettreRéinitialiser le code
  • Recommandations de cours
  • Téléchargement du didacticiel