mac 下安装 php 环境过程 memcache 和 memcached 不要弄错了 1.安装xampp 下载、安装、配置: 如出现 root document must be a directory 的错误 可能是 root document 引号是中文的情况 2.memcached 下载、安装、配置 , 网上有大把例子,最方便是用 brew 安装 3.php memcache 扩展安装 先使用 brew 安装 安装过程中如出现了 [txt]configure: error: memcache support requires ZLIB. Use –with-zlib-dir= Read More
分类: 工作
css 中文字体对应的 Unicode
css 中文字体出现乱码的情况下可使用 中文名的 Unicode : 例如:style=”FONT-FAMILY: 微软雅黑; ” 可写成 style=”FONT-FAMILY: \5FAE\8F6F\96C5\9ED1; “
Lotusscript 正则表达类
Lotusscript 正则表达类,Lotusscript代理调用正则表达式过滤掉代码,获取notesRichTextItem内容信息的方法 ———————–使用———————————————————– ————&# Read More
domino lotus公式计算日期
计算一个月天数FIELD currentYear:=@Year(@Now); FIELD currentMonth:=@Month(@Now); CurrentMonthFirstDate:=@Date(currentYear;currentMonth;1); NextMonthFirstDate:=@Adjust(CurrentMonthFirstDate;0;1;0;0;0;0); FIELD TotalDays:=(NextMonthFirstDate-CurrentMonthFirstDate)/86400; TotalDays 本周开始日期 a:=@Weekday(@Today); Read More
java 网页抓取笔记
java 网页抓取几种方法 1、httpclient HttpClient 是 Apache Jakarta Common 下的子项目,感觉就是模拟一个客户端请求数据,没有对html 解析的支持. 相关地址:http://renjie120.iteye.com/blog/1727933 http://dongwei.iteye.com/blog/1756394 超时设置: 2、jsoup 比较好用的,可以远程请求数据,支持html 的解析。 相关地址:中文 http://www.open-open.com/jsoup/ 官方 http://jsoup.org/ 下载 jsoup-1.6.2 3 Read More