PHP userland backwards compatibility layer that emulates PHP 5.5+ core functions.

⌈⌋ ⎇ branch:  upgrade.php


Artifact [9d32901937]

Artifact 9d32901937849c9dab280f414f08ae5ce5458b76:

  • File doc/tests1all/fmod.phpt — part of check-in [51e3884900] at 2010-06-22 17:03:27 on branch trunk — upgradephp-15 (user: mario size: 117)

--TEST--
fmod
--FILE--
<?php

$r = fmod(5.7, 1.3);
echo "fmod(5.7, 1.3) = $r\n";

?>
--EXPECT--
fmod(5.7, 1.3) = 0.5