"success", "content" => $content); echo json_encode($result); } else { echo '{"status":"error","message":"Missing Parameter"}'; } break; default: echo '{"status":"error","message":"No Type"}'; break; } function getWorkspacePath($path) { if (strpos($path, "/") === 0) { //Unix absolute path return $path; } if (strpos($path, ":/") !== false) { //Windows absolute path return $path; } if (strpos($path, ":\\") !== false) { //Windows absolute path return $path; } return WORKSPACE . "/" . $path; } ?>