Advertisement
rodolpheg

Untitled

Feb 24th, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. <?php
  2. $a = [1,2,3,4,5,6,'sept',['a1','a2','a3']];
  3. $a[] = 'fin';
  4. echo '<h1>' . $a[0]. ' ' . $a[6] . ' ' . $a[7][1] . ' ' . $a[8] . '</h1>';
  5. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement