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


PHP Setup::escapeOutput方法代碼示例

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


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

示例1: __construct

 public function __construct(Setup $setup)
 {
     $this->setup = $setup;
     $this->storageMode = 'flat-file';
     $metadata_file = $this->setup->dir . '/.metadata';
     $update_metadata = false;
     // Read exist metadata file if one exists
     if (file_exists($metadata_file)) {
         $json_metadata = json_decode(file_get_contents($metadata_file), true);
         $this->setup->metadata = array_merge($this->setup->metadata, $json_metadata);
     }
     // Check if comment thread directory exists
     if ($setup->mode !== 'api') {
         if (file_exists(dirname($metadata_file)) and is_writable(dirname($metadata_file))) {
             // Check whether the page and metadata URLs differ
             if ($this->setup->metadata['title'] !== $setup->pageTitle) {
                 $this->setup->metadata['title'] = $setup->pageTitle;
                 $update_metadata = true;
             }
             // Check whether the page and metadata titles differ
             if ($this->setup->metadata['url'] !== $setup->pageURL) {
                 $this->setup->metadata['url'] = $setup->pageURL;
                 $update_metadata = true;
             }
             // Update metadata if the data has changed
             if ($update_metadata === true) {
                 if ($this->save_metadata($this->setup->metadata, $metadata_file) === false) {
                     exit($setup->escapeOutput('<b>HashOver</b>: Failed to create metadata file.', 'single'));
                 }
             }
         }
     }
 }
開發者ID:archcidburnziso,項目名稱:hashover-next,代碼行數:33,代碼來源:readfiles.php

示例2: __construct

 public function __construct(Setup $setup)
 {
     $this->setup = $setup;
     $this->storageMode = $setup->databaseType;
     try {
         if ($setup->databaseType === 'sqlite') {
             $this->database = new PDO('sqlite:' . $setup->rootDirectory . '/pages/' . $setup->databaseName . '.sqlite');
         } else {
             $sql_connection = 'host=' . $setup->databaseHost . ';' . 'dbname=' . $setup->databaseName . ';' . 'charset=' . $setup->databaseCharset;
             $this->database = new PDO($setup->databaseType . ':' . $sql_connection, $setup->databaseUser, $setup->databasePassword);
         }
     } catch (PDOException $error) {
         exit($setup->escapeOutput($error->getMessage(), 'single'));
     }
     // Create comment tread table
     $create = 'CREATE TABLE IF NOT EXISTS \'' . $setup->threadDirectory . '\' ' . '(id TEXT PRIMARY KEY,' . ' name TEXT,' . ' password TEXT,' . ' login_id TEXT,' . ' email TEXT,' . ' encryption TEXT,' . ' website TEXT,' . ' date TEXT,' . ' likes TEXT,' . ' dislikes TEXT,' . ' notifications TEXT,' . ' ipaddr TEXT,' . ' status TEXT,' . ' body TEXT)';
     $this->database->exec($create);
 }
開發者ID:archcidburnziso,項目名稱:hashover-next,代碼行數:18,代碼來源:database.php


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