8d85957d57
If you tried to mod something where the denominator was cns(0), things would go horribly, horribly wrong.
11 linhas
90 B
PHP
11 linhas
90 B
PHP
<?php
|
|
|
|
function one() {
|
|
return 1;
|
|
}
|
|
|
|
function main() {
|
|
var_dump(one() % 0);
|
|
}
|
|
main();
|