, Arpad Ray * @link http://php.net/function.cosh * @author Arpad Ray * @version $Revision: 1.2 $ * @since PHP 5 * @require PHP 3.0.0 */ function php_compat_cosh($n) { return 0.5 * (exp($n) + exp(-$n)); } if (!function_exists('cosh')) { function cosh($n) { return php_compat_cosh($n); } }