<?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 Tutorials Code Snippets and Php Tips &#187; php existent functions</title>
	<atom:link href="http://readytousesolutions.com/phpblog/tag/php-existent-functions/feed/" rel="self" type="application/rss+xml" />
	<link>http://readytousesolutions.com/phpblog</link>
	<description>PHP tutorials - Examples of the most useful scripts</description>
	<lastBuildDate>Thu, 23 Sep 2010 06:54:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>PHP Tutorial : Writing your own custom functions</title>
		<link>http://readytousesolutions.com/phpblog/php-tutorial-writing-your-own-custom-functions/</link>
		<comments>http://readytousesolutions.com/phpblog/php-tutorial-writing-your-own-custom-functions/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 19:47:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Basic PHP]]></category>
		<category><![CDATA[custom functions]]></category>
		<category><![CDATA[php custom functions]]></category>
		<category><![CDATA[php existent functions]]></category>
		<category><![CDATA[php functions]]></category>
		<category><![CDATA[php functions name]]></category>
		<category><![CDATA[php own functions]]></category>

		<guid isPermaLink="false">http://www.crivionweb.com/phpblog/?p=135</guid>
		<description><![CDATA[Errrr, I dont know which hello word to say for this post to keep the &#8220;unique&#8221; style so will start explaining how you can do it. Firstly, you have red about a lot of &#8220;ready made&#8221; php functions which comes &#8230; <a href="http://readytousesolutions.com/phpblog/php-tutorial-writing-your-own-custom-functions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Errrr,</p>
<p>I dont know which hello word to say for this post to keep the &#8220;unique&#8221; style so will start explaining how you can do it. Firstly, you have red about a lot of &#8220;ready made&#8221; php functions which comes with the language. Now it&#8217;s time to create your own functions with your own name (must be different than existent funtions, start with a char not a number, etc etc). How you do it? Simple, by declaring its name, Look:</p>
<pre class="php">
<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span>
<span class="phpFunctionKeyword">function</span><span class="htmlText"> myFirstOne</span><span class="phpOperator">(</span><span class="phpOperator">)</span> <span class="phpOperator">{</span>
<span class="htmlText">
print </span><span class="phpString">"what to<span class="phpKeyword"> do<span class="phpOperator">?</span></span>"</span><span class="phpText">;</span>
<span class="phpOperator">}</span>
<span class="phpComment">//and appeal it - will show the message
</span>
<span class="htmlText">
myFirstOne</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://readytousesolutions.com/phpblog/php-tutorial-writing-your-own-custom-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

