<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Verbose Arguments</title>
	<atom:link href="http://wheremy.feethavebeen.com/2009/06/verbose-arguments/feed/" rel="self" type="application/rss+xml" />
	<link>http://wheremy.feethavebeen.com/2009/06/verbose-arguments/</link>
	<description>Sometimes, you just go where your feet take you</description>
	<lastBuildDate>Mon, 01 Mar 2010 21:37:00 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: xangelo</title>
		<link>http://wheremy.feethavebeen.com/2009/06/verbose-arguments/comment-page-1/#comment-413</link>
		<dc:creator>xangelo</dc:creator>
		<pubDate>Wed, 04 Nov 2009 18:21:50 +0000</pubDate>
		<guid isPermaLink="false">http://wheremy.feethavebeen.com/?p=112#comment-413</guid>
		<description>The reason I opted to implement it this way is because it allows the developer to specify the arguments in any order. Therefore, they will never run into an issue where they set the arguments in one order, whereas the developer of the script expected it differently. Thing of this as a key-based version of func_get_args(); which ignores the keys and just uses the values instead.</description>
		<content:encoded><![CDATA[<p>The reason I opted to implement it this way is because it allows the developer to specify the arguments in any order. Therefore, they will never run into an issue where they set the arguments in one order, whereas the developer of the script expected it differently. Thing of this as a key-based version of func_get_args(); which ignores the keys and just uses the values instead.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cigraphics</title>
		<link>http://wheremy.feethavebeen.com/2009/06/verbose-arguments/comment-page-1/#comment-330</link>
		<dc:creator>cigraphics</dc:creator>
		<pubDate>Wed, 21 Oct 2009 12:46:16 +0000</pubDate>
		<guid isPermaLink="false">http://wheremy.feethavebeen.com/?p=112#comment-330</guid>
		<description>You can use this function to get the args: func_get_args()

example:

function test() {
 $args = func_get_args();
 echo &#039;Args: &#039;;
 for ( $i = 0; $i &lt; $args; $i++ ) {
  echo $args[$i].&#039; &#039;;
 }
}

test(1, &#039;test&#039;, 2);</description>
		<content:encoded><![CDATA[<p>You can use this function to get the args: func_get_args()</p>
<p>example:</p>
<p>function test() {<br />
 $args = func_get_args();<br />
 echo &#8216;Args: &#8216;;<br />
 for ( $i = 0; $i &lt; $args; $i++ ) {<br />
  echo $args[$i].&#039; &#039;;<br />
 }<br />
}</p>
<p>test(1, &#039;test&#039;, 2);</p>
]]></content:encoded>
	</item>
</channel>
</rss>
