因为RabbitMQ是由erlang语言实现的,所以先要安装erlang环境
erlang 下载安装 http://www.erlang.org/download.html
rabbitmq 下载安装 https://www.rabbitmq.com/install-windo...
苏 demo
9年前 (2015-09-11)
3462℃
0评论
3喜欢
在php5.3环境下运行oscommerce,常常会出现Deprecated: Function ereg() is deprecated in…和Deprecated: Function ereg_replace() is deprecated in…这...
苏 demo
9年前 (2015-09-10)
2218℃
0评论
0喜欢
<?php
if (version_compare(“5.2”, PHP_VERSION, “>”)) {
die(“PHP 5.2 or greater is required!!!”);
}
...
苏 demo
9年前 (2015-09-10)
2616℃
0评论
0喜欢
使用php5.5运行ecshop的时候出现如下错误Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in \ecshop\includes\cl...
苏 demo
9年前 (2015-09-10)
3553℃
0评论
0喜欢
PHP 5.4.45/5.5.29/5.6.13 发布,主要是安全问题修复。
下载: http://www.php.net/downloads.php
Windows 下载: http://windows.php.net/download/
PHP 5.4.45 更新列表:
...
苏 demo
9年前 (2015-09-08)
3880℃
0评论
0喜欢
CakePHP 3.0.13 发布,此版本是个维护版本,主要是 bug 修复和改进:
Bug 修复
Query::count() no longer fails when there are fields with complex expressions in the sel...
苏 demo
9年前 (2015-09-08)
2607℃
0评论
0喜欢
代码示例:
/**
* 是否是正确的手机号码
* @param $mobile
* @return int
*/
public static function is_mobile($mobile){
//return preg_match("/^(\+8...
苏 demo
9年前 (2015-09-06)
2327℃
0评论
0喜欢
CORS的使用方式:
以下均是模拟 从 A. abc.com 发起一个到 B. abc.com 的请求 的场景,即 本次 “跨域” 并非 “大跨”,而是在 根域相同 的情况下,去 请求 不同的子域 。
需求一:能让我跨就行
这也是最简单的需求,在 B 的服务端程序中,增加响应...
苏 demo
9年前 (2015-09-06)
2778℃
0评论
0喜欢
定义和用法
array_pop() 函数删除数组中的最后一个元素。
语法
array_pop(array)
参数
描述
array
必需。规定输入的数组参数。
例子
<?php
$a=array("Dog","Cat","Horse");
arra...
苏 demo
9年前 (2015-09-05)
2049℃
0评论
0喜欢
文章是转载的,不过已经验证可用。需要注意的是,图片的路径一定要是绝对地址,例如:“@D:/imgs/01/1.png”
test.php
<?php
include ‘common.inc.php’;
header(‘content-ty...
苏 demo
9年前 (2015-09-05)
2244℃
0评论
0喜欢