当前位置: 编程技术>php
本页文章导读:
▪php彩色验证码的简单例子 彩色验证码示例:
<?php
/**
* php 彩色验证码
* site www.
*/
header("Content-type: image/png,charset='utf-8'");
$im = imagecreatetruecolor(400, 30);
//白色
$white = imagecolorallocate($im, 255, 255, 255);
//红色
$red = i.........
▪php删除txt文档中的指定行 代码如下:
<!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>
<title>php删除txt文档中的指.........
▪php判断字符编码的二个方法 方法1,使用mb_detect_encoding函数。
<?php
$str=”,欢迎大家的光临。”;
echo mb_detect_encoding($str);
?>
方法2,自定义函数。
<?php
function chkbm($string){
$bm = array(‘ASCII’, ‘GBK’, ‘UTF-8.........
[1]php彩色验证码的简单例子
来源: 互联网 发布时间: 2013-12-24
彩色验证码示例:
<?php /** * php 彩色验证码 * site www. */ header("Content-type: image/png,charset='utf-8'"); $im = imagecreatetruecolor(400, 30); //白色 $white = imagecolorallocate($im, 255, 255, 255); //红色 $red = imagecolorallocate($im, 255, 0, 0); //黑色 $black=imagecolorallocate($im, 0, 0, 0); //绿色 $green=imagecolorallocate($im, 0, 255, 0); //蓝色 $blue=imagecolorallocate($im, 0, 0, 255); $color_arr=array($green,$blue,$red); $color=array_rand($color_arr); $text = '我靠这验证码太变态啦'; $textlen=iconv_strlen($text,'utf-8');//计算字符串长度 //随机截取两个字符,变色显示 $p1=rand(1,$textlen)-1; while(($p2=rand(1,$textlen)-1)==$p1); $w1=iconv_substr($text,$p1,1,'utf-8'); $w2=iconv_substr($text,$p1,1,'utf-8'); //字体文件 $font = 'simkai.ttf'; imagefilledrectangle($im, 0, 0, 399, 29, $white); for($i=0;$i<$textlen;$i++) { if($i==$p1||$i==$p2) { imagettftext($im, 15, 0, 20*($i-1)+20, 20, $color_arr[$color], $font, iconv_substr($text,$i,1,'utf-8')); } else { imagettftext($im, 15, 0, 20*($i-1)+20, 20, $black, $font, iconv_substr($text,$i,1,'utf-8')); } } imagepng($im); imagedestroy($im); ?>
以上就是彩色验证码的实现代码,建议大家在自己的电脑上测试一下,看看是否好用。
您可能感兴趣的文章:
php验证码简单函数代码(附效果图)
分享一个php 验证码类及调用示例
php验证码的三个实例代码分享
一个php验证码的封装类
php自定义大小验证码的实例代码
php生成扭曲及旋转的验证码图片的实例代码
php仿QQ验证码的实现代码
php验证码函数使用的例子
php5验证码类(简易实用型)
php验证码(GD库生成验证码)的例子
php点击验证码实时刷新的实现代码
php图片验证码的例子
php验证码刷新与局部刷新的实现方法
php GD库生成验证码的实例
php生成验证码的例子
php随机验证码 php生成随机验证码(图文)
一个比较稳定的php登陆系统验证码
用php生成带有雪花背景的验证码
[2]php删除txt文档中的指定行
来源: 互联网 发布时间: 2013-12-24
代码如下:
<!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> <title>php删除txt文档中的指定行</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <?php /* * 删除txt文档中的指定行 * site www. */ function del_str_line($file,$line){ $str=''; $handle = @fopen("1.txt", "rb+");//以读写方式打开, //建议 fopen() 打开文件时使用 'b' 标记。 if ($handle) { for($i=0;$i<$line;$i++){ $str=fgets($handle);//读取指定的行 } //关闭文件,因为当前的文件指针已经指向了下一行 //不关闭的话,直接执行下面的重写代码,PHP会在$line+1删除指定个数的字符 rewind($handle);//重置文件指针到开头 $len=strlen($str);//计算指定行的长度 for($i=0;$i<$line-1;$i++){ fgets($handle);//将文件指针定位到指定行的上一行 } for($n=1;$n<=$len-1;$n++){//循环重写文件,这时候文件指针移动到指定行 fwrite($handle,' ',1);//将指定行每个位置的字符用空格代替,实现删除 } } } del_str_line('1.txt',3); ?> </body> </html>
代码就是上面这样了,测试用的txt文档大家自行准备吧。
以上的方法,不是最好的,只是用了php文件的读写实现内容的删除,供大家学习参考。
[3]php判断字符编码的二个方法
来源: 互联网 发布时间: 2013-12-24
方法1,使用mb_detect_encoding函数。
<?php $str=”,欢迎大家的光临。”; echo mb_detect_encoding($str); ?>
方法2,自定义函数。
<?php function chkbm($string){ $bm = array(‘ASCII’, ‘GBK’, ‘UTF-8′); foreach($bm as $c){ if( $string === iconv(‘UTF-8′, $c, iconv($c, ‘UTF-8′, $string))){//转换编码后是不是相等 return $c; } } return null; } ?>
如何取舍呢?聪明的,你来定夺吧,哈~~~
您可能感兴趣的文章:
学习php字符串编码的转换与判断
php判断字符串编码是否为utf8的函数举例
php获取字符串的编码格式的函数
php 自动检测内容编码并转换的代码
自动检测内容中的编码并进行转换的函数
php编码转换函数(自动转换字符集支持数组转换)
php改变编码的函数iconv
最新技术文章: