道者编程

article   来源:原创 2016-08-08 10:05:19

PHP换算文件大小

//换算文件大小 function formatBytes($bytes) { if($bytes >= 1073741824) { $bytes = round($bytes / 1073741824 * 100) / 100 . 'GB'; } elseif($bytes >…

article   来源:原创 2016-08-05 11:21:19

linux安装php mcrypt 扩展

1:下载下载Libmcrypt,mhash,mcryp三个安装包libmcrypt-2.5.8.tar.gz# wget http://sourceforge.net/project/showfiles.php?group_id=87941&package_id=91774&release_id…

article   来源:原创 2016-08-05 11:00:52

centos安装phalcon

1:下载phalcon2:进入phalcon目录:cd /phalcon/build/64bits/ 选择32或者64位# /usr/local/php/bin/phpize ./install # ./configure --with-php-config=/mnt/local/php/bin/ph…

article   来源:原创 2016-08-05 10:26:35

CentOs环境下PHP支持PDO_MYSQL

一、下载相应tgz包;http://pecl.php.net/get/PDO_MYSQL-1.0.2.tgz二、安装开始解压# tar zxvf PDO_MYSQL-1.0.2.tgz # cd PDO_MYSQL-1.0.2运行命令# /usr/local/php/bin/phpize Configu…

article   来源:原创 2016-08-04 16:41:39

PHP两种排序

1、字符串反向:<?php function my_strrev($str) { $count = strlen($str); if($count<=0) return false; for($i=$count-1;$i>=0;$i--){ $s = substr($st…

共有 45 条记录  首页 上一页 下一页 尾页 12345