20260617

8.4.22
<?php
$date = date('Ymd');
echo $date; //=> 20110407
echo '<br />';
$titre = 'T_'.$date;
$T_20110407 = 'test';
echo $$titre; // => test
echo '<hr />'.phpversion();
echo '<hr />';
echo highlight_file(__FILE__);
?>
1