Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /usr/local/src/php7/php-7.0.5/ext/gmp/tests/ |
Current File : //usr/local/src/php7/php-7.0.5/ext/gmp/tests/bug52906.phpt |
--TEST-- Bug #52906 gmp_mod returns negative result when non-negative is expected --SKIPIF-- <?php if (!extension_loaded("gmp")) print "skip"; ?> --FILE-- <?php $vals = array( array(7, 3), array(2, 7), array(12, 7), array(-2, 7), array(-12, 7), array(2, -7), array(12, -7), array(-2, -7), array(-12, -7), ); foreach($vals as $data) { echo "{$data[0]}%{$data[1]}=".gmp_strval(gmp_mod($data[0], $data[1])); echo "\n"; echo "{$data[0]}%{$data[1]}=".gmp_strval(gmp_mod(gmp_init($data[0]), gmp_init($data[1]))); echo "\n"; } echo "Done\n"; ?> --EXPECTF-- 7%3=1 7%3=1 2%7=2 2%7=2 12%7=5 12%7=5 -2%7=5 -2%7=5 -12%7=2 -12%7=2 2%-7=2 2%-7=2 12%-7=5 12%-7=5 -2%-7=5 -2%-7=5 -12%-7=2 -12%-7=2 Done
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare