1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/or_001.phpt
2018-10-14 12:07:20 -03:00

30 lines
325 B
PHP
Raw Permalink 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