只需要一种方法来用中文将以下句子重新表达:在CentOS上安装Smarty
由于不熟悉Linux环境,我希望保留下这个简单的尝试方法。假设PHP已经安装。版本等详细需求,请参考官方确认。
若没有wget和unzip,需找到获取的方法。
# yum -y install wget
# yum -y install unzip
文件夹移动
# cd /usr/local/lib
下载Smarty
# wget https://github.com/smarty-php/smarty/archive/master.zip
解冻
# unzip master.zip
请将下面的PHP代码放在文档根目录下
<?php
require_once('/usr/local/lib/smarty-master/libs/Smarty.class.php');
$smarty = new Smarty();
?>
访问
如果访问 http://ルートURL/test.php 没有出现错误,那就好!
结束
如果您真的想要部署此开发环境,我认为需要进行各种设置。
请参考以下链接了解如何在Smarty中进行基本的安装:
https://www.smarty.net/docsv2/zh-cn/installing.smarty.basic.tpl