summaryrefslogtreecommitdiff
path: root/Zend/tests/self_or.phpt
blob: 8ace518bde58ceefbdf89908f92795bd5ff2d582 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
--TEST--
ORing strings
--FILE--
<?php

$s = "123";
$s1 = "test";
$s2 = "45345some";

$s |= 22;
var_dump($s);

$s1 |= 11;
var_dump($s1);

$s2 |= 33;
var_dump($s2);

echo "Done\n";
?>
--EXPECTF--
int(127)

Warning: A non-numeric value encountered in %s on line %d
int(11)

Notice: A non well formed numeric value encountered in %s on line %d
int(45345)
Done