有关smarty的基本设置,以实例的方式,告诉大家常用的方法。
1、将lib文件夹导入项目中,改名字为smarty
2、编写配置程序,并建立相应的模板、编译、缓存文件夹
smarty_inc.php
include_once("smarty/Smarty.class.php");
$smarty=new Smarty();
$smarty->config_dir="smarty/Config_File.class.php";
$smarty->caching=false;
$smarty->template_dir="./templates";
$smarty->compile_dir="./templates_c";
$smarty->cache_dir="./smarty_cache";
$smarty->left_delimiter="{";
$smarty->right_delimiter="}";
?>
3、编写php文件
index.php
include("smarty_inc.php");
$name[]=array("name"=>"新闻第一条","date"=>"2008-1-1");
$name[]=array("name"=>"新闻第二条","date"=>"2008-2-1");
$name[]=array("name"=>"新闻第三条","date"=>"2008-3-1");
$row=array("标题","作者");
$smarty->assign("title",$name);
$smarty->assign("row",$row);
$smarty->display("index.html")
?>
4、在templates模板文件夹中编写index.html
index.html
{$row[0]}|{$row[1]}
{section name=list loop=$title}
<b><font color="red">
{$title[list].name}--{$title[list].date}
</font></b><br>
{/section}
</html>
5、使用变量操作符
index.php
include("smarty_inc.php");
$value="it is Work and, it Is video";
$smarty->assign("name",$value);
$smarty->display("index.html")
?>
index.html
原始内容 : {$name}<br>
{$name|capitalize}<br>
{$name|cat:"演示"}<br>
{$smarty.now|date_format:'%Y-%M-%D'};
{$name|repalce:"is":"***"};
{$name|truncate}
</html>
6、foreach
index.php
include("smarty_inc.php");
$value=array(4,5,6,7);
$value_key=array('a'=>"PHP",'b'=>"JAVA",'c'=>"C++");
$smarty->assign("name",$value);
$smarty->assign("name_key",$value_key);
$smarty->display("index.html")
?>
index.html
{include file="header.html"}
{foreach from=$name item=id}
数组内容: {$id}<br>
{/foreach}
{foreach from=$name item=id key=k}
数组内容: {$k}--{$id}<br>
{/foreach}
</html>
7、literal
当出现大括号,如使用javascript,可以用literal进行文本处理
8、strip
优化页面,使标签中的空格去掉。使 人不轻易盗用
9、缓存
基本配置:
include_once("smarty/Smarty.class.php");
$smarty=new Smarty();
$smarty->config_dir="smarty/Config_File.class.php";
$smarty->caching=true;
$smarty->template_dir="./templates";
$smarty->compile_dir="./templates_c";
$smarty->cache_dir="./smarty_cache";
$smarty->cache_lifetime=60;
$smarty->left_delimiter="{";
$smarty->right_delimiter="}";
?>
带ID的缓存
include("smarty_inc.php");
$id=$_GET[id];
$value=array(4,5,6,7);
$smarty->assign("name",$value);
$smarty->assign("id",$id);
$smarty->display("index.html",$id);
?>
清除缓存和局部缓存
include("smarty_inc.php");
$id=$_GET[id];
$value=array(4,5,6,7);
//使用insert的局部缓存:
function insert_shijian(){
return date("Y-m-d H:m:s");
}
$smarty->assign("name",$value);
$smarty->assign("id",$id);
$smarty->display("index.html",$id);
//删除带ID的缓存$smarty->clear_cache('index.html',$id);
//删除全部缓存$smarty->clear_all_cache();
?>
<html>
{insert name='shijian'}
</html>
第一种方法,最简单也是最不可靠的方法:
$iipp=$_SERVER["REMOTE_ADDR"];
echo $iipp;
?>
第二种方法:
<?php
$user_IP = ($_SERVER["HTTP_VIA"]) ? $_SERVER["HTTP_X_FORWARDED_FOR"] : $_SERVER["REMOTE_ADDR"];
$user_IP = ($user_IP) ? $user_IP : $_SERVER["REMOTE_ADDR"];
echo $user_IP;
?>
<?
function get_real_ip(){
$ip=false;
if(!empty($_SERVER["HTTP_CLIENT_IP"])){
$ip = $_SERVER["HTTP_CLIENT_IP"];
}
if (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
$ips = explode() (", ", $_SERVER['HTTP_X_FORWARDED_FOR']);
if ($ip) { array_unshift($ips, $ip); $ip = FALSE; }
for ($i = 0; $i < count($ips); $i++) {
if (!eregi ("^(10|172\.16|192\.168)\.", $ips[$i])) {
$ip = $ips[$i];
break;
}
}
}
return ($ip ? $ip : $_SERVER['REMOTE_ADDR']);
}
echo get_real_ip();
?>
第三处方法:
//php获取ip的算法
if ($HTTP_SERVER_VARS["HTTP_X_FORWARDED_FOR"])
{
$ip = $HTTP_SERVER_VARS["HTTP_X_FORWARDED_FOR"];
}
elseif ($HTTP_SERVER_VARS["HTTP_CLIENT_IP"])
{
$ip = $HTTP_SERVER_VARS["HTTP_CLIENT_IP"];
}
elseif ($HTTP_SERVER_VARS["REMOTE_ADDR"])
{
$ip = $HTTP_SERVER_VARS["REMOTE_ADDR"];
}
elseif (getenv("HTTP_X_FORWARDED_FOR"))
{
$ip = getenv("HTTP_X_FORWARDED_FOR");
}
elseif (getenv("HTTP_CLIENT_IP"))
{
$ip = getenv("HTTP_CLIENT_IP");
}
elseif (getenv("REMOTE_ADDR"))
{
$ip = getenv("REMOTE_ADDR");
}
else
{
$ip = "Unknown";
}
echo "你的IP:".$ip ;
?>
第四种方法:
if(getenv('HTTP_CLIENT_IP')) {
$onlineip = getenv('HTTP_CLIENT_IP');
} elseif(getenv('HTTP_X_FORWARDED_FOR')) {
$onlineip = getenv('HTTP_X_FORWARDED_FOR');
} elseif(getenv('REMOTE_ADDR')) {
$onlineip = getenv('REMOTE_ADDR');
} else {
$onlineip = $HTTP_SERVER_VARS['REMOTE_ADDR'];
}
echo $onlineip;
?>
<?php
/*************************************
参数说明:
$max_file_size : 上传文件大小限制, 单位BYTE
$destination_folder : 上传文件路径
$watermark : 是否附加水印(1为加水印,其他为不加水印);
使用说明:
1. 将PHP.INI文件里面的"extension=php_gd2.dll"一行前面的;号去掉,因为我们要用到GD库;
2. 将extension_dir =改为你的php_gd2.dll所在目录;
*******************/
//上传文件类型列表
$uptypes=array(
'image/jpg',
'image/jpeg',
'image/png',
'image/pjpeg',
'image/gif',
'image/bmp',
'image/x-png'
);
$max_file_size=2000000; //大约2M,上传文件大小限制, 单位BYTE
$destination_folder="uploadimg/"; //上传文件路径
$watermark=1; //是否附加水印(1为加水印,其他为不加水印);
$watertype=1; //水印类型(1为文字,2为图片)
$waterposition=1; //水印位置(1为左下角,2为右下角,3为左上角,4为右上角,5为居中);
$waterstring="JYS studio"; //水印字符串
$waterimg="xplore.gif";//水印图片
$imgpreview=1; //是否生成预览图(1为生成,其他为不生成);
$imgpreviewsize=1/2; //缩略图比例
?>
<html>
<head>
<title>ZwelL图片上传程序</title>
<style type="text/css">
<!--
body
{
font-size: 9pt;
}
input
{
background-color: yellow;
border: 1px inset #CCCCCC;
}
-->
</style>
</head>
<body>
<form enctype="multipart/form-data" method="post" name="upform">
上传文件:
<input name="upfile" type="file">
<input type="submit" value="上传"><br>
允许上传的文件类型为:<?=implode(', ',$uptypes)?> <!--将uptypes数组中的元素用','链接成字符串返回-->
</form>
<?php
if ($_SERVER['REQUEST_METHOD'] == 'POST')
{
//是否存在文件
if (!is_uploaded_file($_FILES["upfile"][tmp_name]))
{
echo "图片不存在!";
exit;
}
$file = $_FILES["upfile"];
//检查文件大小
if($max_file_size < $file["size"])
{
echo "文件太大!不能超过2M!";
exit;
}
//检查文件类型
if(!in_array($file["type"], $uptypes))
{
echo "文件类型不符!".$file["type"];
exit;
}
//上传到的文件夹不存在则自动创建
if(!file_exists($destination_folder))
{
mkdir($destination_folder);
}
$filename=$file["tmp_name"]; //系统自动生成的临时文件名
$filenamecustom = $file["name"]; //用户上传的文件名
$image_size = getimagesize($filename); //图像大小
$pinfo=pathinfo($file["name"]); //上传文件的路径信息
$ftype=$pinfo['extension']; //上传文件的扩展名
//$destination = $destination_folder.time().".".$ftype;//上传文件的目录+文件名+文件类型,文件名由time()生成
$destination = $destination_folder.$filenamecustom.".".$ftype;//上传文件的目录+用户文件名+文件类型
//检查同名文件是否存在
if (file_exists($destination) && $overwrite != true)
{
echo "同名文件已经存在了";
exit;
}
//移动文件到指定目录
if(!move_uploaded_file ($filename, $destination))
{
echo "移动文件出错";
exit;
}
$pinfo=pathinfo($destination); //上传到服务器上的文件的路径信息
$fname=$pinfo[basename]; //上传到服务器上的文件名
// echo " <font color=red>已经成功上传!</font><br>文件名: <font color=blue>".$destination_folder.$fname."</font><br>";
// echo " <font color=red>已经成功上传!</font><br>文件名: <font color=blue>".$destination."</font><br>";
echo " <font color=red>已经成功上传!</font><br>文件名: <font color=blue>".$destination_folder.$filenamecustom."</font><br>";
echo " 宽度:".$image_size[0];
echo " 长度:".$image_size[1];
echo "<br> 大小:".$file["size"]." bytes";
if($watermark==1)
{
$iinfo=getimagesize($destination,$iinfo); //取得图像大小、类型
$nimage=imagecreatetruecolor($image_size[0],$image_size[1]); //新建一个真彩色图像,返回一个图像标识符,
//代表了一幅大小为 x_size 和 y_size 的黑色图像。
$white=imagecolorallocate($nimage,255,255,255); //nimage分配颜色
$black=imagecolorallocate($nimage,0,0,0);
$red=imagecolorallocate($nimage,255,0,0);
imagefill($nimage,0,0,$white); //在 nimage 图像的坐标 x,y(图像左上角为 0, 0)处用 color 颜色执行区域填充
//(即与 x, y 点颜色相同且相邻的点都会被填充)。
/*
1 = GIF,2 = JPG,3 = PNG,4 = SWF,5 = PSD,6 = BMP,7 = TIFF(intel byte order),8 = TIFF(motorola byte order),
9 = JPC,10 = JP2,11 = JPX,12 = JB2,13 = SWC,14 = IFF,15 = WBMP,16 = XBM
*/
switch ($iinfo[2])
{
case 1:
$simage =imagecreatefromgif($destination); //从给定的文件名取得的图像
break;
case 2:
$simage =imagecreatefromjpeg($destination);
break;
case 3:
$simage =imagecreatefrompng($destination);
break;
case 6:
$simage =imagecreatefromwbmp($destination);
break;
default:
die("不支持的文件类型"); //Equivalent to exit()
exit;
}
imagecopy($nimage,$simage,0,0,0,0,$image_size[0],$image_size[1]);//将simage从0,0开始,$image_size[0]宽、$image_size[1]高
//的一部分拷贝到nimage中坐标为0,0的位置上
imagefilledrectangle($nimage,1,$image_size[1]-15,80,$image_size[1],$white);//在nimage 图像中用white颜色画一个左上角坐标为1,$image_size[1]-15
//右下角坐标为80,$image_size[1]的矩形
switch($watertype)
{
case 1: //加水印字符串
imagestring($nimage,2,3,$image_size[1]-15,$waterstring,$black);//用黑色将waterstring画到nimage的3,$image_size[1]-15坐标处,字体为内置字体2
break;
case 2: //加水印图片
$simage1 =imagecreatefromgif("xplore.gif");
imagecopy($nimage,$simage1,0,0,0,0,85,15);
imagedestroy($simage1); //释放与 simagel 关联的内存
break;
}
switch ($iinfo[2])
{
case 1:
//imagegif($nimage, $destination);
imagejpeg($nimage, $destination); //从 nimage 图像以 destination 为文件名创建一个 JPEG 图像。nimage 参数是 imagecreatetruecolor() 函数的返回值。
break;
case 2:
imagejpeg($nimage, $destination);
break;
case 3:
imagepng($nimage, $destination);
break;
case 6:
imagewbmp($nimage, $destination);
//imagejpeg($nimage, $destination);
break;
}
//释放内存
imagedestroy($nimage);
imagedestroy($simage);
}
if($imgpreview==1)
{
echo "<br>图片预览:<br>";
echo "<img src=/index.html"".$destination."\" width=".($image_size[0]*$imgpreviewsize)." height=".($image_size[1]*$imgpreviewsize);
echo " alt=\"图片预览:\r文件名:".$destination."\r上传时间:\">";
}
}
?>
</body>
</html>
您可能感兴趣的文章:
php 多图片上传的简单例子(图文)
php GD库上传图片并创建缩略图的代码
又一个生成图片缩略图的函数
一个创建图片缩略图的函数
php图片加水印与上传图片加水印类
php为图片加中文水印的代码
php上传图片并打上透明水印的代码
php 上传图片加水印且支持透明的代码
php上传图片功能的实现