php
phper0000000001
这个作者很懒,什么都没留下…
展开
-
linux使用sphinx
1.安装 sphinxwget http://www.sphinxsearch.com/downloads/sphinx-0.9.9.tar.gz[root@localhost src]# tar zxvf sphinx-0.9.9.tar.gz[root@localhost local]# cd sphinx-0.9.9[root@localhost sphinx-0.9.9]# ./confi...原创 2018-02-27 15:31:26 · 399 阅读 · 0 评论 -
strrchr参数的问题
今天查PHP官方文档的时候看到 strrchr函数的用法,有这样一段代码<?php // 获取 $PATH 中不含磁盘符号的目录 $dir = substr(strrchr($PATH, ":"), 1); // 获取最后一行内容 $text = "Line 1\nLine 2\nLine 3"; $last = substr(strrchr($text, 10), 1 ); ?> ...原创 2018-03-16 10:40:06 · 557 阅读 · 0 评论 -
PHP读取大文件的最后几行数据
<?php /** * Created by PhpStorm. * User: Administrator * Date: 2018/4/19 * Time: 10:39 */ function tail($filename, $num) { if (!$fp = fopen($filename, 'r')) { echo "open file fail...原创 2018-04-19 12:14:12 · 1436 阅读 · 0 评论 -
laravel 多条件查询
首先以为laravel 对DB的多条件查询支持的不是很好,后来仔细看了下API文档,是可以在where()里面用匿名函数去处理条件的。 代码如下: public function index() { $table = "RunLogInfo_" . date("Ym", time()); // $start_date = $this->request-...原创 2018-05-17 16:26:26 · 2178 阅读 · 0 评论