Arquivos
hhvm/hphp/test/quick/setmstr2.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

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();