Zjmainstay
2014年03月23日 05:16:09
解决Sphinx 使用报错:index 'test1': search error: query too complex, not enough stack (thread_stack=-65032K or higher required).
编辑sphinx.conf
注释掉
sql_query_info = SELECT * FROM documents WHERE id=$id即可解决问题。
分类:
PHP
2014年03月22日 17:36:31
Ubuntu上安装Sphinx
本文讲解在Ubuntu上安装Sphinx的过程。
2014年03月21日 23:09:32
正则匹配html中的时间
源码:
<div class="artInfo"> <span id="pub_date">2014年03月12日 20:20</span> <span id="media_name"> <a href=http://stock.caijing.com.cn/2014-03-12/114002955.html?_fin target="_blank">财经网</a> </span> <div class="font_change" id="J_Font_Zoomer" data-sudaclick="font_change"> <span font-size="14"> <a class="J_Font_Zoomer_Trigger icon font_down font_down_disable" action-type="fontZoom" action-data="type=down" href="javascript:void(0);" title="减小字号"></a> </span> </div> </div>正则:
<span[^>]*?id="pub_date"[^>]*?>(.*?)</span>
2014年03月21日 21:54:45
正则匹配td标签内容
源码:
<TD align="middle" bgColor="#FFFFFF">5</TD> <TD align="left" bgColor="#ffffff">饶丽丽</TD> <TD align="middle" bgColor="#ffffff">312</TD>正则:
<td[^>]*?>(.*?)</td>\s*<td[^>]*?>(.*?)</td>\s*<td[^>]*?>(.*?)</td>
2014年03月20日 15:19:24
从今天起,记录每一个写过的正则
正则表达式是一个重用率比较低的东西,很多式子都是针对着需求写的,这也导致了很多时候都是写完就丢弃了,需要的时候再写,连回想的余地都没有,因此,有了本文,借此提醒自己,善待每一个写好的正则,无论简单、复杂。
2014年03月20日 14:52:36
最近感触
最近接触了很多新的东西,感触颇深,学无止境啊!
推荐一个站点:https://koding.com 免费的Linux开发平台,可以在上面做任意的管理操作,很适合新人练手,包括我自己。
关注我,我们一起学习!https://koding.com/zjmainstay
2014年03月16日 09:04:38
如何创建Laravel框架应用
本文介绍Linux下如何创建Laravel框架应用。
2014年02月28日 02:34:09
PHP临时启用错误提示
绝对好用的两句话,可以临时启用PHP报错提示,执行错误什么的立即现形。
ini_set('display_errors','on');
error_reporting(E_ALL);
用法:把这两句话放入程序开始(错误前面)即可。
分类:
PHP