<?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>雾松萌石 &#187; PHP</title>
	<atom:link href="http://mmlst.com/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://mmlst.com</link>
	<description>分享知识</description>
	<lastBuildDate>Fri, 07 Aug 2009 01:14:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WorkPress使用NextGen Gallery出现的GD2 LIBRARY错误</title>
		<link>http://mmlst.com/2009/03/07/workpress%e4%bd%bf%e7%94%a8nextgen-gallery%e5%87%ba%e7%8e%b0%e7%9a%84gd2-library%e9%94%99%e8%af%af/</link>
		<comments>http://mmlst.com/2009/03/07/workpress%e4%bd%bf%e7%94%a8nextgen-gallery%e5%87%ba%e7%8e%b0%e7%9a%84gd2-library%e9%94%99%e8%af%af/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 11:47:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[NextGen Gallery]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://mmlst.com/2009/03/07/workpress%e4%bd%bf%e7%94%a8nextgen-gallery%e5%87%ba%e7%8e%b0%e7%9a%84gd2-library%e9%94%99%e8%af%af/</guid>
		<description><![CDATA[在本地Wordpress中使用NextGen Gallery相册。上传图片完成后，建立小图标的时候出现以下错误提示信息：
You do not have the GD Library installed. This class requires the GD library to function properly.
visit http://us2.php.net/manual/en/ref.image.php for more information
解决办法：
php.ini
:extension=php_gd2.dll
去除前面的分号
php.ini 重新复制到C:\windows
Apache 重启
]]></description>
		<wfw:commentRss>http://mmlst.com/2009/03/07/workpress%e4%bd%bf%e7%94%a8nextgen-gallery%e5%87%ba%e7%8e%b0%e7%9a%84gd2-library%e9%94%99%e8%af%af/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8216;return&#8217; statement outside the function</title>
		<link>http://mmlst.com/2009/01/09/return-statement-outside-the-function/</link>
		<comments>http://mmlst.com/2009/01/09/return-statement-outside-the-function/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 00:19:18 +0000</pubDate>
		<dc:creator>mmlst</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[网页制作]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://mmlst.com/?p=111</guid>
		<description><![CDATA[一般我都是在FF下进行网页代码调试，这次当在IE7下调试时，出现“return statement outside the function”，google了一下发现是.js代码中的中文注释引起的问题，删了.js里的中文注释就一切正常了.
但又出现一个问题，就是菜单无法显示，我试了试把另外一个网页的中文注释给删掉，又正常了.
我用的页面编码是utf-8，也许是这个引起的问题所在吧
]]></description>
		<wfw:commentRss>http://mmlst.com/2009/01/09/return-statement-outside-the-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>为Editplus添加PHP的模板</title>
		<link>http://mmlst.com/2008/10/30/%e4%b8%baeditplus%e6%b7%bb%e5%8a%a0php%e7%9a%84%e6%a8%a1%e6%9d%bf/</link>
		<comments>http://mmlst.com/2008/10/30/%e4%b8%baeditplus%e6%b7%bb%e5%8a%a0php%e7%9a%84%e6%a8%a1%e6%9d%bf/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 00:01:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Editplus]]></category>

		<guid isPermaLink="false">http://mmlst.com/?p=61</guid>
		<description><![CDATA[使用Editplus，里面的默认模板没有PHP的。当你想新建一个PHP文件的时候，需要点“新建”-“其它”-“PHP”，有点麻烦。
网上有人用的方法是：用记事本新建一个php.txt，里面写上&#60;?php ?&#62;，这种方法我试了一下，发现新建的PHP文件的代码&#60;?php ?&#62;不带有颜色，而且保存的时候后缀名自动是txt，需要手动改一下，也麻烦。
后来查看了Editplus的现有模板，发现是用template当名字，后缀名是各种类型文件的名称。
所以把上面的php.txt改成template.php，然后放到Editplus目录下，点击“文件”-“新建”-“配置模板”-“添加”-“template.php&#8221;。 ”菜单文本”改成PHP，然后确定保存就行了。这样新建的PHP文件代码带有颜色，而且保存的时候是按php来保存的。
]]></description>
		<wfw:commentRss>http://mmlst.com/2008/10/30/%e4%b8%baeditplus%e6%b7%bb%e5%8a%a0php%e7%9a%84%e6%a8%a1%e6%9d%bf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<html>
<head>
<title></title>
<meta name="verify-v1" content="g9TyLKV+Qw/waEbbIIFWqxWkvuCs7piVz1GOM0RuSuM=" />
</head>
<body>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-5977749-1");
pageTracker._initData();
pageTracker._trackPageview();
</script>
</body>
</html>