thinkphp3.2
huizhang.
EasySwoole开发组成员
展开
-
PHP函数可变函数列表
代码实例<?phpnamespace app\index\controller;class Index{ public function index(){ $res = $this -> test(1,2,3,4); echo $res; } //函数可变元素列表 public function test(){ $原创 2017-08-25 17:09:34 · 340 阅读 · 0 评论 -
PHP函数 引用传递
代码实例<?phpnamespace app\index\controller;class Index{ public function index(){ $a = 2; $b = 3; $res = $this -> test($a,$b); echo 'a='.$a.'----------------';原创 2017-08-25 17:19:13 · 341 阅读 · 0 评论 -
匿名函数(闭包)
定义 匿名函数,也叫闭包函数,允许临时创建一个没有制定名称的函数。最经常用作回调函数(callback)参数的值使用 闭包函数可以作为遍历的值来使用代码实例1.public function index(){ $message = 'guoyuzhao'; $example = function () use (&$message){//如果使用外部变量用原创 2017-08-25 18:09:41 · 313 阅读 · 0 评论 -
PHP通过{}对字符串进行操作
获取字符串中的字符代码实例$str = 'abcdefg';echo $str{2};运行结果c修改字符串中的字符代码实例$str = 'abcdefg';$str{1} ='8';echo $str; 运行结果a8cdefg原创 2017-08-26 11:23:08 · 356 阅读 · 0 评论 -
PHP+Tp5中heredoc和nowdoc解析
普通转换模式代码实例<?phpnamespace app\index\controller;class Index{ public function index(){ header('content-type:text/html;charset=utf-8'); $table= "<table border='1' width=\"80%\">//注意这里原创 2017-08-26 11:42:42 · 340 阅读 · 0 评论 -
php通过header发送自定义数据
介绍 本文将介绍如何通过header发送自定义数据。发送请求时,除了可以使用GET/_GET/_POST发送数据,也可以把数据放在header中传输过去。发送header: 我们定义了三个参数,token、language、region,放入header发送过去<?php$url = 'http://www.example.com';$header = array('token:Jx转载 2017-10-18 22:38:49 · 748 阅读 · 0 评论 -
Tp5使用date函数突然报错
错误信息 Fatal error: Uncaught exception ‘think\exception\ErrorException’ with message ‘date(): It is not safe to rely on the system’s timezone settings. You are required to use the date.timezone s原创 2017-10-15 16:54:45 · 2423 阅读 · 0 评论 -
php Curl json
代码//post json 请求function http_post_json($url, $jsonStr){ $ch = curl_init(); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonS原创 2017-11-28 16:55:40 · 563 阅读 · 0 评论 -
MAC下PHP7.0+phpredis扩展安装
什么是redis难受的理论: Redis是一个开源(BSD许可),内存存储的数据结构服务器,可用作数据库,高速缓存和消息队列代理。它支持字符串、哈希表、列表、集合、有序集合,位图,hyperloglogs等数据类型。内置复制、Lua脚本、LRU收回、事务以及不同级别磁盘持久化功能,同时通过Redis Sentinel提供高可用,通过Redis Cluster提供自动分区。优势: 性能原创 2017-08-08 23:32:57 · 11799 阅读 · 1 评论