mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00

Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
16 lines
206 B
PHP
16 lines
206 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(17)
|
|
int(14)
|