summaryrefslogtreecommitdiff
path: root/shell/bin/whoami.php
blob: 7e560f26182fdaca87ec6a444a0f37c39d937bf8 (plain)
1
2
3
4
5
6
7
<?php
class p_whoami extends prog {
	public static function main($args, $env) {
		echo get_current_user();
	}
}