summaryrefslogtreecommitdiff
path: root/ext/opcache/tests/bug69125.phpt
blob: 913be01b00fd61e2e2a952cfeb9830c0d6b876d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--TEST--
Bug #69125 (Array numeric string as key)
--INI--
opcache.enable=1
opcache.enable_cli=1
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php

const SZERO = '0';
const SONE = '1';

$array[SZERO] = "okey";
$array[1] = "okey";

var_dump($array[SZERO]);
var_dump($array[SONE]);
?>
--EXPECT--
string(4) "okey"
string(4) "okey"