1--TEST-- 2bcsqrt() with argument of 0 3--SKIPIF-- 4<?php if(!extension_loaded("bcmath")) print "skip"; ?> 5--INI-- 6bcmath.scale=0 7--FILE-- 8<?php 9echo bcsqrt("0"); 10?> 11--EXPECT-- 120 13