[ create a new paste ] login | about

Link: http://codepad.org/4ZxRo1IG    [ raw code | output | fork ]

MajidF - PHP, pasted on Sep 9:
1
2
3
4
5
6
7
8
<?php

$fake_session = array();
$markers = array(0, 8, 36);
$fake_session['markers'] = $markers;
var_dump($fake_session);

?>


Output:
1
2
3
4
5
6
7
8
9
10
11
array(1) {
  ["markers"]=>
  array(3) {
    [0]=>
    int(0)
    [1]=>
    int(8)
    [2]=>
    int(36)
  }
}


Create a new paste based on this one


Comments: