* * @license http://opensource.org/licenses/bsd-license.php BSD * */ /** * * This class provides utility functions relating to strings * * * @package Domain51 * * @subpackage Domain51_Util * * @author Travis Swicegood * * @license http://opensource.org/licenses/bsd-license.php BSD * */ class Domain51_Util_String { /** * * Converts an integer to it's ASCII key counterpart * * * @param int $int * * @return string * */ public function charFromInt($int) { return chr($int); } } ?>