1
0
mirror of https://github.com/php/php-src.git synced 2026-03-30 04:02:19 +02:00
Files
archived-php-src/Zend/tests/shift_002.phpt
2018-10-14 19:45:12 +02:00

30 lines
362 B
PHP

--TEST--
shifting strings right
--FILE--
<?php
$s = "123";
$s1 = "test";
$s2 = "45345some";
$s >>= 2;
var_dump($s);
$s1 >>= 1;
var_dump($s1);
$s2 >>= 3;
var_dump($s2);
echo "Done\n";
?>
--EXPECTF--
int(30)
Warning: A non-numeric value encountered in %s on line %d
int(0)
Notice: A non well formed numeric value encountered in %s on line %d
int(5668)
Done