php实现随机点名程序 代码段

用的是mt_random()函数(性能优于random()函数) php $max1=51; $min1=1; $stu=mt_rand($min1,$max1); if($stu>26) {

ef4w 2015-02-09   1485   0
PHP  

PHP实现冒泡算法 代码段

冒泡算法 php function bubbleSort($ary){ $len = count($ary); for ($i=0; $i < $len - 1; $i++) { for ($j=0;

jopen 2015-01-11   1817   0
PHP  

简单的php抽奖代码 代码段

php /** * “抽奖”函数 * * @param integer $first 起始编号 * @param integer $last 结束编号 * @param integer $total

cf46d 2015-01-31   1555   0
PHP  

php 类定义和类使用实例 代码段

php class emp { var $name; var $address; var $dept; function assign_info($n,$a,$d) { $this->name=$n;

cf46d 2015-01-31   1219   0
PHP  

校验 url, email 和 ip 的PHP代码 代码段

php function is_valid_url($url){ $p1 ='/(http|https|ftp):\/\/[a-z0-9-]+(.[a-z0-9-]+)*(:[0-9]+)?(\/

jopen 2015-06-22   1430   0
PHP  

PHP根据 URL 下载图片 代码段

'w'); fwrite($fp, $rawdata); fclose($fp); } 用法: php $url = "http://koonk.com/images/logo.png"; $rename

mf6w 2015-08-09   1735   0
PHP  

计算文件大小的php代码 代码段

php function dirSize($directoty){ $dir_size=0; if($dir_handle=@opendir($directoty)) { while($filen

cf46d 2015-01-31   992   0
PHP  

PHP实现快速排序算法 代码段

php function quicksort($seq) { if (count($seq) > 1) { $k = $seq[0]; $x = array(); $y = array(); for

x75x 2016-01-03   707   0
Android   样式   主题  

PHP定时执行任务的实现 代码段

可。不知道能程序的性能会不会影响很大! ignore_user_abort();//关掉浏览器,PHP脚本也可以继续执行. set_time_limit(0);// 通过set_time_limit(0)可以让程序无限制的执行下去

phpde 2015-03-17   781   0
PHP  

PHP获取远程文件的大小 代码段

isset($matches[1]) ? $matches[1] : "unknown"; } 用法: php $file = "http://koonk.com/images/logo.png"; $size

mf6w 2015-08-09   672   0
PHP  

PHP判断图片格式 代码段

php $imgurl = " http://finalshares.com/themes/site/biv_viva/images/logo.png " ; //方法1 echo $ext = strrchr

GiseleGrang 2016-02-01   1730   0
PHP  

php生成图形验证码 代码段

php session_start(); // main $vcodes = ''; //generate Number 4 srand((double) microtime() * 1000000);

程序猿123 2015-03-11   990   0
PHP  

PHP限制文件下载的速度 代码段

php // local file that should be send to the client $local_file = 'test-file.zip'; // filename that

mf6w 2015-08-09   934   0
PHP  

PHP生成二维码 代码段

curl_exec($ch); curl_close($ch); return $response; } 用法: php header("Content-type: image/png"); echo qr_code("http://koonk

mf6w 2015-08-09   974   0
PHP  

php处理文件下载的代码 代码段

用在服务器上提供下载的php代码,可以指定被下载的文件名,可以动态指定文件内容 // local file that should be send to the client $local_file =

cf46d 2015-01-31   1951   0
PHP  

PHP 获取IP地址 代码段

php function GetIP() { static $realip = NULL; if ($realip !== NULL) { return $realip; } if (isset($_SERVER))

mmxn 2015-05-20   1069   0
PHP  

计算密码强度的php代码 代码段

php /** * * @param String $string * @return float * * Returns a float between 0 and 100. The closer

ded3b 2015-01-23   2111   0
PHP  

裁剪图片PHP代码 代码段

。可以通过修改$src_x,$src_y,$src_w,$src_h的值来修改裁剪的范围。 php $filename= "test.jpg"; list($w, $h, $type, $attr)

jopen 2014-12-28   2399   0
PHP  

二分查找PHP实现 代码段

php /**二分查找:查找一个值在数组中的位置 * @$arr:操作的数组,前提是按顺序排列 * @$val:查找的值 * @$low:查找的起始位置,默认从数组的第一个数找起 * @hight:查找的结束位置

nbnb 2015-01-04   1171   0
PHP  

php缩放图片代码 代码段

php // 指定文件路径和缩放比例 $filename = 'test.jpg'; $percent = 0.5; // 指定头文件Content typezhi值 header('Content-type:

程序猿123 2015-03-11   861   0
PHP  
1 2 3 4 5 6 7 8 9 10