summaryrefslogtreecommitdiff
path: root/Zend/tests/self_xor.phpt
blob: c097930d6ddce2758b2c126d69922d0ee0058647 (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--
XORing 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(109)

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(45312)
Done