<?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>Pixelar.me &#187; echo</title>
	<atom:link href="http://pixelar.me/tag/echo/feed/" rel="self" type="application/rss+xml" />
	<link>http://pixelar.me</link>
	<description>Si no es digital, quedo afuera!</description>
	<lastBuildDate>Thu, 15 Jul 2010 23:20:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>(Pseudo)Función: Echo</title>
		<link>http://pixelar.me/pseudofuncion-echo/</link>
		<comments>http://pixelar.me/pseudofuncion-echo/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 22:00:22 +0000</pubDate>
		<dc:creator>Marcelo</dc:creator>
				<category><![CDATA[Códigos]]></category>
		<category><![CDATA[Funciones]]></category>
		<category><![CDATA[echo]]></category>

		<guid isPermaLink="false">http://phpnight.com/pseudofuncion-echo/36/</guid>
		<description><![CDATA[echo es una sentencia de PHP que muestra una o más cadenas (Strings).
Como no es una función no es necesario utilizar paréntesis para pasar parámetros, sino simplemente ponemos: echo $variable;
Veamos algunos ejemplos:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
echo &#34;Hola Mundo!&#34;;
// esto muestra Hola Mundo! por pantalla.
&#160;
$variable = &#34;Probando...&#34;;
echo $variable;
// esto muestra Probando... por pantalla.
&#160;
$var1=&#34;Estas leyendo &#34;;
$var2=&#34;un artículo en phpnight.com&#34;;
echo $var1.$var2;
// esto [...]]]></description>
		<wfw:commentRss>http://pixelar.me/pseudofuncion-echo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
