* @copyright 2011 Romain d'Alverny * @license MIT License, see LICENSE.txt * @link http://svnweb.mageia.org/svn/web/hugs/ */ $app_root = realpath(dirname(__FILE__)); $images = glob(sprintf('%s/var/hugs/*.jpg', $app_root)); if (count($images) > 0) { $img_tmpl = 'Free Hugs!'; $img = $images[array_rand($images)]; $out = sprintf($img_tmpl, str_replace($app_root, '', $img)); // TIP use jhead -ce photo.jpg to edit photo COMMENT field $exif = exif_read_data($img, null, true); if (!is_null($exif) && isset($exif['COMMENT'])) { $out .= sprintf('
%s
', nl2br($exif['COMMENT'][0])); } $out = sprintf('
%s
', $out); } else { $out = '

404 Hug Not Found :(

'; } ?> Free Hugs! @ Mageia