<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>php个人工作经验以及生活体会博客</title>
	<atom:link href="http://www.wodeblog.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.wodeblog.com</link>
	<description>php工作,生活</description>
	<lastBuildDate>Wed, 16 May 2012 08:07:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>js 消除ie浏览器iframe跳转声音</title>
		<link>http://www.wodeblog.com/archives/419</link>
		<comments>http://www.wodeblog.com/archives/419#comments</comments>
		<pubDate>Wed, 16 May 2012 08:07:41 +0000</pubDate>
		<dc:creator>yangzhiyong</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[ie浏览器声音]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[js]]></category>

		<guid isPermaLink="false">http://www.wodeblog.com/?p=419</guid>
		<description><![CDATA[前段时间给单位做了款外链工具，使用ie刷链，在ie上每次刷新或是跳转都会发出提示声音让人很苦恼，今天一同事在用英文的形式在google上搜索到了消除ie声音的解决方案，原理十分简单，就是在页面上定义一个元素如 ,然后在用js创造一个iframe元素如：var newIFrame = document.createElement("iframe");给他赋于地址如：newIFrame.src = url;url就是你想刷新的地址，再把这个新造出来的iframe赋给之前我们定义的div元素，如：$('#div').html(newIFrame);把这些代码写成一个函数，定时调用它，这样外链工具无声就实现了，汗，很简单的办法，前端技术过硬就是小菜一碟，呵呵。 具体代码： 123456789101112&#60;script type=&#34;text/javascript&#34;&#62; var url='http://www.wodeblog.com/archives/416'; function wailian(){ &#160; &#160; var newIFrame = document.createElement(&#34;iframe&#34;); &#160; &#160; newIFrame.src = url; &#160; &#160; newIFrame.width = '100%'; &#160; &#160; $('#div').html(newIFrame); &#160; &#160; setTimeout(&#34;wailian()&#34;,8000); } wailian(); &#60;/script&#62; &#60;div id='div'&#62;&#60;/div&#62;]]></description>
		<wfw:commentRss>http://www.wodeblog.com/archives/419/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>js jquery 页面搜索</title>
		<link>http://www.wodeblog.com/archives/416</link>
		<comments>http://www.wodeblog.com/archives/416#comments</comments>
		<pubDate>Thu, 10 May 2012 02:55:29 +0000</pubDate>
		<dc:creator>yangzhiyong</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[页面搜索]]></category>

		<guid isPermaLink="false">http://www.wodeblog.com/?p=416</guid>
		<description><![CDATA[前两天做了个友情链接管理平台，在管理网站和链接不断增多的情况下，想在网站上选择已有的链接，但是纵多的链接让人眼花缭乱，于是在页面上使用jquery做了一个简单的搜索。 原理：在点击搜索的时候，得到用户输入的搜索链接地址，然后遍历所有的链接地址，查找与搜索地址相同的友情链接。 原理很简单，做法也简单，不过功能还是挺好使的。 js代码： 1234567891011121314$&#40;document&#41;.ready&#40;function&#40;&#41;&#123; &#160; $&#40;'a[name=search]'&#41;.click&#40;function&#40;&#41;&#123; &#160; &#160; &#160; &#160; var searchurl = $&#40;'input[name=search]'&#41;.val&#40;&#41;; &#160; &#160; &#160; &#160; var searchurl2; &#160; &#160; &#160; &#160; if&#40;searchurl.charAt&#40;searchurl.length-1&#41;=='/'&#41;searchurl2 = searchurl.substr&#40;0,searchurl.length-1&#41;; &#160; &#160; &#160; &#160; else searchurl2 = searchurl+'/'; &#160; &#160; &#160; &#160; $&#40;'input[name*=url]'&#41;.each&#40;function&#40;&#41;&#123; &#160; &#160; &#160; &#160; &#160; &#160; if&#40;$&#40;this&#41;.attr&#40;'rel'&#41;==searchurl&#124;&#124;$&#40;this&#41;.attr&#40;'rel'&#41;==searchurl2&#41;&#123; &#160; &#160; &#160; &#160; &#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://www.wodeblog.com/archives/416/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Aptana常用快捷键</title>
		<link>http://www.wodeblog.com/archives/414</link>
		<comments>http://www.wodeblog.com/archives/414#comments</comments>
		<pubDate>Wed, 09 May 2012 01:28:26 +0000</pubDate>
		<dc:creator>yangzhiyong</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Aptana]]></category>
		<category><![CDATA[快捷键]]></category>

		<guid isPermaLink="false">http://www.wodeblog.com/?p=414</guid>
		<description><![CDATA[Ctrl+D: 删除当前行 Ctrl+Alt+↓ 复制当前行到下一行(复制增加) Ctrl+Alt+↑ 复制当前行到上一行(复制增加)Alt+↓ 当前行和下面一行交互位置 Alt+↑ 当前行和上面一行交互位置 Alt+← 前一个编辑的页面 Alt+→ 下一个编辑的页面 Alt+Enter 显示当前工程的属性 Shift+Enter 在当前行的下一行插入空行 Ctrl+Q 定位到最后编辑的地方 Ctrl+L 定位在某行 Ctrl+M 最大化当前的Edit或View (再按则反之) Ctrl+O 快速显示 OutLine Ctrl+T 快速显示当前类的继承结构 Ctrl+W 关闭当前Editer Ctrl+E 快速显示当前Editer的下拉列表 Ctrl+Space 代码助手完成一些代码的插入 Ctrl+Shift+E 显示管理当前打开的所有的View的管理器(可以选择关闭,激活等操作) Ctrl+Shift+F4 关闭所有打开的Editer Ctrl+Shift+X 把当前选中的文本全部变味小写 Ctrl+Shift+Y 把当前选中的文本全部变为小写 Ctrl+Shift+F 格式化当前代码]]></description>
		<wfw:commentRss>http://www.wodeblog.com/archives/414/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>apache增加文件下载类型</title>
		<link>http://www.wodeblog.com/archives/411</link>
		<comments>http://www.wodeblog.com/archives/411#comments</comments>
		<pubDate>Wed, 02 May 2012 02:56:12 +0000</pubDate>
		<dc:creator>yangzhiyong</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[apache]]></category>

		<guid isPermaLink="false">http://www.wodeblog.com/?p=411</guid>
		<description><![CDATA[Apache 服务器无法下载 ISO文件 Apache 下载类型 apache新增下载文件类型 在把Apache Server装到Linux系统上面之后，Linux系统的/etc目录下就会新增一个httpd目录，用来存放所有的Apache的配置设定文件，而执行文件httpd则会被存放在/usb/sbin目录中，同时还会将一个名为mime.types的文件放到/etc目录下面。 且不论Apache里头的其他设定（这部分的设定文件都在/etc/httpd/conf底下，包含了目录的权限、虚拟目录的对应、以及Sever本身的其他相关的设定）MIME type的设定值需要修改/etc/mime.types这个文件即可。 /etc/MIME.types这个文件中储存的是以行作分隔的MIME types设定，每一行为一个独立的MIME type，如果要对应到特定的扩展区的话，就直接在MIME type之后留一个空白字符，在打上扩展名。以wmlc为例，必须在文件中加入以下这一行设定： application/vnd.wap.wmlc wmlc 完成之后，重新启动Apache，Apache就可以提供wmlc这个文件类型让使用者端存取了，当然，在第一节中所介绍的五个MIME type也都得加到设定文件中才能提供完整的WAP服务 大家直要修改如下文件就可以了,在windows环境下位于安装目录的 D:\Program Files\Apache Software Foundation\Apache2.2\conf 里面有一个mime.types 格式的文件,用字事本程序打开增加要下载的文件扩展名如: ISO RAR等等 Apache新增下载文件类型 Apache新增下载文件类型 后保存重新起起动一下服务器就ok了 *EnableSendfile 指令 说明 使用操作系统内核的sendfile支持来将文件发送到客户端 语法 EnableSendfile On&#124;Off 默认值 EnableSendfile On 作用域 server config, virtual host, directory, .htaccess 覆盖项 FileInfo 状态 核心(C) 模块 core 兼容性 仅在 [...]]]></description>
		<wfw:commentRss>http://www.wodeblog.com/archives/411/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>header(“Content-type:text/html;charset=utf-8&#8243;);</title>
		<link>http://www.wodeblog.com/archives/407</link>
		<comments>http://www.wodeblog.com/archives/407#comments</comments>
		<pubDate>Tue, 24 Apr 2012 04:13:48 +0000</pubDate>
		<dc:creator>yangzhiyong</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[utf-8]]></category>

		<guid isPermaLink="false">http://www.wodeblog.com/?p=407</guid>
		<description><![CDATA[每次都记不住php下定义输出内容的编码方式，写在博客里方便以后查看 header("Content-type:text/html;charset=utf-8");]]></description>
		<wfw:commentRss>http://www.wodeblog.com/archives/407/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>MySQL中innodb数据备份或转移后出现“使用中”和”doesn’t exist”解决办法</title>
		<link>http://www.wodeblog.com/archives/404</link>
		<comments>http://www.wodeblog.com/archives/404#comments</comments>
		<pubDate>Tue, 24 Apr 2012 02:17:19 +0000</pubDate>
		<dc:creator>yangzhiyong</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[innodb]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.wodeblog.com/?p=404</guid>
		<description><![CDATA[MySQL中数据备份中一个重要的问题. 错误表现: 运行页面时显示 Table “xxx” doesn’t exist. phpMyAdmin中存在的表显示”使用中(in use)”, 无法对表进行操作, 提示如1. 可能的原因: 升级了MySQL版本 改变了安装目录 数据备份不完全 一般来说, 数据备份不完全是引起这个错误的根本原因. 以WordPress数据库来说, 数据表类型分为MyISAM与InnoDB两种. 以表”Table”为例: 如类型是MyISAM, 数据文件则以”Table.frm”"Table.MYD”"Table.MYI”"三个文件存储于”/data/$databasename/”目录中. 如类型是InnoDB, 数据文件则存储在”$innodb_data_home_dir/″中的ibdata1文件中(一般情况)，结构文件存在于table_name.frm中. MySQL的数据库文件直接复制便可以使用，但是那是指“MyISAM”类型的表。 而使用MySQL-Front直接创建表，默认是“InnoDB”类型，这种类型的一个表在磁盘上只对应一个“*.frm”文件，不像MyISAM那样还“*.MYD,*.MYI”文件。 MyISAM类型的表直接拷到另一个数据库就可以直接使用，但是InnoDB类型的表却不行。解决方法就是: 同时拷贝innodb数据库表“*.frm”文件和innodb数据“ibdata1”文件到合适的位置。启动MySQL的Windows服务 由于MySQL这样数据混杂的形式, 往往很容易让使用者在备份时忘记了备份InnoDB, 从而导致了上述错误. 当然了, 解决方法就很简单, 连带Data_InnoDB一起转移便可. 仍然需要注意的是, 仅仅转移可能是不够的: 你可能需要检查my.ini中对于innodb_data_home_dir的定义. 如有, 则将它改成你现在Data_InnoDB的绝对目录路径. 如没有, 则将它加入my.ini中, 由于懒惰就不写冗长的注释了. innodb_data_home_dir = "C:/Program Files/MySQL/MySQL Server 5.0/data/" 如果数据库目录下面有：ibdata1 那就是它了。 将ibdata1拷到指定的innodb_data_home_dir目录中。 重启mysql服务即可！！！ 原文：http://blog.csdn.net/dongdongzzcs/article/details/5167149]]></description>
		<wfw:commentRss>http://www.wodeblog.com/archives/404/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php cookie失效</title>
		<link>http://www.wodeblog.com/archives/402</link>
		<comments>http://www.wodeblog.com/archives/402#comments</comments>
		<pubDate>Wed, 18 Apr 2012 00:24:08 +0000</pubDate>
		<dc:creator>yangzhiyong</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[Cookie]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[thinkphp]]></category>

		<guid isPermaLink="false">http://www.wodeblog.com/?p=402</guid>
		<description><![CDATA[昨天在做thinkphp项目的时候遇到一个问题，会员登录的cookie值失效了，以为是thinkphp的bug，网上也有资料说thinkphp做了补丁修复了这个漏洞，但是在更新了版本后发现还是没有效果，于是又尝试了各种办法，但还是没辙，最后不得不用session来代替。 今早过来打开这个项目偶然发现了一条提示，“ Cannot send session cookie - headers already sent (output started at E:\”。 这时我才反映过来，原来在定义session，cookie之前是不能有任何输出的，我检查了提示的那个文件发现在php结束符‘?>’后面还有很多空白，把这些空白删了之后cookie好使了，哎，折腾了一天的问题原来就是这些空白搞的鬼！]]></description>
		<wfw:commentRss>http://www.wodeblog.com/archives/402/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>php curl curl_getinfo 返回信息</title>
		<link>http://www.wodeblog.com/archives/400</link>
		<comments>http://www.wodeblog.com/archives/400#comments</comments>
		<pubDate>Tue, 17 Apr 2012 11:37:28 +0000</pubDate>
		<dc:creator>yangzhiyong</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[CURL]]></category>
		<category><![CDATA[curl_getinfo]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.wodeblog.com/?p=400</guid>
		<description><![CDATA[[Informational 1xx] 100="Continue" 101="Switching Protocols" [Successful 2xx] 200="OK" 201="Created" 202="Accepted" 203="Non-Authoritative Information" 204="No Content" 205="Reset Content" 206="Partial Content" [Redirection 3xx] 300="Multiple Choices" 301="Moved Permanently" 302="Found" 303="See Other" 304="Not Modified" 305="Use Proxy" 306="(Unused)" 307="Temporary Redirect" [Client Error 4xx] 400="Bad Request" 401="Unauthorized" 402="Payment Required" 403="Forbidden" 404="Not Found" 405="Method Not Allowed" 406="Not Acceptable" 407="Proxy Authentication Required" 408="Request Timeout" [...]]]></description>
		<wfw:commentRss>http://www.wodeblog.com/archives/400/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>php CURL方法curl_setopt()参数大全</title>
		<link>http://www.wodeblog.com/archives/398</link>
		<comments>http://www.wodeblog.com/archives/398#comments</comments>
		<pubDate>Tue, 17 Apr 2012 09:36:11 +0000</pubDate>
		<dc:creator>yangzhiyong</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[CURL]]></category>
		<category><![CDATA[curl_setopt()参数]]></category>

		<guid isPermaLink="false">http://www.wodeblog.com/?p=398</guid>
		<description><![CDATA[以下关于此函数各项使用参数: bool curl_setopt (int ch, string option, mixed value) curl_setopt()函数将为一个CURL会话设置选项。option参数是你想要的设置，value是这个选项给定的值。 下列选项的值将被作为长整形使用(在option参数中指定)： CURLOPT_INFILESIZE : 当你上传一个文件到远程站点，这个选项告诉PHP你上传文件的大小。 CURLOPT_VERBOSE : 如果你想CURL报告每一件意外的事情，设置这个选项为一个非零值。 CURLOPT_HEADER : 如果你想把一个头包含在输出中，设置这个选项为一个非零值。 CURLOPT_NOPROGRESS : 如果你不会PHP为CURL传输显示一个进程条，设置这个选项为一个非零值。注意：PHP自动设置这个选项为非零值，你应该仅仅为了调试的目的来改变这个选项。 CURLOPT_NOBODY : 如果你不想在输出中包含body部分，设置这个选项为一个非零值。 CURLOPT_FAILONERROR : 如果你想让PHP在发生错误(HTTP代码返回大于等于300)时，不显示，设置这个选项为一人非零值。默认行为是返回一个正常页，忽略代码。 CURLOPT_UPLOAD : 如果你想让PHP为上传做准备，设置这个选项为一个非零值。 CURLOPT_POST : 如果你想PHP去做一个正规的HTTP POST，设置这个选项为一个非零值。这个POST是普通的 application/x-www-from-urlencoded 类型，多数被HTML表单使用。 CURLOPT_FTPLISTONLY : 设置这个选项为非零值，PHP将列出FTP的目录名列表。 CURLOPT_FTPAPPEND : 设置这个选项为一个非零值，PHP将应用远程文件代替覆盖它。 CURLOPT_NETRC : 设置这个选项为一个非零值，PHP将在你的 ~./netrc 文件中查找你要建立连接的远程站点的用户名及密码。 CURLOPT_FOLLOWLOCATION : 设置这个选项为一个非零值(象 “Location: “)的头，服务器会把它当做HTTP头的一部分发送(注意这是递归的，PHP将发送形如 “Location: [...]]]></description>
		<wfw:commentRss>http://www.wodeblog.com/archives/398/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>永动物流鄂尔多斯车队</title>
		<link>http://www.wodeblog.com/archives/386</link>
		<comments>http://www.wodeblog.com/archives/386#comments</comments>
		<pubDate>Sat, 14 Apr 2012 06:22:24 +0000</pubDate>
		<dc:creator>yangzhiyong</dc:creator>
				<category><![CDATA[ecms]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[永动物流]]></category>
		<category><![CDATA[鄂尔多斯车队]]></category>

		<guid isPermaLink="false">http://www.wodeblog.com/?p=386</guid>
		<description><![CDATA[今天把文章采集整理完毕后永动物流鄂尔多斯车队（www.wuliu006.com）正式上线了。 永动鄂尔多斯车队是永动物流旗下专业从事鄂尔多斯煤炭，钢铁等各种货物的物流运输团队，鄂尔多斯车队凭着扎实的脚步和诚恳的服务态度受到客户的认可和好评，我们今后将趋近全力发展鄂尔多斯车队在鄂尔多斯的运输业务，为建设美好的鄂尔多斯市贡献自己的一份力量！ www.wuliu006.com是本人为永动物流鄂尔多斯车队做的一个企业宣传推广物流网站，旨在方便鄂尔多斯需要货物运输的朋友能通过网络找到我们永动物流鄂尔多斯车队，促进经济的发展，扩大您的业务！ www.wuliu006.com采用帝国内容管理系统，全站伪静态，接下来继续增加网站地图，搜索，tags标签等功能，尽请期待！ 原文：http://www.wuliu006.com/show-58-398]]></description>
		<wfw:commentRss>http://www.wodeblog.com/archives/386/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

