<?php class Cookie { /** * 解密已经加密了的cookie * * @param string $encryptedText * @return st…
//返回一个时间段内所有月份 传时间戳 function monthList($start,$end){ if(!is_numeric($start)||!is_numeric($…
<html> <head> <title>图片上传</title> </head> <body> <f…
<?php function randColor(){ $letters = "1234567890ABCDEF"; for($i=1;$i<6;$…
1查找字符位置函数: strpos($str,$seach,[int]);查找search在$str中的第一次位置从int开始; stripos($str,$seach,[int]…
$i = imagecreatefromjpeg("image.jpg"); for ($x=0;$x<imagesx($i);$x++) { for (…
php遍历某文件夹下的所有文件和文件夹 function list_dir($dirpath){ if($dirpath[strlen($dirpath)-1]!="\\…
<? class encryptCalss { var $key=12; function encode($txt){ for($i=0;$i<strlen($txt)…
<? function Text2Html($txt){ $txt = str_replace(" "," ",$txt); $txt…
如下代码实现php限制下载速度: <?php /* Source: http://www.apphp.com/index.php?snippet=php-download-f…
生成多种类型的缩略图 <?php /*************************************** *作者:落梦天蝎(beluckly) *完成时间:2006…
前台html jquery代码 后台PHP处理 前台html <form id="form" method="post" enctyp…