Skip to content

Instantly share code, notes, and snippets.

View ashickur-rahman's full-sized avatar

md ashickur rahman ashickur-rahman

  • N/A
  • Dhaka
View GitHub Profile
@ashickur-rahman
ashickur-rahman / NetworkDrives.php
Last active November 12, 2021 13:31
php interface
<?php
//include __DIR__."/../vendor/autoload.php";
interface Network
{
public function checkExist($location);
public function createDir($location,$permission);
public function upload($path,$file);
public function delete($path);
}