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


PHP Variable::charger方法代碼示例

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


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

示例1: charger

 public function charger()
 {
     // La variable n'existe pas ? La créer en y affectant la valeur par defaut
     if (!parent::charger($this->nom)) {
         $this->valeur = $this->defaut;
         $this->protege = 1;
         $this->cache = 1;
         $this->add();
     }
 }
開發者ID:anti-conformiste,項目名稱:thelia1,代碼行數:10,代碼來源:TlogDestinationConfig.class.php

示例2: pre_config

 /**
  * Appeler dans les fichiers: ./tinymce4_admin_title.php ; ./filemanager/config.php 
  * @return array
  * @see extract()
  */
 public static function pre_config()
 {
     if (!isset($_SESSION['util'], $_SESSION[self::MODULE])) {
         die('ERROR 403');
     }
     $urlsite = new Variable();
     $urlsite->charger('urlsite');
     $baseurl = rtrim('/' . preg_replace('/https?:\\/\\/[^\\/]+\\/?/', '', $urlsite->valeur), '/') . '/';
     $style_chem = new Variable();
     $style_chem->charger('style_chem');
     return array('thelia_path' => '../client/plugins/' . self::MODULE . '/', 'thelia_urlsite' => $urlsite->valeur, 'thelia_baseurl' => $baseurl, 'thelia_utilisateur' => 'client/gfx/utilisateur/', 'thelia_styles' => $urlsite->valeur && $style_chem->valeur ? $urlsite->valeur . $style_chem->valeur : '');
 }
開發者ID:anti-conformiste,項目名稱:thelia1,代碼行數:17,代碼來源:Tinymce4.class.php

示例3: maj_variable

 private function maj_variable($nom, $valeur)
 {
     $variable = new Variable();
     if ($variable->charger($nom)) {
         $variable->valeur = $valeur;
         $variable->maj();
     } else {
         $variable->nom = $nom;
         $variable->valeur = $valeur;
         $variable->protege = 1;
         $variable->cache = 1;
         $variable->add();
     }
 }
開發者ID:anti-conformiste,項目名稱:thelia1,代碼行數:14,代碼來源:logs.php

示例4: ecrire

 public static function ecrire($nom, $valeur, $creer_si_inexistante = false, $protege = 1, $cache = 1)
 {
     $var = new Variable($nom);
     if ($creer_si_inexistante && !$var->charger($nom)) {
         $var->nom = $nom;
         $var->valeur = $valeur;
         $var->protege = $protege;
         $var->cache = $cache;
         $var->add();
     } else {
         $var->valeur = $valeur;
         $var->maj();
     }
 }
開發者ID:anti-conformiste,項目名稱:thelia1,代碼行數:14,代碼來源:Variable.class.php


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