<?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>are.ehibou.com &#187; php</title>
	<atom:link href="http://are.ehibou.com/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://are.ehibou.com</link>
	<description>are.ehibou.com Web Log</description>
	<lastBuildDate>Fri, 30 Jul 2010 10:21:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>php+tomcat on windows</title>
		<link>http://are.ehibou.com/php-tomcat-on-windows/</link>
		<comments>http://are.ehibou.com/php-tomcat-on-windows/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 16:09:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Side Notes]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tomcat]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[tomcat5]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://are.ehibou.com/?p=94</guid>
		<description><![CDATA[Got a task to install php on top of tomcat (Tomcat5) on Windows. Was strugling to make it work for a while. Was reading wrong blogs and newsgroups for a while without success untill I found a very good resource &#8211; JavaBridge. It was so easy as to run msi to install php and to [...]]]></description>
		<wfw:commentRss>http://are.ehibou.com/php-tomcat-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>anonymous, dynamic, variable classes and methods</title>
		<link>http://are.ehibou.com/anonymous-dynamic-variable-classes-and-methods/</link>
		<comments>http://are.ehibou.com/anonymous-dynamic-variable-classes-and-methods/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 12:53:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Side Notes]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://are.ehibou.com/?p=74</guid>
		<description><![CDATA[To call a method by dynamic name you can do this: $methodName=&#34;MyMethod&#34;; $result=$methodName(); To create a class by dynamic name you can do this: $className=&#34;MyClass&#34;; $classVar=new $className; To call any method by dynamic name in previously initialized class you can do this: $methodName=&#34;MyMethod&#34;; $result=$classVar-&#38;gt;$methodName();]]></description>
		<wfw:commentRss>http://are.ehibou.com/anonymous-dynamic-variable-classes-and-methods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Php Script To Detect And Verify Googlebot</title>
		<link>http://are.ehibou.com/php-script-to-detect-and-verify-googlebot/</link>
		<comments>http://are.ehibou.com/php-script-to-detect-and-verify-googlebot/#comments</comments>
		<pubDate>Mon, 26 Nov 2007 20:37:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://are.ehibou.com/php-script-to-detect-and-verify-googlebot/</guid>
		<description><![CDATA[Php Script To Detect And Verify Googlebot function IsGooglebot(){ // check if user agent contains googlebt if(eregi(&#34;Googlebot&#34;,$_SERVER['HTTP_USER_AGENT'])){ $ip = $_SERVER['REMOTE_ADDR']; //server name e.g. crawl-66-249-66-1.googlebot.com $name = gethostbyaddr($ip); //check if name ciontains googlebot if(eregi(&#34;Googlebot&#34;,$name)){ //list of IP's $hosts = gethostbynamel($name); foreach($hosts as $host){ if ($host == $ip){ return true; } } return false; // Pretender, take [...]]]></description>
		<wfw:commentRss>http://are.ehibou.com/php-script-to-detect-and-verify-googlebot/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>global or $_GLOBAL[] Versus local variables</title>
		<link>http://are.ehibou.com/global-or-_global-versus-local-variables/</link>
		<comments>http://are.ehibou.com/global-or-_global-versus-local-variables/#comments</comments>
		<pubDate>Fri, 20 Jul 2007 20:29:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Side Notes]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://are.ehibou.com/global-or-_global-versus-local-variables/</guid>
		<description><![CDATA[Did some tests and found out that scripts of type $a=5; function foo(){ global $a; return $a +5; } foo(); have relatively bad performance &#8230;. try to use something like $a=5; function foo($a){ return $a +5; } foo($a); instead &#8230;]]></description>
		<wfw:commentRss>http://are.ehibou.com/global-or-_global-versus-local-variables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
