当前位置: 首页>>代码示例>>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;未经允许,请勿转载。