随笔分类 - php
摘要:/** * 获取访问者IP * */ public static function get_client_ip() { if (getenv('HTTP_CLIENT_IP') && strcasecmp(getenv('HTTP_CLIENT_IP'), 'unknown')) { $CLIENT_IP = getenv('HTTP_CLIENT_IP'); } elseif (getenv('HTTP_X_FORWARDED_FOR') && strcasecmp(getenv(
阅读全文
摘要:$file_name = $dir . $name;if (!file_exists($file_name)) { echo "<script>alert('文件不存在')</script>"; exit;} else { $file = fopen($file_name, "r"); Header("Content-type: application/octet-stream"); Header("Accept-Ranges: bytes"); Header("A
阅读全文
摘要:安装模块重启apacheapt-get install php5-mcrypt
阅读全文
摘要:导出excel/** * 以下是使用示例,对于以 //// 开头的行是不同的可选方式,请根据实际需要 * 打开对应行的注释。 * 如果使用 Excel5 ,输出的内容应该是GBK编码。 *///require_once 'PHPExcel.php'; // uncomment ////require_once 'PHPExcel/Writer/Excel5.php'; // 用于其他低版本xls // or ////require_once 'PHPExcel/Writer/Excel2007.php'; // 用于 excel-2007 格式
阅读全文
摘要:html代码 用户名 跟随 新外汇指数 月均交易(手) 账户余额($) 近一个月收益 当前持仓(单) ...
阅读全文
摘要:Python MySQLdb escape_string 转义函数php mysql_escape_string
阅读全文
摘要:错误信息[Sat Mar 09 23:06:30 2013] [alert] [client 127.0.0.1] /var/www/capitalog_ib/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration后来查到这是因为Php没有开启rewrite模块而无法重定向启用 Mod_rewrite 模块:sudo a2enmod rewrite此时,需要注意:sudo vim /
阅读全文
摘要:1.把文件copy到指定目录cp -r doophp/* /var/www/capitalog_ib/trunk/2.修改项目名称为testmv app test$config['SITE_PATH'] = realpath('..').'/test/'; #/test/protected/config/common.conf.php doophp 模板中开启{% include 'common/base'%}功能$config['TEMPLATE_ENGINE'] = 'DooViewBasic'
阅读全文
摘要:电脑不知道怎么设置的根目录下看不到所有文件夹而且打开一个新的文件夹显示Forbidden You don't have permission to access /atina/ on this server.最后没办法只能手动把文件夹加上权限chmod -R 777 atina //-R 递归修改,“/文件夹/“以下所有内容(包括文件夹)权限都设置为755
阅读全文
摘要:1.安装redis服务端sudo apt-get install redis-server源码安装zc@zc-Lenovo-B450:~$ sudo wget http://redis.googlecode.com/files/redis-2.4.2.tar.gzzc@zc-Lenovo-B450:~$ tar xzf redis-2.4.2.tar.gzzc@zc-Lenovo-B450:~$ cd redis-2.4.2/zc@zc-Lenovo-B450:~$ makezc@zc-Lenovo-B450:~$ src/redis-server测试redis是否安装成功:注意:要开启red
阅读全文

浙公网安备 33010602011771号