Esempio n. 1
0
function _ebye($s = '', $exitCode = 0)
{
    _eprint($s);
    exit($exitCode);
}
Esempio n. 2
0
 public function track($step = 1)
 {
     $this->current += $step;
     _eprint(sprintf("\r%8.2f%%", 100 * $this->current / $this->total));
 }