From c9dcc8a3546ecf02b9df05f14dd42f4750cf5cb0 Mon Sep 17 00:00:00 2001 From: Stefano Sala Date: Mon, 10 Mar 2014 16:31:49 +0100 Subject: [PATCH] Added fullPath parameter to Image provider to be able to have just the filename --- src/Faker/Provider/Image.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Faker/Provider/Image.php b/src/Faker/Provider/Image.php index 651cf806..30bef88f 100644 --- a/src/Faker/Provider/Image.php +++ b/src/Faker/Provider/Image.php @@ -37,7 +37,7 @@ class Image extends Base * * @example '/path/to/dir/13b73edae8443990be1aa8f1a483bc27.jpg' */ - public static function image($dir = '/tmp', $width = 640, $height = 480, $category = null) + public static function image($dir = '/tmp', $width = 640, $height = 480, $category = null, $fullPath = true) { // Validate directory path if (!is_dir($dir) || !is_writable($dir)) { @@ -47,7 +47,8 @@ class Image extends Base // Generate a random filename. Use the server address so that a file // generated at the same time on a different server won't have a collision. $name = md5(uniqid(empty($_SERVER['SERVER_ADDR']) ? '' : $_SERVER['SERVER_ADDR'], true)); - $filepath = $dir . DIRECTORY_SEPARATOR . $name .'.jpg'; + $filename = $name .'.jpg'; + $filepath = $dir . DIRECTORY_SEPARATOR . $filename; $url = static::imageUrl($width, $height, $category); @@ -72,6 +73,6 @@ class Image extends Base return false; } - return $filepath; + return $fullPath ? $filepath : $filename; } }