mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
12 lines
204 B
PHP
12 lines
204 B
PHP
--TEST--
|
|
"${}" emits a deprecation
|
|
--FILE--
|
|
<?php
|
|
|
|
$foo = 'bar';
|
|
var_dump("${foo}");
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: Using ${var} in strings is deprecated, use {$var} instead in %s on line %d
|
|
string(3) "bar"
|