db9577b140
Strict mode was the old name. Let's avoid any confusion in the future and rename things.
15 linhas
302 B
PHP
15 linhas
302 B
PHP
<?hh
|
|
function compose<X,Y,Z>((function(Y):Z) $f, (function(X):Y) $g):(function(X):Z) {
|
|
return function(X $x):Z use($f, $g) {
|
|
return $f($g($x));
|
|
};
|
|
}
|
|
|
|
$x = compose('htmlspecialchars_decode', 'htmlspecialchars');
|
|
|
|
for($i=0;$i<256;$i++) {
|
|
if (chr($i) !== $x(chr($i))) {
|
|
echo "[$i]\n";
|
|
}
|
|
}
|