<?xml version="1.0"?>
<rss version="2.0">
  <channel>
    <title>PHPDeveloper.org</title>
    <link>http://www.phpdeveloper.org</link>
    <description>Up-to-the Minute PHP News, views and community</description>
    <language>en-us</language>
    <pubDate>Wed, 19 Jun 2013 20:29:08 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[Gonzalo Ayuso's Blog: Speed up page page load combining javascript files with PHP]]></title>
      <guid>http://www.phpdeveloper.org/news/15937</guid>
      <link>http://www.phpdeveloper.org/news/15937</link>
      <description><![CDATA[<p>
<i>Gonzalo Ayuso</i> has a <a href="http://gonzalo123.wordpress.com/2011/02/21/speed-up-page-page-load-combining-javascript-files-with-php/">handy performance tip</a> for getting that little bit extra speed from your page load times - combining Javascript with PHP files.
</p>
<blockquote>
One of the golden rules when we want a high performance web site is minimize the HTTP requests. Normally we have several JavaScript files within our projects. It's a very good practice to combine all our JavaScript files into an only one file. [...] But if your project is alive and you are changing it, it's helpful to spare your JavaScript files between several files. [...]  So we need to choose between high performance and development comfort.
</blockquote>
<p>
He includes a quick script that runs through your javascript directory (recursively), grabs all of the javascript content from each, combines and minifies them to serve gzip compressed out to the browser.
</p>]]></description>
      <pubDate>Mon, 21 Feb 2011 13:01:54 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[David Abdemoulaie's Blog:  bundle-phu - minify, bundle, and compress your js/css in Zend Framework]]></title>
      <guid>http://www.phpdeveloper.org/news/13895</guid>
      <link>http://www.phpdeveloper.org/news/13895</link>
      <description><![CDATA[<p>
<i>David Abdemoulaie</i> couldn't find just what he was looking for when it came to a minification tool for his Javascript/CSS in his Zend Framework applications so he developed <a href="http://github.com/hobodave/bundle-phu">bundle-phu</a>.
</p>
<blockquote>
I've used a few different CSS/JS bundlers, but none have ever fulfilled all that I needed. [...] Thus, I created <a href="http://github.com/hobodave/bundle-phu">bundle-phu</a>. Bundle-phu is a set of <a href="http://framework.zend.com/">Zend Framework</a> view helpers that do all of the above. Bundle-phu is inspired by, <a href="http://code.google.com/p/bundle-fu/">bundle-fu</a> a Ruby on Rails equivalent. [...] It automagically concatenate, minify, and gzip your javascript and stylesheets into bundles. This reduces the number of HTTP requests to your servers as well as your bandwidth.
</blockquote>
<p>
He includes how to install it, how to use it in your code and what the end result is when you view the actual HTML source. You can check out the latest version from the project's <a href="http://github.com/hobodave/bundle-phu">github account</a>.
</p>]]></description>
      <pubDate>Fri, 22 Jan 2010 13:37:39 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[TechFounder.net: Making web-pages go faster using PHP]]></title>
      <guid>http://www.phpdeveloper.org/news/11414</guid>
      <link>http://www.phpdeveloper.org/news/11414</link>
      <description><![CDATA[<p>
The TechFounder blog has a <a href="http://www.techfounder.net/2008/11/16/making-web-pages-go-faster-using-php/">few general tips</a> you can use to help your web pages go a bit faster:
</p>
<blockquote>
As it might be expected, there are several techniques to optimize the delivery of web pages. The <a href="http://developer.yahoo.com/performance/">Exceptional Performance</a> guide by Yahoo is a great resource for a multitude of optimizations practices, including specifically two techniques which I will address in this article - script <a href="http://developer.yahoo.net/blog/archives/2007/07/high_performanc_8.html">minifcation</a> and <A href="http://yuiblog.com/blog/2008/07/21/performance-research-part-6/">concatenation</a>.
</blockquote>
<p>
Suggestions include reducing total request counts and minification of external libraries via the <a href="http://minify.googlecode.com/files/release_2.1.1.zip">Minify</a> tool.
</p>]]></description>
      <pubDate>Mon, 17 Nov 2008 08:42:16 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Matthew Turland's Blog:  Output Filters in Zend_View]]></title>
      <guid>http://www.phpdeveloper.org/news/10348</guid>
      <link>http://www.phpdeveloper.org/news/10348</link>
      <description><![CDATA[<p>
<i>Matthew Turland</i> has written up <a href="http://ishouldbecoding.com/2008/06/04/output-filters-in-zend_view">a new tutorial</a> explaining something that isn't "currently very well documented" in the Zend Framework - output filters.
</p>
<blockquote>
They're mentioned in passing in the <a href="http://framework.zend.com/manual/en/zend.view.html">Zend_View</a> documentation, but not reviewed in detail anywhere in the Reference Guide as of version 1.5.2. I was curious enough about how to implement markup <a href="http://yuiblog.com/blog/2006/03/06/minification-v-obfuscation/">minification</a> that I decided to trace through the Zend_View source code in attempt to discern how output filters actually worked. As it turns out, it's actually pretty simple.
</blockquote>
<p>
He explains a simple example of how they work, using a Zend_View object to build the filters on (addFilterPath/setFilterPath), and how he created his own output filter - the Minify filter. A minifier removes the comments and whitespace in the output to help reduce its size.
</p>]]></description>
      <pubDate>Thu, 05 Jun 2008 11:16:02 -0500</pubDate>
    </item>
  </channel>
</rss>
