No way this is working!
The build was successful. Podrobnosti

This commit is contained in:
Rafal Kupiec 2019-07-01 21:03:45 +02:00
rodič c94de60c29
revize 4d150c2fe3
Podepsáno: belliash
ID GPG klíče: 4E829243E0CFE6B4
1 změnil soubory, kde provedl 2 přidání a 1 odebrání

Zobrazit soubor

@ -5,7 +5,8 @@ class Program {
$path = trim($path);
string $str, $temp;
char $char;
for(int $x = 0; $char = $path[$x]; $x++) {
for(int $x = 0; $x < strlen($path); $x++) {
$char = $path[$x];
if(!strstr('/', $char)) $temp += $char;
else if($temp) {
$str += $temp;