摘要: 一、安装xhprof ? 1 2 3 4 5 6 7 8 9 wget http://pecl.php.net/get/xhprof-0.9.4.tgz tar -zxvf xhprof-0.9.4.tgz cd xhprof-0.9.4/extension/ phpize ./configure 阅读全文
posted @ 2022-06-29 10:19 快乐的在一起 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 1.检查域名是否存在 $results = checkdnsrr("www.baidu.com"); 返回结果:boolean true 2.语法高亮 highlight_file('client.php');//可以打印文件显示代码 阅读全文
posted @ 2022-06-29 09:51 快乐的在一起 阅读(21) 评论(0) 推荐(0) 编辑
摘要: PHP语言以其简单易学而闻名,但一些初学者经常会写出一些性能低下的PHP代码,这会严重影响整套系统的运行效率,本文我们为大家收集了一些PHP 编程技巧与优化,希望PHP初学者能认真阅读以下的编辑技巧,并养成良好的PHP编程习惯! 63条PHP编程技巧 1、 尽量采用大量的PHP内置函数。 2、 使用 阅读全文
posted @ 2022-06-28 21:38 快乐的在一起 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 一、SQL优化一般步骤 1、通过慢查日志等定位那些执行效率较低的SQL语句 2、explain 分析SQL的执行计划 需要重点关注type、rows、filtered、extra。 type由上至下,效率越来越高 ALL 全表扫描 index 索引全扫描 range 索引范围扫描,常用语<,<=,> 阅读全文
posted @ 2022-06-28 21:27 快乐的在一起 阅读(3116) 评论(0) 推荐(2) 编辑
摘要: 引言 从机制上来讲,rabbitmq也有queue和topic的概念,发消息的时候还要指定消息的key,这个key之后会做路由键用。但是,多了一个概念叫做交换器exchange。exchange有四种,direct、fanout、topic、header。也就是说,发消息给rabbitmq时,消息要 阅读全文
posted @ 2022-06-28 14:19 快乐的在一起 阅读(474) 评论(0) 推荐(0) 编辑
摘要: 原来,在命令行执行命令 php a.php ctrl+C 退出命令行后,进程直接退出了 修改后,在命令后加 & and符号 php a.php & 实现,退出后程序持续运行 阅读全文
posted @ 2022-06-27 11:13 快乐的在一起 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 1.新建服务端ws.php <?php //创建WebSocket Server对象,监听0.0.0.0:9502端口 $ws = new Swoole\WebSocket\Server('0.0.0.0', 8892); //监听WebSocket连接打开事件 $ws->on('Open', fu 阅读全文
posted @ 2022-06-26 20:43 快乐的在一起 阅读(499) 评论(0) 推荐(0) 编辑
摘要: 1.创建服务端server.php <?php $http = new Swoole\Http\Server('0.0.0.0', 6666); $http->on('Request', function ($request, $response) { $response->header('Cont 阅读全文
posted @ 2022-06-24 23:20 快乐的在一起 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 1.创建客户端数据 client.php <?php //连接Swoole tcp服务 $client = new Swoole\Client(SWOOLE_SOCK_TCP); if (!$client->connect('127.0.0.1', 1111, 0.5)) { echo "conne 阅读全文
posted @ 2022-06-24 18:18 快乐的在一起 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 1.创建 server.php <?php //创建Server对象,监听 127.0.0.1:9501 端口 $server = new Swoole\Server('127.0.0.1', 1111); $server->set([ 'worker_num'=>8, //worker进程数,cp 阅读全文
posted @ 2022-06-24 17:11 快乐的在一起 阅读(34) 评论(0) 推荐(0) 编辑