01 2012 档案
simplexml_load_string()函数应用
摘要:通过SimpleXML从网页中抽取出网页标题和描述,页面内容被传递给simplexml_load_string()函数后被解析成一个XML文档并返回一个容易处理的对象。如果系统中安装了libtidy扩展,可使用它来规范代码,否则就消除可能产生的警告信息:$file = tidy_repair_string($file); $html = simplexml_load_string($file);// or: $html = @simplexml_load_string($file);// extact the title if ($html->head->title) { $tit
阅读全文
解决IE6透明PNG图片的代码
摘要:使用方法1.下载DD_belatedPNG.js文件(官方网站:http://www.dillerdesign.com/experiment/DD_belatedPNG/).2.在网页中head区引用,如下:<!--[if IE 6]><script src="DD_belatedPNG.js" mce_src="DD_belatedPNG.js"></script><script type="text/javascript"><!<!/* EXAMPLE */DD_bela
阅读全文
MySQL数据库编码设置
摘要:一 创建数据库时设置编码GBK: create database test2 DEFAULT CHARACTER SET gbk COLLATE gbk_chinese_ci;UTF8: CREATE DATABASE `test2` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci二 创建表时设置编码create table categroy(cid unsigned int not null auto_increment,name varchar(20) not null,primary key(cid))ENGINE=MyISAM DE
阅读全文
浙公网安备 33010602011771号