Hey Shen,
This does not output an array, it outputs your REQUEST_URI which , for example, let's assume :
http://www.foo.com/a/dog/can.php?bark=loudly
The REQUEST_URI is now :
/a/dog/can.php?bark=loudly
Please explain what you are wanting to do. If you want this as an array, you could explode it like :
$pieces = explode('/',$REQUEST_URI);
Now that creates :
$pieces[0] = ''
$pieces[1] = 'a'
$pieces[2] = 'dog';
$pieces[3] = 'can.php?bark=loudly';