xref: /PHP-8.1/tests/lang/bug28800.phpt (revision b2248789)
1--TEST--
2Bug #28800 (Incorrect string to number conversion for strings starting with 'inf')
3--FILE--
4<?php
5    $strings = array('into', 'info', 'inf', 'infinity', 'infin', 'inflammable');
6    foreach ($strings as $v) {
7        try {
8            echo ($v+0)."\n";
9        } catch (\TypeError $e) {
10            echo $e->getMessage() . \PHP_EOL;
11        }
12    }
13?>
14--EXPECT--
15Unsupported operand types: string + int
16Unsupported operand types: string + int
17Unsupported operand types: string + int
18Unsupported operand types: string + int
19Unsupported operand types: string + int
20Unsupported operand types: string + int
21
22