Merge pull request #689 from crlosmify/html

Method for HTML special characters
This commit is contained in:
Taylor Otwell 2012-05-30 06:58:48 -07:00
commit cf604d4e79
1 changed files with 13 additions and 0 deletions

View File

@ -45,6 +45,19 @@ public static function decode($value)
return html_entity_decode($value, ENT_QUOTES, Config::get('application.encoding'));
}
/**
* Convert HTML special characters.
*
* The encoding specified in the application configuration file will be used.
*
* @param string $value
* @return string
*/
public static function specialchars($value)
{
return htmlspecialchars($value, ENT_QUOTES, Config::get('application.encoding'), false);
}
/**
* Generate a link to a JavaScript file.
*