<?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>Noop.lv. Живу я тут &#187; php</title>
	<atom:link href="http://www.noop.lv/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.noop.lv</link>
	<description>Маленькая личная помойка</description>
	<lastBuildDate>Fri, 06 Jan 2012 09:15:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>phpsh, or yet another php shell from facebook</title>
		<link>http://www.noop.lv/2011/12/20/phpsh-or-yet-another-php-shell-from-facebook/</link>
		<comments>http://www.noop.lv/2011/12/20/phpsh-or-yet-another-php-shell-from-facebook/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 14:49:08 +0000</pubDate>
		<dc:creator>melnays</dc:creator>
				<category><![CDATA[misc]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[interactive]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://www.noop.lv/?p=196</guid>
		<description><![CDATA[A better interactive php shell is made by facebook, to get it, just do: &#160; git clone git://github.com/facebook/phpsh.git cd phpsh python setup.py build sudo python setup.py install &#160; It's fast, cool and doesn't break when you misprint variable name of &#8230; <a href="http://www.noop.lv/2011/12/20/phpsh-or-yet-another-php-shell-from-facebook/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A better interactive php shell is made by facebook, to get it, just do:</p>
<pre class="bash">&nbsp;
git clone git://github.com/facebook/phpsh.git
<span style="color: #7a0874; font-weight: bold;">cd</span> phpsh
python setup.py build
<span style="color: #c20cb9; font-weight: bold;">sudo</span> python setup.py <span style="color: #c20cb9; font-weight: bold;">install</span>
&nbsp;</pre>
<p>It's fast, cool and doesn't break when you misprint variable name of function:</p>
<p><a href="http://www.noop.lv/wp-content/uploads/2011/12/phpsh.png"><img src="http://www.noop.lv/wp-content/uploads/2011/12/phpsh.png" alt="" title="phpsh" width="1222" height="420" class="alignnone size-full wp-image-198" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.noop.lv/2011/12/20/phpsh-or-yet-another-php-shell-from-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP wildcard matching function</title>
		<link>http://www.noop.lv/2011/11/17/php-wildcard-matching-function/</link>
		<comments>http://www.noop.lv/2011/11/17/php-wildcard-matching-function/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 15:12:40 +0000</pubDate>
		<dc:creator>melnays</dc:creator>
				<category><![CDATA[opensource projects]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wildcard]]></category>

		<guid isPermaLink="false">http://www.noop.lv/?p=159</guid>
		<description><![CDATA[Just published my PHP wildcard matching function on github - https://github.com/andrewtch/phpwildcard. See doc there and use it like this: &#160; wildcard_match&#40;'foo.*', 'foo.xy'&#41;; //true wildcard_match&#40;'foo.?', 'foo'&#41;; //false &#160; array wildcard matching is supported too: &#160; wildcard_match&#40;'foo.*', array&#40;'boo.bar', 'foo.buz', 'buz.bar'&#41; // array('foo.buz') &#8230; <a href="http://www.noop.lv/2011/11/17/php-wildcard-matching-function/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Just published my PHP wildcard matching function on github - <a href="https://github.com/andrewtch/phpwildcard" title="phpwildcard">https://github.com/andrewtch/phpwildcard</a>.</p>
<p>See doc there and use it like this:</p>
<pre class="php">&nbsp;
wildcard_match<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'foo.*'</span>, <span style="color: #ff0000;">'foo.xy'</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #808080; font-style: italic;">//true</span>
wildcard_match<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'foo.?'</span>, <span style="color: #ff0000;">'foo'</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #808080; font-style: italic;">//false</span>
&nbsp;</pre>
<p>array wildcard matching is supported too:</p>
<pre class="php">&nbsp;
wildcard_match<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'foo.*'</span>, <a href="http://www.php.net/array"><span style="color: #000066;">array</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'boo.bar'</span>, <span style="color: #ff0000;">'foo.buz'</span>, <span style="color: #ff0000;">'buz.bar'</span><span style="color: #66cc66;">&#41;</span> <span style="color: #808080; font-style: italic;">// array('foo.buz')</span>
&nbsp;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.noop.lv/2011/11/17/php-wildcard-matching-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

