Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Sameer Borate's Blog:
Grabbing website Favicons using curl and php
May 30, 2011 @ 17:52:11

Sameer Borate has a a new tutorial posted to his blog about grabbing favicons with curl and the help of the Google Shared Stuff API.

Google Shared Stuff allows one to easily get the Favicon of any website with a single line. [...] This [curl request] will display the Favicon in the browser. An even more interesting thing we can do is to save the same to a PNG file.

He includes the code to make the curl request to the Google service and save it as the local PNG file. Built on top of this is another script that handles multiple sites (his example uses six different sites), pulls down each of the images and pushes them all together into one. You can see an example here.

tagged: tutorial curl google sharedstuff api favicon

Link:

Felix Geisendörfer's Blog:
The ultimate CakePHP bootstrap technique
Aug 15, 2006 @ 12:19:54

In his latest blog post today, Felix Geisendörfer shares his "ultimate bootstrap technique" for CakePHP without having to render a page.

Ok, I shouldn't use such a buzz-headline, but I was very happy today, when I discovered a new way to bootsrap CakePHP wihout having to render a page. This is especially useful when you try to embed CakePHP in existing php apps (drupal, wordpress, ..., ?), or when you try to write unit tests for highly coupled classes such as Controllers or Models.

Basically, the technique involves tricking the Dispatcher into not rendering based on the $_GET values by making it think that it's being asked for the favicon.ico file.

tagged: bootstrap cakephp technique favicon dispatcher bootstrap cakephp technique favicon dispatcher

Link:

Felix Geisendörfer's Blog:
The ultimate CakePHP bootstrap technique
Aug 15, 2006 @ 12:19:54

In his latest blog post today, Felix Geisendörfer shares his "ultimate bootstrap technique" for CakePHP without having to render a page.

Ok, I shouldn't use such a buzz-headline, but I was very happy today, when I discovered a new way to bootsrap CakePHP wihout having to render a page. This is especially useful when you try to embed CakePHP in existing php apps (drupal, wordpress, ..., ?), or when you try to write unit tests for highly coupled classes such as Controllers or Models.

Basically, the technique involves tricking the Dispatcher into not rendering based on the $_GET values by making it think that it's being asked for the favicon.ico file.

tagged: bootstrap cakephp technique favicon dispatcher bootstrap cakephp technique favicon dispatcher

Link:


Trending Topics: