mirror of
https://github.com/php/php-src.git
synced 2025-01-15 00:05:02 +08:00
18 lines
135 B
Plaintext
18 lines
135 B
Plaintext
|
--TEST--
|
||
|
Use power operator on reference
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
$a = 2;
|
||
|
$b = 3;
|
||
|
|
||
|
$ref =& $b;
|
||
|
|
||
|
$a **= $b;
|
||
|
|
||
|
var_dump($a);
|
||
|
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
int(8)
|