smarty中post用法实例_php实例

本文实例讲述了smarty中post用法。分享给大家供大家参考。具体分析如下:

知道了smarty的运行原理之后,就想写个post的实现过程,以下是实现post的代码,跟独自写php代码差不多,只是多了显示文件

配置文件:conf.php

复制代码 代码如下:

<?php 
@header("Content-type: text/html; charset=UTF-8"); 
require '../libs/Smarty.class.php'; 
$my=new Smarty; 
$my->template_dir ='templates/'; 
$my->compile_dir ='templates_c/'; 
$my->config_dir ='configs/'; 
$my->cache_dir ='cache/'; 
?>

index.php

复制代码 代码如下:

<?php 
include 'conf.php'; 
$my->assign('content','welcome to arrival'); 
$my->assign('mylife',array("生活","吃饭","梦想","凉风","报仇","fuck someone","fuck you die")); 
$my->display('kk.html'); 
?>

template下的kk.html【index.php的显示文件】

复制代码 代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<title>无标题文档</title> 
</head> 
<body> 
{$content} 
{section name=truelife loop=$mylife} 
{$mylife[truelife]} 
{/section} 
  <p>{html_select_time use_24_hours=true} </p> 
  <form id="form1" name="form1" method="post" action="submit.php"> 
  <p> 
    <label for="conteng"></label> 
    <input type="text" name="conteng" id="conteng" /> 
  </p> 
  <p> 
    <label for="ct"></label> 
    <textarea name="ct" id="ct" cols="45" rows="5"></textarea> 
  </p> 
    <input type="submit" name="submit" id="submit" value="提交" /> 
</form> 
  <p> </p> 
</body> 
</html>

submit.php

复制代码 代码如下:

<?php 
 include 'conf.php'; 
 $kk=$_POST['conteng']; 
 $ct=$_POST['ct']; 
 $sm=new Smarty(); 
 $sm->assign('content',$kk);  
 $k=explode("\r\n",$ct);  //将字符分隔为数组 
 $sm->assign('ml',$k); 
 $sm->display('m.tpl'); 
?>

template下的m.tpl文件【submit.php的显示文件】

复制代码 代码如下:

{$content} 
{section name=kk loop=$ml} 
{$ml[kk]}<br /> 
{/section}

希望本文所述对大家的smarty程序设计有所帮助。

时间: 2024-09-28 23:48:31

smarty中post用法实例_php实例的相关文章

Yii2中SqlDataProvider用法示例_php实例

本文实例讲述了Yii2中SqlDataProvider用法.分享给大家供大家参考,具体如下: 第一种方法: $totalCount = Yii::$app->db->createCommand('SELECT COUNT(*) FROM posts WHERE publish=:publish', [':publish' => 1]) ->queryScalar(); $dataProvider = new SqlDataProvider([ 'sql' => 'SELECT

Smarty保留变量用法分析_php实例

本文实例讲述了Smarty保留变量用法.分享给大家供大家参考,具体如下: {$smarty}变量无需分配,它可以直接在模板中,用于访问一些特殊的模板变量,有很多变量,比如说:页面请求变量$_GET,$_POST,$_REQUEST,$_SESSION,$_COOKIE,还有一些比如说环境变量$_ENV,$_SERVER,它们可以直接通过如下方式来获取: {$smarty.get} 同$_GET获取url参数 如:$_GET['page']  通过{$smarty.get.page}获取 {$sm

ThinkPHP中redirect用法分析_php实例

本文实例讲述了ThinkPHP中redirect用法.分享给大家供大家参考.具体分析如下: redirect 重定向的通用语法为:redirect(url,params=array(),delay=0,msg=''),假设当前为默认 HOME分组 Aritcle模块 insert操作,一些例子如下: 复制代码 代码如下: // 跳转到 edit 操作   $this->redirect('edit');   // 跳转到 UserAction下的edit 操作   $this->redirec

symfony2.4的twig中date用法分析_php实例

本文实例讲述了symfony2.4的twig中date用法.分享给大家供大家参考,具体如下: 获得当前时间: {{ "now"|date("Y-m-d") }} //2014-03-06 获得三天后的时间 {{ "+3 day"|date('Y-m-d') }} //2014-03-09 //或者 date('+3days') //2014-03-09 对twig中的变量进行处理: {{ var|date("Y-m-d") }

PHP模板引擎Smarty中的保留变量用法分析_php实例

本文实例讲述了PHP模板引擎Smarty中的保留变量用法.分享给大家供大家参考,具体如下: 在 Smarty 中,有一些保留变量,它们是不需要 PHP 脚本去分配就可以直接使用,即不用使用 $_tpl->assign('var','value') 去分配. 1.在模板中访问页面请求的变量 {$smarty.get.user} == $_GET['user'] {$smarty.post.user} == $_POST['user'] {$smarty.cookie.username} == $_

php中smarty模板条件判断用法实例_php实例

本文实例讲述了php中smarty模板条件判断用法.分享给大家供大家参考.具体实现方法如下: 模板文件test6.html代码: <html> <head> <title>Smarty Test</title> </head> <body> <table width="200" border="0"> {if $cond == 1} <tr> <td>条件成立

PHP模板引擎Smarty内建函数foreach,foreachelse用法分析_php实例

本文实例讲述了PHP模板引擎Smarty内建函数foreach,foreachelse用法.分享给大家供大家参考,具体如下: 在 Smarty 模板中,您可以使用 foreach 来重复一个区块.而在模板中则需要从 PHP 中分配过来一个数组.这个数组可以是多维数组.Smarty 中 {foreach} 标记和 PHP 中 foreach 相同,不同的是它们的一个在模板文件中使用,一个在 PHP 脚本中使用.因此,语法会不同.但是,它们的作用都是相同的,即遍历数组中的内容.与 {foreach}

thinkphp中的url跳转用法分析_php实例

本文实例分析了thinkphp中的url跳转用法.分享给大家供大家参考,具体如下: 最先想到的是a标签里面的target属性,_blank时,可以在新的lab窗体中打开新的页面 但是现在要在php文件里面跳转, $this->redirect('/Supperman/outerMan'); $this->display('Supperman:outerMan'); 这两者都只是在当前页面打开新的页面 然后又试了一下: header('Location:'.U('/Supperman/outer

thinkphp3.x中cookie方法的用法分析_php实例

本文实例分析了thinkphp3.x中cookie方法的用法.分享给大家供大家参考,具体如下: 一.cookie函数也是一个多元化操作函数,完成cookie的设置.获取和删除操作. Cookie 用于Cookie 设置.获取.删除操作: 用法: cookie($name, $value='', $option=null) 参数:  name(必须):要操作的cookie变量 value(可选):要设置的cookie值 option(可选):传入的cookie设置参数,默认为空 返回值 见详(根据