acl->setUser('Test_dry', '+SET', '~*'); $created = ($response == 'OK') ? 'Yes' : 'No'; echo "User with username 'Test' was created: {$created}. Permissions only to use SET command\n"; // 2. Dry run 'SET' command under 'Test_dry' user $response = $client->acl->dryRun('Test_dry', 'SET', 'foo', 'bar'); echo 'Dry run "SET" command.' . "\n"; echo 'Response: ' . $response . "\n"; // 3. Dry run 'GET' command under 'Test_dry' user $response = $client->acl->dryRun('Test_dry', 'GET', 'foo'); echo 'Dry run "GET" command.' . "\n"; echo 'Response: ' . $response;