You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
331 B

--TEST--
bitwise OR and strings
--FILE--
<?php
$s = b"323423";
$s1 = b"2323.555";
var_dump($s | $s1);
var_dump($s1 | $s);
$s = b"some";
$s1 = b"test";
var_dump($s | $s1);
$s = b"some";
$s |= b"test";
var_dump($s);
echo "Done\n";
?>
--EXPECT--
string(8) "3337>755"
string(8) "3337>755"
string(4) "wou"
string(4) "wou"
Done