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


PHP Alias::add方法代碼示例

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


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

示例1: error_get_last

    $error = error_get_last();
    if (!empty($error)) {
        ob_clean();
        $errstr = $error['message'];
        $errline = $error['line'];
        $errfile = $error['file'];
        $errorOutput($errstr, $errline, $errfile, debug_backtrace());
    }
};
$exceptionHandler = function ($e) use($errorOutput) {
    ob_clean();
    $message = $e->getMessage();
    $line = $e->getLine();
    $file = $e->getFile();
    $errorOutput($message, $line, $file, $e->getTrace());
    die;
};
//Run the framework!
$framework->bootstrap();
set_error_handler($errorHandler);
set_exception_handler($exceptionHandler);
register_shutdown_function($shutdownHandler);
//If you want to delete alias cache on every run, set deleteAliases in config.php to true
//Add an alias to the app, which enables you to run container operations within "alias" alias as shown below
Container::open('aliases')->add('alias', Container::open('aliases'));
//now we can use Storage:: alias to operate specific container instance
Alias::add('storage', Container::open('storage'));
/*
	Your code goes down here 
*/
require 'app.php';
開發者ID:vibius,項目名稱:development-kit,代碼行數:31,代碼來源:index.php

示例2: importAlias

 protected function importAlias()
 {
     $this->truncateTables(array('alias'));
     $handle = $this->openCsvFile('alias.csv');
     for ($current_line = 0; $line = fgetcsv($handle, MAX_LINE_SIZE, ';'); $current_line++) {
         $res = false;
         $fields = $this->filterFields('Alias', $this->alias_fields, $line);
         if (!isset($fields['id'])) {
             $alias = new Alias((int) $line[0]);
             $alias->id = $line[0];
         } else {
             $alias = new Alias((int) $fields['id']);
         }
         foreach ($fields as $key => $field) {
             $alias->{$key} = $field;
         }
         $alias->force_id = true;
         if (!$res) {
             $alias->add();
         }
     }
     $this->closeCsvFile($handle);
     return true;
 }
開發者ID:evgrishin,項目名稱:se1614,代碼行數:24,代碼來源:AdminSampleDataInstallImport.php


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