yipeiwu_com6年前
复制代码 代码如下: <?php session_start(); Header("Content-type: image/gif"); class SecurityCode {...
yipeiwu_com6年前
先上源代码,你可以copy到自己的电脑上去运行~ 复制代码 代码如下: <html> <meta http-equiv="Content-Type" content="...
yipeiwu_com6年前
之前写了一篇关于数组去重的文章,但是仅限于一维数组。下面的函数可以用于二维数组: 复制代码 代码如下: //二维数组去掉重复值 function array_unique_fb($arr...
yipeiwu_com6年前
复制代码 代码如下: <?php $arrF = array(); $arrS = array(); $intTotal = 100; $intRand = 10; for($i=...
yipeiwu_com6年前
在数组中搜索一个特定值,如果找到返回TRUE否则返回FALSE boolean in_array(mixed needle,array haystack[,boolean strict]...
yipeiwu_com6年前
复制代码 代码如下: function get_word($string, $length, $dot = '..',$charset='gbk') { if(strlen($strin...
yipeiwu_com6年前
1. iconv()介绍 iconv函数可以将一种已知的字符集文件转换成另一种已知的字符集文件。例如:从GB2312转换为UTF-8。 iconv函数在php5中内置,GB字符集默认打开...
yipeiwu_com6年前
无法载入 mcrypt 扩展,<br />请检查 PHP 配置 出现以下几种情况后可能会造成运行phpmyadmin程序提示“无法载入 mcrypt 扩展,<br /&...
yipeiwu_com6年前
东西不是新货,所以介绍就不做介绍了,下面主要是配置流程。 首先,下载ZendDebugger,下载链接:http://downloads.zend.com/pdt/server-d...
yipeiwu_com6年前
看PHP手册的时候发现了下面这样一段代码: 复制代码 代码如下: <?php function Test() { static $count = 0; $count++; echo...