Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
5 |
aurelien |
1 |
<?php
|
|
|
2 |
$x = 'My '.'string';
|
|
|
3 |
$x = 'My '.1234;
|
|
|
4 |
$x = 'My '.$y.' test';
|
|
|
5 |
|
|
|
6 |
echo $data['my'.'index'];
|
|
|
7 |
echo $data['my'.4];
|
|
|
8 |
echo $data['my'.$x];
|
|
|
9 |
echo $data[$x.$y.'My'.'String'];
|
|
|
10 |
?>
|