mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
12 lines
247 B
PHP
12 lines
247 B
PHP
--TEST--
|
|
bcpow() incorrect argument count
|
|
--SKIPIF--
|
|
<?php if(!extension_loaded("bcmath")) print "skip"; ?>
|
|
--INI--
|
|
bcmath.scale=0
|
|
--FILE--
|
|
<?php
|
|
echo bcpow();
|
|
?>
|
|
--EXPECTF--
|
|
Warning: bcpow() expects at least 2 parameters, 0 given in %s on line %d
|