php-src/Zend/tests/or_001.phpt
2018-10-14 19:45:12 +02:00

30 lines
325 B
PHP
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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