<?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>Chimera &#187; php</title>
	<atom:link href="http://cahayadi.com/site/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://cahayadi.com/site</link>
	<description>Knowledge Belong To The World</description>
	<lastBuildDate>Mon, 08 Feb 2010 11:16:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>wordpress relative url</title>
		<link>http://cahayadi.com/site/2008/06/30/wordpress-relative-url/</link>
		<comments>http://cahayadi.com/site/2008/06/30/wordpress-relative-url/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 06:40:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://cahayadi.com/site/?p=249</guid>
		<description><![CDATA[edit wp-includes/functions.php
--
function get_option( $setting ) {
	global $wpdb;

	if (in_array($setting, array('siteurl', 'home'))) {
		if (ereg('(wp-includes)', $_SERVER['PHP_SELF'], $r)) {
			return ('http://'.$_SERVER['SERVER_NAME'].(
				substr(
					$_SERVER['PHP_SELF'], 0,
					strpos($_SERVER['PHP_SELF'], $r[0])
				)
			));
		} else if (ereg('wp-admin', $_SERVER['PHP_SELF'])) {
			return 'http://'.$_SERVER['SERVER_NAME']
			. dirname(dirname($_SERVER['PHP_SELF']));
		} else {
			$_SERVER_PHP_SELF = $_SERVER['PHP_SELF'];
			$_SERVER_SCRIPT_FILENAME = $_SERVER['SCRIPT_FILENAME'];
			while ($_SERVER_SCRIPT_FILENAME = dirname($_SERVER_SCRIPT_FILENAME)) {
				$_SERVER_PHP_SELF = dirname($_SERVER_PHP_SELF);
				if (file_exists($_SERVER_SCRIPT_FILENAME.'/wp-content')) {
					break;
				}
				if ($_SERVER_SCRIPT_FILENAME == '.') break;
			}
			return 'http://'.$_SERVER['SERVER_NAME'].$_SERVER_PHP_SELF;
		}
	}
--
]]></description>
			<content:encoded><![CDATA[<p>edit wp-includes/functions.php</p>
<pre>--
function get_option( $setting ) {
	global $wpdb;

	if (in_array($setting, array('siteurl', 'home'))) {
		if (ereg('(wp-includes)', $_SERVER['PHP_SELF'], $r)) {
			return ('http://'.$_SERVER['SERVER_NAME'].(
				substr(
					$_SERVER['PHP_SELF'], 0,
					strpos($_SERVER['PHP_SELF'], $r[0])
				)
			));
		} else if (ereg('wp-admin', $_SERVER['PHP_SELF'])) {
			return 'http://'.$_SERVER['SERVER_NAME']
			. dirname(dirname($_SERVER['PHP_SELF']));
		} else {
			$_SERVER_PHP_SELF = $_SERVER['PHP_SELF'];
			$_SERVER_SCRIPT_FILENAME = $_SERVER['SCRIPT_FILENAME'];
			while ($_SERVER_SCRIPT_FILENAME = dirname($_SERVER_SCRIPT_FILENAME)) {
				$_SERVER_PHP_SELF = dirname($_SERVER_PHP_SELF);
				if (file_exists($_SERVER_SCRIPT_FILENAME.'/wp-content')) {
					break;
				}
				if ($_SERVER_SCRIPT_FILENAME == '.') break;
			}
			return 'http://'.$_SERVER['SERVER_NAME'].$_SERVER_PHP_SELF;
		}
	}
--</pre>
]]></content:encoded>
			<wfw:commentRss>http://cahayadi.com/site/2008/06/30/wordpress-relative-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PDT: PHP Development Tools for Eclipse Platform</title>
		<link>http://cahayadi.com/site/2008/06/27/pdt-php-development-tools-for-eclipse-platform/</link>
		<comments>http://cahayadi.com/site/2008/06/27/pdt-php-development-tools-for-eclipse-platform/#comments</comments>
		<pubDate>Fri, 27 Jun 2008 07:58:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://cahayadi.com/site/?p=246</guid>
		<description><![CDATA[The PDT project provides a PHP Development Tools framework for the Eclipse platform. This project encompasses all development components necessary to develop PHP and facilitate extensibility. It leverages the existing Web Tools Project in providing developers with PHP capabilities.
Project Principles:
    * Intuitive and easy to learn
    * Seamless integration [...]]]></description>
			<content:encoded><![CDATA[<p>The PDT project provides a PHP Development Tools framework for the Eclipse platform. This project encompasses all development components necessary to develop PHP and facilitate extensibility. It leverages the existing Web Tools Project in providing developers with PHP capabilities.</p>
<p>Project Principles:<br />
    * Intuitive and easy to learn<br />
    * Seamless integration with the Web Tools project<br />
    * Adherence to Eclipse standards<br />
    * Extensibility<br />
    * Continuous support of PHP developments</p>
]]></content:encoded>
			<wfw:commentRss>http://cahayadi.com/site/2008/06/27/pdt-php-development-tools-for-eclipse-platform/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>phpDocumentor</title>
		<link>http://cahayadi.com/site/2008/06/27/phpdocumentor/</link>
		<comments>http://cahayadi.com/site/2008/06/27/phpdocumentor/#comments</comments>
		<pubDate>Fri, 27 Jun 2008 07:56:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://cahayadi.com/site/?p=245</guid>
		<description><![CDATA[phpDocumentor tags are very similar to tags for the JavaDoc tool for Sun&#8217;s Java Programming Language. Tags are only parsed if they are the first thing on a new line of a DocBlock. You may use the @ character freely throughout documents as long as it does not begin a new line. An example:
/**
* tags [...]]]></description>
			<content:encoded><![CDATA[<p>phpDocumentor tags are very similar to tags for the JavaDoc tool for Sun&#8217;s Java Programming Language. Tags are only parsed if they are the first thing on a new line of a DocBlock. You may use the @ character freely throughout documents as long as it does not begin a new line. An example:</p>
<p>/**<br />
* tags demonstration<br />
* @author this tag is parsed, but this @version tag is ignored<br />
* @version 1.0 this version tag is parsed<br />
*/</p>
]]></content:encoded>
			<wfw:commentRss>http://cahayadi.com/site/2008/06/27/phpdocumentor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
