Browse Source

added html::decode method.

Taylor Otwell 13 years ago
parent
commit
d19fd5a1ce
1 changed files with 11 additions and 0 deletions
  1. 11 0
      laravel/html.php

+ 11 - 0
laravel/html.php

@@ -15,6 +15,17 @@ class HTML {
 		return htmlentities($value, ENT_QUOTES, Config::get('application.encoding'), false);
 	}
 
+	/**
+	 * Convert entities to HTML characters.
+	 *
+	 * @param  string  $value
+	 * @return string
+	 */
+	public static function decode($value)
+	{
+		return html_entity_decode($value, ENT_QUOTES, Config::get('application.encoding'));
+	}
+
 	/**
 	 * Generate a link to a JavaScript file.
 	 *