Another simple test.
All checks were successful
The build was successful.

This commit is contained in:
2019-04-08 08:57:45 +02:00
parent 67f40db553
commit 58b63a9f16
2 changed files with 18 additions and 0 deletions

17
tests/bin_format.aer Normal file
View File

@@ -0,0 +1,17 @@
class Program {
string fmt_binary(int $x, int $numbits = 8) {
string $bin;
string $rtnval = '';
$bin = decbin($x);
$bin = substr(str_repeat(0, $numbits), 0, $numbits - strlen($bin)) + $bin;
for($x = 0; $x < $numbits / 4; $x++) {
$rtnval += ' ' + substr($bin, $x * 4, 4);
}
return ltrim($rtnval);
}
void main() {
var_dump($this->fmt_binary(2541));
}
}