Voting

: five plus two?
(Example: nine)

The Note You're Voting On

justin samuel
19 years ago
to get the username of the process owner (rather than the file owner), you can use:

<?php
$processUser
= posix_getpwuid(posix_geteuid());
print
$processUser['name'];
?>

<< Back to user notes page

To Top