array_values()



you can use the array_values() function to display the values of an array and you can see all of them, the complete list, this is helpful in troubleshooting some script problems when you are programming in php

try it for yourself: create a wallpaperama.php file and copy and paste this code, then open it in your php website:

example:
<?php
# SCRIPT PROVIDED BY WEBUNE.COM
# PHP HOSTING AND MORE

$example = parse_url($_SERVER['REQUEST_URI']);
print_r(array_values($example));

?>