摘要: 安装MongoDB的方法有很多种,可以源代码安装,在CentOS也可以用yum源安装的方法。由于MongoDB更新得比较快,我比较喜欢用yum源安装的方法。64位CentOS下的安装步骤如下: 1、准备工作运行yum命令查看MongoDB的包信息 [root@localhost~]# yum inf 阅读全文
posted @ 2016-12-15 17:40 鼎峰Bruce 阅读(2782) 评论(0) 推荐(0) 编辑
摘要: 修改sqlnet.ora文件中的IP列表后都需要重启监听才能生效。(原文是: Any changes to the values requires the TNS listener to be stopped and restarted.但通过测试单机情况下lsnrctl reload同样可以生效。 阅读全文
posted @ 2016-12-15 17:19 鼎峰Bruce 阅读(1606) 评论(0) 推荐(0) 编辑
摘要: 1、创建用户useradd weblogic;创建用户成功linux系统会自动创建一个和用户名相同的分组,并将该用户分到改组中。并会在/home路径下创建一个和用户名相同的路径,比如我们创建的weblogic。 注:当然,你也可以通过groupadd -g GID groupname(GID代表创建 阅读全文
posted @ 2016-12-15 16:32 鼎峰Bruce 阅读(1331) 评论(0) 推荐(0) 编辑
摘要: php_imagick程序示例 1.创建一个缩略图并显示出来 <?phpheader('Content-type: image/jpeg');$image = new Imagick('image.jpg');// If 0 is provided as a width or height para 阅读全文
posted @ 2016-12-14 16:22 鼎峰Bruce 阅读(366) 评论(0) 推荐(0) 编辑
摘要: array_slicearray array_slice ( array $array , int $offset [, int $length = NULL [, bool $preserve_keys = false ]] ) 返回数组中指定下标offset和长度length的子数组切片。 参数 阅读全文
posted @ 2016-12-14 15:41 鼎峰Bruce 阅读(5415) 评论(0) 推荐(0) 编辑
摘要: 创建一个新的XML文件,并且写入一些数据到这个XML文件中。 /** 创建xml文件*/$info = array(array('obj' => 'power','info' => 'power is shutdown'),array('obj' => 'memcache','info' => 'm 阅读全文
posted @ 2016-12-14 15:34 鼎峰Bruce 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 假设你要建立一个服务来检查正在运行的n台服务器,以确定他们还在正常运转。你可能会写下面这样的代码:代码如下:<?php$hosts = array("host1.sample.com", "host2.sample.com", "host3.sample.com");$timeout = 15;$s 阅读全文
posted @ 2016-12-14 15:23 鼎峰Bruce 阅读(3513) 评论(1) 推荐(0) 编辑
摘要: 目前Data URI scheme支持的类型有: data:text/plain,文本数据data:text/html,HTML代码data:text/html;base64,base64编码的HTML代码data:text/css,CSS代码data:text/css;base64,base64编 阅读全文
posted @ 2016-12-14 15:14 鼎峰Bruce 阅读(2530) 评论(0) 推荐(0) 编辑
摘要: function getIp(){if (getenv("HTTP_CLIENT_IP") && strcasecmp(getenv("HTTP_CLIENT_IP"), "unknown"))$ip = getenv("HTTP_CLIENT_IP");else if (getenv("HTTP_ 阅读全文
posted @ 2016-12-14 15:04 鼎峰Bruce 阅读(1076) 评论(0) 推荐(0) 编辑
摘要: 一、使用brew安装php多版本方法# brew install php56# brew install php70二、安装切换工具# brew install php-version# source $(brew --prefix php-version)/php-version.sh三、查看当前 阅读全文
posted @ 2016-12-13 18:17 鼎峰Bruce 阅读(1786) 评论(0) 推荐(1) 编辑