mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
28 lines
434 B
PHP
28 lines
434 B
PHP
--TEST--
|
|
Bug #22592 (Cascading assignments to strings with curly braces broken)
|
|
--FILE--
|
|
<?php
|
|
$wrong = $correct = 'abcdef';
|
|
|
|
$t = $x[] = 'x';
|
|
|
|
var_dump($correct);
|
|
var_dump($wrong);
|
|
|
|
$correct[1] = '*';
|
|
$correct[3] = '*';
|
|
$correct[5] = '*';
|
|
|
|
// This produces the
|
|
$wrong[1] = $wrong[3] = $wrong[5] = '*';
|
|
|
|
var_dump($correct);
|
|
var_dump($wrong);
|
|
|
|
?>
|
|
--EXPECT--
|
|
string(6) "abcdef"
|
|
string(6) "abcdef"
|
|
string(6) "a*c*e*"
|
|
string(6) "a*c*e*"
|