<?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>Mon, 03 Oct 2011 13:29:25 +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>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[php]]></category>
		<category><![CDATA[Side Notes]]></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[<p>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>1</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[php]]></category>
		<category><![CDATA[Side Notes]]></category>

		<guid isPermaLink="false">http://are.ehibou.com/?p=74</guid>
		<description><![CDATA[<p>To call a method by dynamic name you can do this:</p> $methodName="MyMethod"; $result=$methodName(); <p>To create a class by dynamic name you can do this:</p> $className="MyClass"; $classVar=new $className; <p>To call any method by dynamic name in previously initialized class you can do this:</p> $methodName="MyMethod"; $result=$classVar-&#62;$methodName(); <p> </p> ]]></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[<p>Php Script To Detect And Verify Googlebot</p> function IsGooglebot(){ // check if user agent contains googlebt if(eregi("Googlebot",$_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("Googlebot",$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>4</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[php]]></category>
		<category><![CDATA[Side Notes]]></category>

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

