Skip to content

Instantly share code, notes, and snippets.

View haiderktk's full-sized avatar

Haider Rehman haiderktk

View GitHub Profile
@haiderktk
haiderktk / path.php
Last active October 1, 2019 02:40 — forked from TheRealJAG/path.php
Write a function that provides change directory (cd) function for an abstract file system.
<?php
class Path {
public $currentPath;
function __construct($path) {
$this->currentPath = $path;
}
public function cd($newPath) {