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


PHP logger::shout方法代碼示例

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


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

示例1: run

 public static function run()
 {
     // On a besoin du path où mettre le fichier de backup
     $opts = array('path' => 'y', 'sn' => 'y');
     $r = command::get_runner($opts);
     $options = getopt($r->shortoptions, $r->options);
     $error = false;
     if (!isset($options['path']) || !is_dir($options['path'])) {
         logger::shout('loption --path nest pas valide');
         $error = true;
     }
     if (!isset($options['sn'])) {
         logger::shout('indiquer le shortname --sn ');
         $error = true;
     }
     if ($error) {
         return;
     }
     // $permissions = fileperms($options['path']);
     // logger::shout($options['path'] . ' permissions:' . $permissions. PHP_EOL);
     backup::execute($options['sn'], $options['path']);
 }
開發者ID:nmoller,項目名稱:backup-restore,代碼行數:22,代碼來源:backup.php

示例2: run

 public static function run()
 {
     // On a besoin du path où mettre le fichier de backup
     $opts = array('file' => 'y', 'cat' => 'y');
     $r = command::get_runner($opts);
     $options = getopt($r->shortoptions, $r->options);
     $error = false;
     if (!isset($options['file'])) {
         logger::shout('loption --file doit etre indiquee');
         return;
     }
     if (!file_exists($options['file'])) {
         cli_error("Backup file '" . $options['file'] . "' does not exist.");
         $error = true;
     }
     if (!is_readable($options['file'])) {
         cli_error("Backup file '" . $options['file'] . "' is not readable.");
         $error = true;
     }
     if (!isset($options['cat'])) {
         logger::shout('indiquer la categorie --cat ');
         $error = true;
     }
     global $DB;
     // Check if category is OK.
     if (isset($options['cat'])) {
         $category = $DB->get_record('course_categories', array('id' => $options['cat']), '*', MUST_EXIST);
         if (!isset($category->id)) {
             logger::shout('La categorie ' . $options['cat'] . ' nexiste pas.');
             $error = true;
         }
     }
     if ($error) {
         return;
     }
     // $permissions = fileperms($options['path']);
     // logger::shout($options['path'] . ' permissions:' . $permissions. PHP_EOL);
     restore::execute($options['file'], $options['cat']);
 }
開發者ID:nmoller,項目名稱:backup-restore,代碼行數:39,代碼來源:restore.php


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