503f75d08b
These names don't make sense now that we run both suites the same way.
11 linhas
179 B
PHP
11 linhas
179 B
PHP
<?php
|
|
function bar($a) {}
|
|
function baz() {
|
|
$cipher = 'abcdefghij';
|
|
$pos = 4;
|
|
$random_byte = chr(25);
|
|
$cipher[$pos] = $random_byte;
|
|
var_dump(ord($random_byte));
|
|
}
|
|
baz();
|