php-src/tests/lang/operators/bitwiseShiftLeft_variationStr2.phpt
Fabien Villepinte a555cc0b3d Clean DONE tags from tests
Remove most of the `===DONE===` tags and its variations.
Keep `===DONE===` if the test output otherwise becomes empty.

Closes GH-4872.
2019-11-07 21:31:47 +01:00

16 lines
207 B
PHP

--TEST--
Test << operator : numbers as strings, simple
--FILE--
<?php
error_reporting(E_ERROR);
var_dump("12" << "0");
var_dump("34" << "1");
var_dump("56" << "2");
?>
--EXPECT--
int(12)
int(68)
int(224)