HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux dev1 5.15.83-1-pve #1 SMP PVE 5.15.83-1 (2022-12-15T00:00Z) x86_64
User: safarimaris (1000)
PHP: 7.2.34-54+ubuntu22.04.1+deb.sury.org+1
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,
Upload Files
File: //opt/php-5.6.40/Zend/tests/bug39018.phpt
--TEST--
Bug #39018 (Error control operator '@' fails to suppress "Uninitialized string offset")
--FILE--
<?php

error_reporting(E_ALL);

$a = 'foo';
$a[111111111111111111111];

$a = '';

$a[0];

print $a[0]; // 12

$a[-11111111111111111111111];

print $a[-11111111111111111111111]; // 16

$a[-0];

$x = 'test';

@$x[4];

@$y = $x[4];

@('a' == $x[4]);

$x[4] == 'a'; // 28

@$x[4] == 'a';

(@$x[4]) == 'a';

($x[4]) == 'a'; // 34

(@($x[4])) == 'a';

(($x[4])) == 'a'; // 38

@($x[4]) == 'a';

($x[4]) == 'a'; // 42

@($x[4] == 'a');

($x[4] == 'a'); // 46

$y = 'foobar';

$y[12.2];

print $y[12.2]; // 52

$y[3.5];

print $y[3.5]; // 56

print "\nDone\n";

?>
--EXPECTF--
Notice: String offset cast occurred in %s on line %d

Notice: Uninitialized string offset: %s in %s on line 6

Notice: Uninitialized string offset: 0 in %s on line %d

Notice: Uninitialized string offset: 0 in %s on line %d

Notice: String offset cast occurred in %s on line %d

Notice: Uninitialized string offset: %i in %s on line %d

Notice: String offset cast occurred in %s on line %d

Notice: Uninitialized string offset: %i in %s on line %d

Notice: Uninitialized string offset: 0 in %s on line %d

Notice: Uninitialized string offset: 4 in %s on line %d

Notice: Uninitialized string offset: 4 in %s on line %d

Notice: Uninitialized string offset: 4 in %s on line %d

Notice: Uninitialized string offset: 4 in %s on line %d

Notice: Uninitialized string offset: 4 in %s on line %d

Notice: String offset cast occurred in %s on line %d

Notice: Uninitialized string offset: 12 in %s on line %d

Notice: String offset cast occurred in %s on line %d

Notice: Uninitialized string offset: 12 in %s on line %d

Notice: String offset cast occurred in %s on line %d

Notice: String offset cast occurred in %s on line %d
b
Done