Chinaunix首页 | 论坛 | 博客
  • 博客访问: 149155
  • 博文数量: 89
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 70
  • 用 户 组: 普通用户
  • 注册时间: 2016-06-29 23:10
文章分类

全部博文(89)

文章存档

2016年(89)

我的朋友

发布时间:2016-04-16 16:55:51

下载所需软件(下载到/usr/local/src目录)#wget http://downloads.mongodb.org/src/mongodb-src-r1.8.1.tar.gz#wget http://ftp.mozilla.org/pub/mozilla.org/js/js-1.7.0.tar.gz#wget http://sourceforge.net/projects/pcre/files/pcre/8.12/pcre-8.12.tar.bz2安装 python :#yum install -y python-devel 安装s.........【阅读全文】

阅读(1594) | 评论(0) | 转发(0)

发布时间:2016-04-16 11:54:06

记录一下自己安装过程先安装gcc-c++编译环境和opensslyum install gcc-c++ openssl-develwget http://nodejs.org/dist/node-v0.10.12.tar.gz (最新的nodejs下载地址)tar –xvf node-v0.10.12.tar.gzcd node-v0.10.12./configuremake && make install转载自:http://www.9958.pw/post/centos_nodejs.........【阅读全文】

阅读(943) | 评论(0) | 转发(0)

发布时间:2016-04-14 21:11:08

function String.prototype.Trim() { return this.replace(/(^/s*)|(/s*$)/g, ""); } // 去掉左右空格function String.prototype.Ltrim() { return this.replace(/(^/s*)/g, ""); } // 去掉左空格function String.prototype.Rtrim() { return this.replace(/(/s*$)/g, ""); } // 去掉右空格.........【阅读全文】

阅读(1402) | 评论(0) | 转发(0)

发布时间:2016-04-13 20:03:11

Strict Standards: Only variables should be passed by reference in D:\wamp\ecshop\includes\cls_template.php on line 406用软件打开406行是这句话$tag_sel = array_shift(explode(' ', $tag));解决方法5.3以上版本的问题,应该也和配置有关只要406行把这一句拆成两句就没有问题了$tag_sel = array_shift.........【阅读全文】

阅读(928) | 评论(0) | 转发(0)

发布时间:2016-04-07 20:45:10

JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式,采用完全独立于语言的文本格式,是理想的数据交换格式。同时,JSON是 JavaScript 原生格式,这意味着在 JavaScript 中处理 JSON数据不须要任何特殊的 API 或工具包。本文主要是对JS操作JSON的要领做下总结。在JSON中,有两种结构:对象和数组。一个对.........【阅读全文】

阅读(1278) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册