class_mcDir.inc.php 253 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 <?php class mcDir { public static function create($param_path) { $return = mkdir($param_path, 0700, true); // $order = 'mkdir ( '.$param_path.', 0777 , '.true.' )'; // $return = mcBash::exec($order); D::fe($return, $order); return $return; } }