$command = 'C:\wget.exe -P '. __DIR__ . DIRECTORY_SEPARATOR .' r '. $depth .' '. if ($links) {'-k'} . ' -l '. $depth .' '. if ($files) {'-p'} . ' -E -nc 2>&1';
$dir = __DIR__ . DIRECTORY_SEPARATOR;
$linksKey = $links ? '-k' : '';
$filesKey = $files ? '-p' : '';
$command = "C:\\wget.exe -P {$dir} r {$depth} {$linksKey} -l '. {$depth} {$filesKey} -E -nc 2>&1";