- 1、本文档共16页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Expect中文版教程
ecshopSQL语句
一些常用的函数如下:
1.获取单条记录
$GLOBALS[db]-getRow($sql);
2.获取单一字段
$GLOBALS[db]-getOne($sql);
例如查询产品总数:
echo $GLOBALS[db]-getOne(‘SELECT COUNT(*) FROM ‘ . $GLOBALS[ecs]-table(‘goods’) ;
3.获取所有记录
$GLOBALS[db]-getAll($sql);
4.执行sql语句
$GLOBALS[db]-query($sql);
//执行删除(DELETE),插入(INSERT),更新(UPDATE)等操作可用此方法
5.把数组元素插入数据库
$parent[goods_number] = ’1′;
$parent[parent_id] = 0;
$GLOBALS[db]-autoExecute($GLOBALS[ecs]-table(‘cart’), $parent, ‘INSERT’);
Smarty的配置:
include(“smarty/smarty.class.php”); //调用smarty配置文件,默认在smarty根目录下。
$smarty = new smarty(); //新建一个对象
$smarty-caching = false; //关闭缓存,有利于测试。如需开启缓存,改为true
$smarty-cache_lifetime = 60 //设置缓存存活时间,单位秒,必须把caching=true下才起作用
$smarty-config_dir = “./configs”; //设置配置文件目录
$smarty-template_dir = “./templates”; //设置模板目录
$smarty-compile_dir = “./templates_c”; //设置编译目录
$smarty-cache_dir = “./caches”; //设置缓存目录
$smarty-left_delimiter = “{“; //缓存左边界符
$smarty-right_delimiter = “}”; //缓存右边界符
Smarty的应用:
$smarty-assign(“模板变量”,”值/数组”);
$smarty-display(“模板名称”);
index.php的代码:
$value = “bluesdog say : learn smarty only 30 minutes”
$smarty-assign(“content”,$value); //进行模板变量替换
$smarty-display(“index.htm”) //该文件就是模板文件,应该在./templates模板目录下
index.htm的代码:
HTML
{if $content ne “”}
{$content}
{/if}
/HTML
Smarty的循环:
smarty共有2种循环函数,section循环多维数组,foreach循环一维简单数组。
section举例(参数name和loop必不可少,name=自定义循环名 loop=用来循环的变量):
{section loop=$stu}
{$stu[s].name}
{sectionelse}
无内容
{/section}
例:新闻列表循环
index.php代码:
include(“smarty_inc.php”); //smarty配置文件
$news[]=array(“title”=”新闻标题第一条”,”date”=”2009-01-01″);
$news[]=array(“title”=”新闻标题第二条”,”date”=”2009-01-02″);
$news[]=array(“title”=”新闻标题第三条”,”date”=”2009-01-03″);
$news[]=array(“title”=”新闻标题第四条”,”date”=”2009-01-04″);
$news[]=array(“title”=”新闻标题第五条”,”date”=”2009-01-05″);
$row=array(“标题”,”作者”,”当前页”);
$smarty-assign(“row”,$row);
$smarty-assign(“news”,$news);
$smarty-display(“index.htm”);
index.htm代码:
html
{$row[0]} | {$row[1]} | {$row[2]}
hr
ul
{section loop=$news}
li
{$news[list].title}-{$news[list].date}
/li
{/section}
/ul
/ht
文档评论(0)