No way this is working!
The build was successful. 詳情

This commit is contained in:
Rafal Kupiec 2019-07-01 21:03:45 +02:00
父節點 c94de60c29
當前提交 4d150c2fe3
簽署人: belliash
GPG 金鑰 ID: 4E829243E0CFE6B4
共有 1 個檔案被更改,包括 2 行新增1 行删除

查看文件

@ -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;