当前位置: 编程技术>php
本页文章导读:
▪动态新闻发布的实现及其技巧
做网站要做的有一定的规模,动态的新闻发布是必不可少的。实现的方法有很多,这里建议用文本文件来生成,又快又简单省事。好吧,让我们立即着手工作吧。 首先,我们假设已经有一.........
▪最简单的PHP程序--记数器
原理: 1.第一位使用者浏览某页。 2.伺服器程式从资料库或档案中读取该页被浏览次数。 3.将次数加一储存,并将它送回第一位使用者。 4.第二位使用者浏览某页。 5.伺服器程式从资料库.........
▪用PHP产生动态的影像图
很多人不了解 PHP 可以产生非HTML的资料.这是对产生影像图非常有用的.可以从 database 产生一个简单的广告横图或更简单只产生一个图形按钮 . 我用 TTF 字型在以下的范例中 我通常取名作.........
[1]动态新闻发布的实现及其技巧
来源: 互联网 发布时间: 2013-11-30
做网站要做的有一定的规模,动态的新闻发布是必不可少的。实现的方法有很多,这里建议用文本文件来生成,又快又简单省事。好吧,让我们立即着手工作吧。
首先,我们假设已经有一个文件夹名为 "news",在"c://news"下,用来存储新闻的文本。并且我们假设这些文本的名字就是所要发布的新闻的标题。
1,首先,我们限读取文件夹的指针。
$handle=dir("c://news");
2,用一个while语句,获取各个文本文件的指针,并且将其一个一个的输出。
while($file=$handle->read())
{
echo $file;
}
3,当完成2的操作后,从IIS观察结果的输出,发现页面上除了列举所有文本文件的名称外,还会多出两个“奇怪的符号”。
。
。。
这两个标识的来源不是我们今天讨论的范围,但他们的出现会影响我们网页的“新闻发布”所以在显示的时候还是建议用一个if语句将他们skip掉。
4,用chop()来去掉文件名后面的".txt"
$filename=chop($file,".");
这样,$filename[0]就是我们要求的新闻的标题了。
5,完成显示后就要做链接了。我们假设处理显示新闻的文件为 show.php;
总结以上,我们可以这样书写程序
<?
$handle=dir("c://news");
while($file=$handle->read())
{
if(($file!='.')&&($file!='..'))
{
$filename=chop($file,".");
echo "<a href='/blog_article/show.html'?id=$filename[0]> filename[0] </a> ";
}
?>
再以后就是在网页上输出文本的工作了,这方面的说明已经很多。我就不再重复了。
首先,我们假设已经有一个文件夹名为 "news",在"c://news"下,用来存储新闻的文本。并且我们假设这些文本的名字就是所要发布的新闻的标题。
1,首先,我们限读取文件夹的指针。
$handle=dir("c://news");
2,用一个while语句,获取各个文本文件的指针,并且将其一个一个的输出。
while($file=$handle->read())
{
echo $file;
}
3,当完成2的操作后,从IIS观察结果的输出,发现页面上除了列举所有文本文件的名称外,还会多出两个“奇怪的符号”。
。
。。
这两个标识的来源不是我们今天讨论的范围,但他们的出现会影响我们网页的“新闻发布”所以在显示的时候还是建议用一个if语句将他们skip掉。
4,用chop()来去掉文件名后面的".txt"
$filename=chop($file,".");
这样,$filename[0]就是我们要求的新闻的标题了。
5,完成显示后就要做链接了。我们假设处理显示新闻的文件为 show.php;
总结以上,我们可以这样书写程序
<?
$handle=dir("c://news");
while($file=$handle->read())
{
if(($file!='.')&&($file!='..'))
{
$filename=chop($file,".");
echo "<a href='/blog_article/show.html'?id=$filename[0]> filename[0] </a> ";
}
?>
再以后就是在网页上输出文本的工作了,这方面的说明已经很多。我就不再重复了。
[2]最简单的PHP程序--记数器
来源: 互联网 发布时间: 2013-11-30
原理:
1.第一位使用者浏览某页。
2.伺服器程式从资料库或档案中读取该页被浏览次数。
3.将次数加一储存,并将它送回第一位使用者。
4.第二位使用者浏览某页。
5.伺服器程式从资料库或档案中读取该页被浏览次数。
6.将次数再加一储存,并将它送回第二位使用者。
需要了解的函数:
fopen()打开文件
filesize()获得文件大小
fseek()移动文件指针
fgets()得到文件指针所在行内容
fputs()将字串写如文件指针所在位置
fclose()关闭文件
file_exists()判断文件是否存在
exec()执行外部程序
最简单的记数器:
<html>
<head>
<title>访客计数器 原型</title>
</head>
<body>
<?php
/*
(c)1998 David W. Bettis
这里是版权信息
*/
$counterFile = "counter.txt";
#这里是定义记数器文件
function displayCounter($counterFile) {
$fp = fopen($counterFile,"rw");
#打开文件,用读写方式
$num = fgets($fp,5);
#取得当前数字
$num += 1;
#加1
print "您是第 "."$num"." 位无聊份子";
exec( "rm -rf $counterFile");
exec( "echo $num > $counterFile");
#偷懒的方式哦,不使用fputs写入
}
if (!file_exists($counterFile)) {
exec( "echo 0 > $counterFile");
}#如果记数器文件不存在,新建它并设置内容为0
displayCounter($counterFile);
?>
</body>
</html>
PHP记数器比较简单版:
<?
#版权没有啦,这么简单
$fp=fopen("counter.txt","r+");
flock($fp,3);
#打开记数器文件并锁住
$fsize=filesize("count.txt");
$count=fgets($fp,$fsize+1);
$count++;
#取得数码并加一
fseek($fp,0);
fputs($fp,$count);
fclose($fp);
#将新数码写入文件
echo "你是第 $count 位访问者";
?>
PHP记数器图形版:
制作10个图片,将数字串用图片组起来,我就不细说了
假设图片为0.gif ~ 9.gif
<?
....$count为取得的数值
$strcount=strval($count);
$strcount=chop($strcount);
$countlen=$strlen($strcount);
$shtml="";
for ($i=0; $i<$countlen; $i++) {
$shtml.="<img src='";
$shtml.=$strcount[$i];
$shtml.=".gif'>";
}
echo $shtml;
?>
PHP记数器数据库版:
使用SQL记数器,先建好表
CREATE TABLE counter
(
counter int not null,
id int not null
)
INSERT INTO counter(counter,id) VALUE(0,1)
<?
$conn=mysql_connect(..., ..., ...);
#MySQL数据库连接
$sql="select * from counter";
$result=mysql_query($sql,$conn);
$objresult=mysql_fetch_object($result);
$count=$objresult->counter;
$count++;
$sql="update counter set counter=".$count."where id=1";
mysql_query($sql,$conn);
mysql_close($conn);
echo "你是第$count位访客";
?>
1.第一位使用者浏览某页。
2.伺服器程式从资料库或档案中读取该页被浏览次数。
3.将次数加一储存,并将它送回第一位使用者。
4.第二位使用者浏览某页。
5.伺服器程式从资料库或档案中读取该页被浏览次数。
6.将次数再加一储存,并将它送回第二位使用者。
需要了解的函数:
fopen()打开文件
filesize()获得文件大小
fseek()移动文件指针
fgets()得到文件指针所在行内容
fputs()将字串写如文件指针所在位置
fclose()关闭文件
file_exists()判断文件是否存在
exec()执行外部程序
最简单的记数器:
<html>
<head>
<title>访客计数器 原型</title>
</head>
<body>
<?php
/*
(c)1998 David W. Bettis
这里是版权信息
*/
$counterFile = "counter.txt";
#这里是定义记数器文件
function displayCounter($counterFile) {
$fp = fopen($counterFile,"rw");
#打开文件,用读写方式
$num = fgets($fp,5);
#取得当前数字
$num += 1;
#加1
print "您是第 "."$num"." 位无聊份子";
exec( "rm -rf $counterFile");
exec( "echo $num > $counterFile");
#偷懒的方式哦,不使用fputs写入
}
if (!file_exists($counterFile)) {
exec( "echo 0 > $counterFile");
}#如果记数器文件不存在,新建它并设置内容为0
displayCounter($counterFile);
?>
</body>
</html>
PHP记数器比较简单版:
<?
#版权没有啦,这么简单
$fp=fopen("counter.txt","r+");
flock($fp,3);
#打开记数器文件并锁住
$fsize=filesize("count.txt");
$count=fgets($fp,$fsize+1);
$count++;
#取得数码并加一
fseek($fp,0);
fputs($fp,$count);
fclose($fp);
#将新数码写入文件
echo "你是第 $count 位访问者";
?>
PHP记数器图形版:
制作10个图片,将数字串用图片组起来,我就不细说了
假设图片为0.gif ~ 9.gif
<?
....$count为取得的数值
$strcount=strval($count);
$strcount=chop($strcount);
$countlen=$strlen($strcount);
$shtml="";
for ($i=0; $i<$countlen; $i++) {
$shtml.="<img src='";
$shtml.=$strcount[$i];
$shtml.=".gif'>";
}
echo $shtml;
?>
PHP记数器数据库版:
使用SQL记数器,先建好表
CREATE TABLE counter
(
counter int not null,
id int not null
)
INSERT INTO counter(counter,id) VALUE(0,1)
<?
$conn=mysql_connect(..., ..., ...);
#MySQL数据库连接
$sql="select * from counter";
$result=mysql_query($sql,$conn);
$objresult=mysql_fetch_object($result);
$count=$objresult->counter;
$count++;
$sql="update counter set counter=".$count."where id=1";
mysql_query($sql,$conn);
mysql_close($conn);
echo "你是第$count位访客";
?>
[3]用PHP产生动态的影像图
来源: 互联网 发布时间: 2013-11-30
很多人不了解 PHP 可以产生非HTML的资料.这是对产生影像图非常有用的.可以从 database 产生一个简单的广告横图或更简单只产生一个图形按钮 .
我用 TTF 字型在以下的范例中
我通常取名作 'button.php3':
#######################################################
-----button.php3------
<?
Header("Content-type: image/gif");
if(!isset($s)) $s=11;
$size = imagettfbbox($s,0,"fonts/TIMES.TTF",$text);
$dx = abs($size[2]-$size[0]);
$dy = abs($size[5]-$size[3]);
$xpad=9;
$ypad=9;
$im = imagecreate($dx+$xpad,$dy+$ypad);
$blue = ImageColorAllocate($im, 0x2c,0x6D,0xAF);
$black = ImageColorAllocate($im, 0,0,0);
$white = ImageColorAllocate($im, 255,255,255);
ImageRectangle($im,0,0,$dx+$xpad-1,$dy+$ypad-1,$black);
ImageRectangle($im,0,0,$dx+$xpad,$dy+$ypad,$white);
ImageTTFText($im, $s, 0, (int)($xpad/2)+1, $dy+(int)($ypad/2), $black, "fonts/TIMES.TTF", $text);
ImageTTFText($im, $s, 0, (int)($xpad/2), $dy+(int)($ypad/2)-1, $white, "fonts/TIMES.TTF", $text);
ImageGif($im);
ImageDestroy($im);
?>
#######################################################
很重要一点是你不能在这档案中放任何HTML tags.也不能有空白行在 <?和 ?> tag 之前或之後. 如果你用这段Script後看到一个不完整的影像, 表示你可能在PHP标签以外误打了字元.
以上的 script 可以由此语法在网页中叫出来: <IMG SRC="/blog_article/button/s/36/amp;text/PHP is Cool.html">
#######################################################
----test.php-----
<html>
<head>
<META HTTP-EQUIV="content-type" CONTENT="text/html; charset=gb2312">
<title>New Page 1</title>
</head>
<body>
<IMG SRC="/blog_article/button/s/36/amp;text/PHP is Cool.html">
</body>
</html>
#######################################################
test.php结果会像这样: .
's' 参数是设定字型大小 .
这是当 s=18 时:
注I:
字型路径 "/fonts/TIMES.TTF" 可由windows/fonts目录下取得 TIMS.TTF 字型档 Copy 至你网站的目录 fonts下即可测试 至於中文的表现 尚待各位网友提供心得
注意 我先画了一个黑色方块区再用白色位移产生 3D 效果.也陬L法在浅色背景中看出来 但你可以把背景色改为深色看看此效果. 字型也做了同样效果表现立体感.
你要先确定你的安装 PHP 时有设定支援 GD 和 TTF. 可参考 PHP FAQ . 我建议可以 copy libgd.a 到 /usr/local/lib 和 gd*.h 相关档案到 /usr/local/include 然後
'make install' for FreeTTF library.
可以在这http://rover.wiesbaden.netsurf.de/~kikita/ 找到钗httf 字型哦!
注:
以下的原始码改进了上面的弁?可多行文字显示:
#######################################################
--------------button.php-----------------
<?
Header("Content-type: image/jpeg");
if(!isset($bgred)) $bgred=0;
if(!isset($bggreen)) $bggreen=51;
if(!isset($bgblue)) $bgblue=153;
if(!isset($chred)) $chred=255;
if(!isset($chgreen)) $chgreen=255;
if(!isset($chblue)) $chblue=255;
if(!isset($shadow)) $shadow="yes";
if(!isset($wrappos)) $wrappos=20;
if(!isset($crop)) $crop=2.2;
if(!isset($jpegquality)) $jpegquality=80;
if(!isset($s)) $s=11;
$savetext=$text;
$text=wordwrap($text,$wrappos," ",0);
if (!isset($font)) $fontname="/www/ttfonts/arialbd.ttf";
else
$fontname="/www/ttfonts/".$font.".ttf";
$size = imagettfbbox($s,0,$fontname,$text);
$dx = abs($size[2]-$size[0]);
$dy = abs($size[5]-$size[3]);
$upper=abs($size[5]);
$under=$size[1];
$th=$upper-$under;
$xpad=9;
if (substr_count($text,chr(13))>=1)
{
$mult=(substr_count($text,chr(13)));
$ypad=($mult*$crop*$s)+$s;
}
else $ypad=($crop-2)*$s;
$im = imagecreate($dx+$xpad,$th+$ypad);
$color = ImageColorAllocate($im, $bgred,$bggreen,$bgblue);
$black = ImageColorAllocate($im, 0,0,0);
$fontcolor = ImageColorAllocate($im, $chred,$chgreen,$chblue);
ImageRectangle($im,0,0,$dx+$xpad-1,$th+$ypad-1,$black);
ImageRectangle($im,0,0,$dx+$xpad,$th+$ypad,$white);
if ($shadow=="yes")
ImageTTFText($im, $s, 0, (int)($xpad/2)-2+1, $th+2+(int)($ypad/2)-3, $black, $fontname, $text);
ImageTTFText($im, $s, 0, (int)($xpad/2)-2, $th+2+(int)($ypad/2)-1-3, $fontcolor, $fontname, $text);
Imagejpeg($im,"",$jpegquality);
ImageDestroy($im);
?>
#######################################################
这可以下面这个 form 来产生:
#######################################################
----------test.php--------------------
<html>
<head>
<title>New Page 1</title>
</head>
<body>
<form method="POST" action="/blog_article/button.html">
<p>文字<input type="text" name="text" size="60"></p>
<p>大小<input type="text" name="s" size="6" value="14"></p>
<p>断句的位置(wrap break position) <input type="text" name="wrappos" size="3" value="20"></p>
<p>背景颜色</p>
<p>红色<input type="text" name="bgred" size="6" value="0">
绿色<input type="text" name="bggreen" size="8" value="51">
蓝色<input type="text" name="bgblue" size="7" value="153"></p>
<p>字元颜色</p>
<p>红色 <input type="text" name="chred" size="6" value="255">
绿色 <input type="text" name="chgreen" size="8" value="255">
蓝色 <input type="text" name="chblue" size="7" value="255"></p>
<p>字型 <input type="text" name="font" size="20" value="arialbd"></p>
<p>阴影 <input type="radio" value="yes" checked name="shadow">是
<input type="radio" name="shadow" value="no">否</p>
<p>Crop size <input type="text" name="crop" size="20" value="2.2"></p>
<p>Jpeg 品质 (0-100) <input type="text" name="jpegquality" size="20" value="80"></p>
<p><input type="submit" value="Submit" name="B1">
<input type="reset" value="Reset" name="B2"></p>
</form>
</body>
</html>
#######################################################
或是直接像上例一样呼叫:
#######################################################
----test.php-----
<html>
<head>
<title>New Page 1</title>
</head>
<body>
<IMG SRC="/blog_article/button/s/36/amp;text/PHP is Cool.html">
</body>
</html>
我用 TTF 字型在以下的范例中
我通常取名作 'button.php3':
#######################################################
-----button.php3------
<?
Header("Content-type: image/gif");
if(!isset($s)) $s=11;
$size = imagettfbbox($s,0,"fonts/TIMES.TTF",$text);
$dx = abs($size[2]-$size[0]);
$dy = abs($size[5]-$size[3]);
$xpad=9;
$ypad=9;
$im = imagecreate($dx+$xpad,$dy+$ypad);
$blue = ImageColorAllocate($im, 0x2c,0x6D,0xAF);
$black = ImageColorAllocate($im, 0,0,0);
$white = ImageColorAllocate($im, 255,255,255);
ImageRectangle($im,0,0,$dx+$xpad-1,$dy+$ypad-1,$black);
ImageRectangle($im,0,0,$dx+$xpad,$dy+$ypad,$white);
ImageTTFText($im, $s, 0, (int)($xpad/2)+1, $dy+(int)($ypad/2), $black, "fonts/TIMES.TTF", $text);
ImageTTFText($im, $s, 0, (int)($xpad/2), $dy+(int)($ypad/2)-1, $white, "fonts/TIMES.TTF", $text);
ImageGif($im);
ImageDestroy($im);
?>
#######################################################
很重要一点是你不能在这档案中放任何HTML tags.也不能有空白行在 <?和 ?> tag 之前或之後. 如果你用这段Script後看到一个不完整的影像, 表示你可能在PHP标签以外误打了字元.
以上的 script 可以由此语法在网页中叫出来: <IMG SRC="/blog_article/button/s/36/amp;text/PHP is Cool.html">
#######################################################
----test.php-----
<html>
<head>
<META HTTP-EQUIV="content-type" CONTENT="text/html; charset=gb2312">
<title>New Page 1</title>
</head>
<body>
<IMG SRC="/blog_article/button/s/36/amp;text/PHP is Cool.html">
</body>
</html>
#######################################################
test.php结果会像这样: .
's' 参数是设定字型大小 .
这是当 s=18 时:
注I:
字型路径 "/fonts/TIMES.TTF" 可由windows/fonts目录下取得 TIMS.TTF 字型档 Copy 至你网站的目录 fonts下即可测试 至於中文的表现 尚待各位网友提供心得
注意 我先画了一个黑色方块区再用白色位移产生 3D 效果.也陬L法在浅色背景中看出来 但你可以把背景色改为深色看看此效果. 字型也做了同样效果表现立体感.
你要先确定你的安装 PHP 时有设定支援 GD 和 TTF. 可参考 PHP FAQ . 我建议可以 copy libgd.a 到 /usr/local/lib 和 gd*.h 相关档案到 /usr/local/include 然後
'make install' for FreeTTF library.
可以在这http://rover.wiesbaden.netsurf.de/~kikita/ 找到钗httf 字型哦!
注:
以下的原始码改进了上面的弁?可多行文字显示:
#######################################################
--------------button.php-----------------
<?
Header("Content-type: image/jpeg");
if(!isset($bgred)) $bgred=0;
if(!isset($bggreen)) $bggreen=51;
if(!isset($bgblue)) $bgblue=153;
if(!isset($chred)) $chred=255;
if(!isset($chgreen)) $chgreen=255;
if(!isset($chblue)) $chblue=255;
if(!isset($shadow)) $shadow="yes";
if(!isset($wrappos)) $wrappos=20;
if(!isset($crop)) $crop=2.2;
if(!isset($jpegquality)) $jpegquality=80;
if(!isset($s)) $s=11;
$savetext=$text;
$text=wordwrap($text,$wrappos," ",0);
if (!isset($font)) $fontname="/www/ttfonts/arialbd.ttf";
else
$fontname="/www/ttfonts/".$font.".ttf";
$size = imagettfbbox($s,0,$fontname,$text);
$dx = abs($size[2]-$size[0]);
$dy = abs($size[5]-$size[3]);
$upper=abs($size[5]);
$under=$size[1];
$th=$upper-$under;
$xpad=9;
if (substr_count($text,chr(13))>=1)
{
$mult=(substr_count($text,chr(13)));
$ypad=($mult*$crop*$s)+$s;
}
else $ypad=($crop-2)*$s;
$im = imagecreate($dx+$xpad,$th+$ypad);
$color = ImageColorAllocate($im, $bgred,$bggreen,$bgblue);
$black = ImageColorAllocate($im, 0,0,0);
$fontcolor = ImageColorAllocate($im, $chred,$chgreen,$chblue);
ImageRectangle($im,0,0,$dx+$xpad-1,$th+$ypad-1,$black);
ImageRectangle($im,0,0,$dx+$xpad,$th+$ypad,$white);
if ($shadow=="yes")
ImageTTFText($im, $s, 0, (int)($xpad/2)-2+1, $th+2+(int)($ypad/2)-3, $black, $fontname, $text);
ImageTTFText($im, $s, 0, (int)($xpad/2)-2, $th+2+(int)($ypad/2)-1-3, $fontcolor, $fontname, $text);
Imagejpeg($im,"",$jpegquality);
ImageDestroy($im);
?>
#######################################################
这可以下面这个 form 来产生:
#######################################################
----------test.php--------------------
<html>
<head>
<title>New Page 1</title>
</head>
<body>
<form method="POST" action="/blog_article/button.html">
<p>文字<input type="text" name="text" size="60"></p>
<p>大小<input type="text" name="s" size="6" value="14"></p>
<p>断句的位置(wrap break position) <input type="text" name="wrappos" size="3" value="20"></p>
<p>背景颜色</p>
<p>红色<input type="text" name="bgred" size="6" value="0">
绿色<input type="text" name="bggreen" size="8" value="51">
蓝色<input type="text" name="bgblue" size="7" value="153"></p>
<p>字元颜色</p>
<p>红色 <input type="text" name="chred" size="6" value="255">
绿色 <input type="text" name="chgreen" size="8" value="255">
蓝色 <input type="text" name="chblue" size="7" value="255"></p>
<p>字型 <input type="text" name="font" size="20" value="arialbd"></p>
<p>阴影 <input type="radio" value="yes" checked name="shadow">是
<input type="radio" name="shadow" value="no">否</p>
<p>Crop size <input type="text" name="crop" size="20" value="2.2"></p>
<p>Jpeg 品质 (0-100) <input type="text" name="jpegquality" size="20" value="80"></p>
<p><input type="submit" value="Submit" name="B1">
<input type="reset" value="Reset" name="B2"></p>
</form>
</body>
</html>
#######################################################
或是直接像上例一样呼叫:
#######################################################
----test.php-----
<html>
<head>
<title>New Page 1</title>
</head>
<body>
<IMG SRC="/blog_article/button/s/36/amp;text/PHP is Cool.html">
</body>
</html>
最新技术文章: