If your server supports it (suexec) you can run php as a CGI script that'll give you the same permissions as your account.
Put this in your cgi-bin, name it whoami.cgi, or something, then make it executable - see what it prints
#!/usr/bin/php
<?php
echo 'whoami: ';
system("/usr/bin/whoami");
?>