$data ); curl_setopt($ch, CURLOPT_POSTFIELDS, $dataArray); $result = curl_exec($ch); curl_close($ch); } /** * Ensures that the user is running this PHP script with root * permissions. If not running with root permissions, causes the * script to exit. */ function exitIfNotRoot() { // Need to check that we are superuser before running this. if(posix_geteuid() != 0){ echo "Must be root user.\n"; exit(1); } }