Skip to content

Instantly share code, notes, and snippets.

@NumEricR
NumEricR / Placeholder images services
Last active August 29, 2015 14:21
Placeholder images services
Here's some services providing placeholder images.
Serious:
placeimg.com
lorempixel.com
placehold.it
fakeimg.pl
dummyimage.com
loremflickr.com
placeguitar.com
@NumEricR
NumEricR / PHPDoc_Constants.php
Created May 7, 2013 12:31
Possible constants doc issue with PHPDocumentor 2.
/*
$ pear upgrade phpdoc/phpDocumentor-alpha
Nothing to upgrade
*/
/*
$ phpdoc --version
phpDocumentor version 2.0.0a12
*/
@NumEricR
NumEricR / gist:5414690
Created April 18, 2013 17:40
A function to know if a given image is animated
// See http://stackoverflow.com/a/415942
function is_animated_image($filename) {
if (!($fh = @fopen($filename, 'rb'))) {
return false;
}
$count = 0;
// an animated gif contains multiple "frames", with each frame having a
// header made up of:
// * a static 4-byte sequence (\x00\x21\xF9\x04)