當前位置: 首頁>>代碼示例>>PHP>>正文


PHP FileUtils::mkdir_p方法代碼示例

本文整理匯總了PHP中FileUtils::mkdir_p方法的典型用法代碼示例。如果您正苦於以下問題:PHP FileUtils::mkdir_p方法的具體用法?PHP FileUtils::mkdir_p怎麽用?PHP FileUtils::mkdir_p使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在FileUtils的用法示例。


在下文中一共展示了FileUtils::mkdir_p方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: after_create

 public function after_create()
 {
     UserMailer::deliver_new_user($this->email, $this);
     $path = FileUtils::join(NIMBLE_ROOT, 'get', $this->username);
     FileUtils::mkdir_p($path);
     chmod($path, 0755);
 }
開發者ID:xetorthio,項目名稱:pearfarm_channel_server,代碼行數:7,代碼來源:user.php

示例2: generate_migration

 /**
  * Generate a migration.
  * @param string $name The name of the migration.
  * @param string $table The table to create a migration for.
  */
 public static function generate_migration($name, $table = '')
 {
     $path = FileUtils::join(static::$nimble_root, 'db', 'migrations');
     FileUtils::mkdir_p($path);
     $file_name = time() . '_' . $name . '_migration.php';
     $class_name = Inflector::classify($name . 'Migration');
     $out = file_get_contents(FileUtils::join(static::$template_path, 'migration.tmpl'));
     $up = '';
     $down = '';
     if (!empty($table)) {
         $up .= '$t = $this->create_table("' . $table . '");';
         $up .= "\n" . '				//enter column definitions here';
         $up .= "\n" . '			$t->go();';
         $down .= '	$this->drop_table("' . $table . '");';
     }
     $out = str_replace(array('{class_name}', '{up_code}', '{down_code}'), array($class_name, $up, $down), $out);
     static::write_file(FileUtils::join($path, $file_name), $out);
 }
開發者ID:scottdavis,項目名稱:nimblize,代碼行數:23,代碼來源:generator.php

示例3: move_uploaded_file

 public function move_uploaded_file($file, $version)
 {
     $path = $this->file_path($version);
     FileUtils::mkdir_p(dirname($path));
     if (is_uploaded_file($file)) {
         move_uploaded_file($file, $this->file_path($version));
         chmod($this->file_path($version), 0664);
     } else {
         copy($file, $path);
     }
 }
開發者ID:scottdavis,項目名稱:pearfarm_channel_server,代碼行數:11,代碼來源:package.php

示例4: mailer_template

 private static function mailer_template($class, $method)
 {
     FileUtils::mkdir_p(FileUtils::join(NIMBLE_ROOT, 'app', 'view', strtolower(Inflector::underscore($class))));
     touch(FileUtils::join(NIMBLE_ROOT, 'app', 'view', strtolower(Inflector::underscore($class)), strtolower($method) . '.php'));
     touch(FileUtils::join(NIMBLE_ROOT, 'app', 'view', strtolower(Inflector::underscore($class)), strtolower($method) . '.txt'));
 }
開發者ID:sbeam,項目名稱:nimble,代碼行數:6,代碼來源:generator.php

示例5: __construct

 public function __construct()
 {
     if (static::$enabled) {
         FileUtils::mkdir_p(FileUtils::join(FileUtils::join(NIMBLE_ROOT, 'log')));
         $this->log_file = FileUtils::join(NIMBLE_ROOT, 'log', NIMBLE_ENV . '.log');
     }
 }
開發者ID:scottdavis,項目名稱:nimblize,代碼行數:7,代碼來源:nimble_logger.php


注:本文中的FileUtils::mkdir_p方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。