Arquivos
hhvm/hphp/test/quick/mod.php
T
ptarjan 503f75d08b Rename test directories
These names don't make sense now that we run both suites the same
way.
2013-04-17 09:06:51 -07:00

19 linhas
208 B
PHP

<?
function f() {
$a = range(-3, 3);
$a []= true;
$a []= false;
$a []= 3.14;
$a []= "123";
$a []= "0";
foreach ($a as $l) {
foreach ($a as $r) {
var_dump($l % $r);
}
}
}
f();