Smarty Icon

You may use the Smarty logo according to the trademark notice.

Smarty Template Engine Smarty Template Engine

For sponsorship, advertising, news or other inquiries, contact us at:

Sites Using Smarty

Advertisement

Name

testInstall() — 测试Smarty安装

说明

void testInstall();

该函数测试Smarty需要的全部工作目录是否可以读写。 该函数显示一个格式化的结果。

Example 14.52. testInstall()


<?php
require_once('Smarty.class.php');
$smarty  = new Smarty();
$smarty->testInstall();
?>