From 0cdc875aed4a549f076034b4dd94703de310e4da Mon Sep 17 00:00:00 2001 From: Lito Date: Tue, 22 Oct 2013 16:40:43 +0200 Subject: [PATCH] Updated toAscii es_ES provider function --- src/Faker/Provider/es_ES/Internet.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Faker/Provider/es_ES/Internet.php b/src/Faker/Provider/es_ES/Internet.php index f0945c98..f8581b7d 100644 --- a/src/Faker/Provider/es_ES/Internet.php +++ b/src/Faker/Provider/es_ES/Internet.php @@ -15,10 +15,10 @@ class Internet extends \Faker\Provider\Internet */ private static function toAscii($string) { - $string = htmlentities($string, ENT_NOQUOTES, 'UTF-8'); - $string = preg_replace('/\W/', '-', preg_replace('/&(\w)\w+;/', '$1', $string)); + $from = array('á', 'Á', 'é', 'É', 'í', 'Í', 'ó', 'Ó', 'ú', 'Ú', 'ü', 'Ü', 'ñ', 'Ñ'); + $to = array('a', 'A', 'e', 'E', 'i', 'I', 'o', 'O', 'u', 'U', 'u', 'U', 'n', 'N'); - return trim($string, '-'); + return str_replace($from, $to, $string); } /** @@ -39,6 +39,6 @@ class Internet extends \Faker\Provider\Internet { list($company) = explode(' ', $this->generator->format('company')); - return static::toLower(static::toAscii($company)); + return static::toLower(static::toAscii(preg_replace('/\W/u', '', $company))); } }