<?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"
	>
<channel>
	<title>Comments on: Identifying function usage in PHP code</title>
	<atom:link href="http://petersonpages.com/mariano/blog/2008/07/24/identifying-function-usage-in-php-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://petersonpages.com/mariano/blog/2008/07/24/identifying-function-usage-in-php-code/</link>
	<description>The truth behind the curtain</description>
	<pubDate>Wed, 10 Mar 2010 18:35:02 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: T.</title>
		<link>http://petersonpages.com/mariano/blog/2008/07/24/identifying-function-usage-in-php-code/#comment-2038</link>
		<dc:creator>T.</dc:creator>
		<pubDate>Tue, 27 Jan 2009 20:22:16 +0000</pubDate>
		<guid isPermaLink="false">http://petersonpages.com/mariano/blog/?p=19#comment-2038</guid>
		<description>In Eclipse I just do a search over the whole project (Ctrl+H) if I wanna see where a method/function is used. After a first search all following searches are usually pretty fast even on projects with several thousand files.

But I am really disappointed, that it is 2009, and I still haven't seen an IDE, that allows the development and refactoring features for PHP, that Java developers can use with Eclipse for maaany years now. PHPEclipse is ok, but still far from Eclipse's Java development capabilities.

T.</description>
		<content:encoded><![CDATA[<p>In Eclipse I just do a search over the whole project (Ctrl+H) if I wanna see where a method/function is used. After a first search all following searches are usually pretty fast even on projects with several thousand files.</p>
<p>But I am really disappointed, that it is 2009, and I still haven&#8217;t seen an IDE, that allows the development and refactoring features for PHP, that Java developers can use with Eclipse for maaany years now. PHPEclipse is ok, but still far from Eclipse&#8217;s Java development capabilities.</p>
<p>T.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://petersonpages.com/mariano/blog/2008/07/24/identifying-function-usage-in-php-code/#comment-2023</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Fri, 21 Nov 2008 00:15:20 +0000</pubDate>
		<guid isPermaLink="false">http://petersonpages.com/mariano/blog/?p=19#comment-2023</guid>
		<description>Hey Mariano,

Just one gotcha I wanted to mention about this.  Grep will not match across multiple lines.  Something like this would get completely missed by grepf:
function
        ILikeToUseReturnALot ( $variable
        $variable2
        )
        {
        }

Also, for things that grepf does match, you may want to include -A 2 -B 2 along with the other parameters for grep.  It will give you the two lines above and below the matching line which may contain comments or other parameters not included on the matching line which could give additional contextual help.</description>
		<content:encoded><![CDATA[<p>Hey Mariano,</p>
<p>Just one gotcha I wanted to mention about this.  Grep will not match across multiple lines.  Something like this would get completely missed by grepf:<br />
function<br />
        ILikeToUseReturnALot ( $variable<br />
        $variable2<br />
        )<br />
        {<br />
        }</p>
<p>Also, for things that grepf does match, you may want to include -A 2 -B 2 along with the other parameters for grep.  It will give you the two lines above and below the matching line which may contain comments or other parameters not included on the matching line which could give additional contextual help.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
