HI, how delete next info in yellow color?

i have the next code in PHP:
$API = new routeros_api();
$API->debug = false;
if ($API->connect($ipRouteros , $Username , $Pass, $api_puerto)) {
$API->write('/tool/user-manager/user/print');
$READ = $API->read(false);
$ARRAY = $API->parse_response($READ);
print_r($ARRAY);
}
$API->disconnect();
whereby I get downloads and uploads of users per month, would remove such data UserManager by terminal or php API, then obtain new data these past one month.
THANKS!