<?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>plasmid.co.uk &#187; PHP extensions</title>
	<atom:link href="http://plasmid.co.uk/tag/php-extensions/feed/" rel="self" type="application/rss+xml" />
	<link>http://plasmid.co.uk</link>
	<description>because life is faster in reverse ...</description>
	<lastBuildDate>Thu, 20 May 2010 23:07:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
  <link>http://plasmid.co.uk</link>
  <url>http://plasmid.co.uk/wp/favicon.ico</url>
  <title>plasmid.co.uk</title>
</image>
		<item>
		<title>List PHP extensions with functions</title>
		<link>http://plasmid.co.uk/2008/08/11/list-php-extensions-with-functions/</link>
		<comments>http://plasmid.co.uk/2008/08/11/list-php-extensions-with-functions/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 15:31:25 +0000</pubDate>
		<dc:creator>plasmid</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Extension functions]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP extensions]]></category>

		<guid isPermaLink="false">http://plasmid.co.uk/?p=58</guid>
		<description><![CDATA[This is a quickie I thought I'd put up on my break. Although it isn't exactly complex or ground-breaking, its nice to have it at hand if you wanted to see which extensions provide particular functions (without having to refer to php.net of course!)

	$exts = get_loaded_extensions();

	foreach($exts as $ext) {
		$flist[$ext] = get_extension_funcs($ext);
	}

	print_r($flist);

This is a nice starting [...]]]></description>
			<content:encoded><![CDATA[<p>This is a quickie I thought I'd put up on my break. Although it isn't exactly complex or ground-breaking, its nice to have it at hand if you wanted to see <strong>which extensions provide particular functions</strong> (without having to refer to <a href="http://php.net">php.net</a> of course!)</p>
<pre lang="code" class="php">
	$exts = get_loaded_extensions();

	foreach($exts as $ext) {
		$flist[$ext] = get_extension_funcs($ext);
	}

	print_r($flist);
</pre>
<p>This is a nice <strong>starting point</strong> if you wanted to write a script that determines whether the server you're installing onto has the necessary PHP extensions loaded.</p>
]]></content:encoded>
			<wfw:commentRss>http://plasmid.co.uk/2008/08/11/list-php-extensions-with-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.255 seconds -->
