PHP的PDO数据库操作类 代码段

一个简单的PDO类封装。。仅供学习交流 PdoDb 数据库类 php /** * @throws Error * PDO数据库 */ class PdoDb extends DatabaseAbstract

ouhp9343 2016-01-24   1449   0

PHP数据库备份还原类 代码段

php /** * 数据库备份还原类 * @author xialeistudio * @date 2014-03-17 * Class DatabaseTool

nepe 2015-04-29   4184   0
PHP   算法  

一个简单的php Calender(日历) 代码段

php /** * * 我的日历 * date_default_timezone_set date mktime * @param int $year * @param int $month * @param

nepe 2015-04-29   2691   0
PHP  

不变形截图的PHP代码 代码段

php function my_image_resize($src_file, $dst_file , $new_width , $new_height) { $src_img=imagecrea

gwf6 2015-01-04   1040   0
PHP  

php不变形截图 代码段

php function my_image_resize($src_file, $dst_file , $new_width , $new_height) { $src_img=imagecrea

jspet 2015-01-20   1073   0
PHP  

通过php备份mysql数据的代码 代码段

php ##################### //CONFIGURATIONS ##################### // Define the name of the backup directory

xm52 2015-05-08   792   0
PHP  

PHP、C#、通用的DES加密 代码段

PHP class JoDES {       private static $_instance = NULL;     /**      * @return JoDES      */     p

jopen 2015-12-25   1041   0
加密  

完全封装好的php上传文件类 代码段

ILE_SIZE选项指定的值"; break; case 1: $str .= "上传文件超过了php.ini 中upload_max_filesize选项的值"; break; case -1: $str

xm52 2015-05-08   1223   0
PHP  

给图片添加水印的PHP 代码段

印透明度设置(图片水印和文字水印都支持)文字 水印的字体、颜色、大小设置图片水印的背景透明 php /** * 加水印类,支持文字图片水印的透明度设置、水印图片背景透明。 * 日期:2011-09-27

jopen 2015-08-13   955   0
PHP  

PHP压缩图片 代码段

function scale_dimensions_within_limits($w,$h,$max_w,$max_h){ // $w is the width of the current rectangle // $h is the height of the current rectangle // $max_w is the maximum width that an image can

phpde1 2015-03-17   952   0
PHP  

PHP解析 JSON 数据 代码段

$json_string='{"id":1,"name":"rolf","country":"russia","office":["google","oracle"]} '; $obj=json_decode($json_string); //print the parsed data echo $obj->name; //displays rolf echo $obj->office[0]; /

gw23e 2015-08-09   907   0
PHP  

PHP解析 XML 数据 代码段

$xml_string="<?xml version='1.0'?> <moleculedb> <molecule name='Benzine'> <symbol>ben</symbol> <code>A</code> </molecule> <molecule name='Water'> <symbol>h2o</symbol> <code>K</code> </molecule> </mole

gw23e 2015-08-09   893   0
PHP  

http请求处理PHP 代码段

/** * http请求处理类(基于CURL进行封装) * * @author Xiwei Ye * @version $Id$ */ class cls_http_request { /** * get方式请求(curl) * * @param string $url 请求的url * @param integer $timeout 超时时间(s) * @return string(请求成功)

php7228 2015-01-13   2743   0
PHP  

php 导出excel类 代码段

/** * excel导出类 * * 使用方法 $excel=new Excel(); * //设置编码: *$excel->setEncode("utf-8","gb2312"); //如果不转码,参数写一样即可,例如$excel->setEncode("utf-8","utf-8"); * //设置标题栏 * $titlearr=array("a","b","c","d"); * //设置内容

cdop 2014-12-29   1712   0
PHP  

php选择排序例子 代码段

$arr=array(2,1,-1,3,0); for($i=0;$i<count($arr)-1;$i++){ $minval = $arr[$i]; $minindex = $i; for($j=1+$i;$j<count($arr);$j++){ if($arr[$j]<$minval){ $minval = $arr[$j]; $minindex = $j; } } $temp = $ar

wp5x 2015-01-10   1035   0
PHP  

php快速排序的算法 代码段

function qsort(&$arr) { _quick_sort($arr, 0, count($arr) - 1); } /** * 采用递归算法的快速排序。 * * @param array $arr 要排序的数组 * @param int $low 最低的排序子段 * @param int $high 最高的排序字段 */ function _quick_sort(&$arr, $lo

jphp1 2015-05-11   942   0
PHP   算法  

PHP缩放图片 代码段

function resize_image($filename, $tmpname, $xmax, $ymax) { $ext = explode(".", $filename); $ext = $ext[count($ext)-1]; if($ext == "jpg" || $ext == "jpeg") $im = imagecreatefromjpeg($tmpname); elseif($

gw23e 2015-08-09   810   0
PHP  

PHP终极加密功能 代码段

// f(ucking) u(ncrackable) e(ncryption) function by BlackHatDBL (www.netforme.net) function fue($hash,$times) { // Execute the encryption(s) as many times as the user wants for($i=$times;$i>0;$i--) {

lpki123 2015-03-03   885   0
PHP  

php压缩CSS文件 代码段

一次压缩多个CSS文件 header('Content-type: text/css'); ob_start("compress"); function compress($buffer) { /* remove comments */ $buffer = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $buffer); /* remove t

jopen 2015-07-27   909   0
PHP  

PHP下载文件 代码段

$filename = $_GET['file']; //Get the fileid from the URL // Query the file ID $query = sprintf("SELECT * FROM tableName WHERE id = '%s'",mysql_real_escape_string($filename)); $sql = mysql_query($query

md3c 2015-01-04   1190   0
PHP  
1 2 3 4 5 6 7 8 9 10