No way this is working!
所有检测均成功
The build was successful.

这个提交包含在:
2019-07-01 21:03:45 +02:00
父节点 c94de60c29
当前提交 4d150c2fe3

查看文件

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