Fatal error: Call to undefined function asinh() in C:\xampp\htdocs\tay\MapUtility.php on line 22
Do I need to include a math library to get it working?
Call to undefined function asinh()
Moderator: General Moderators
Re: Call to undefined function asinh()
whats ur php version?
Re: Call to undefined function asinh()
asinh isn't available on Windows until PHP 5.3.
Code: Select all
if (!function_exists("asinh")) {
function asinh($x) {
return log($x + sqrt(1 + pow($x, 2)));
}
}