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


PHP Text::upper方法代碼示例

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


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

示例1: resolve

 /**
  * {@inheritdoc}
  */
 public function resolve(&$value)
 {
     if (is_string($value) && strlen($value) > 0) {
         $value = \Phalcon\Text::upper($value);
     }
     return $value;
 }
開發者ID:arius86,項目名稱:core,代碼行數:10,代碼來源:Uppercase.php

示例2: cast

 /**
  * Cast value to string
  * @param $value
  * @return string
  */
 public function cast($value)
 {
     if ($this->_trim === null && self::$_defaultTrim !== null) {
         $this->_trim = self::$_defaultTrim;
     }
     if (is_scalar($value)) {
         $value = (string) $value;
         if ($this->_trim === true) {
             $value = trim($value);
         }
         if ($this->_uppercase === true) {
             $value = \Phalcon\Text::upper($value);
         } elseif ($this->_lowercase === true) {
             $value = \Phalcon\Text::lower($value);
         }
         return $value;
     }
     return '';
 }
開發者ID:alexboo,項目名稱:phalcon-annotation-mapper,代碼行數:24,代碼來源:StringCast.php

示例3: upper

 public static function upper($str)
 {
     return parent::upper($str);
 }
開發者ID:lisong,項目名稱:cphalcon,代碼行數:4,代碼來源:Text.php

示例4: upper

 public static function upper($str, $encoding = "UTF-8")
 {
     return parent::upper($str, $encoding);
 }
開發者ID:mattvb91,項目名稱:cphalcon,代碼行數:4,代碼來源:Text.php

示例5: testUpper

 public function testUpper()
 {
     $this->assertEquals(PhText::upper('hello'), 'HELLO');
     $this->assertEquals(PhText::upper('HELLO'), 'HELLO');
     $this->assertEquals(PhText::upper('1234'), '1234');
 }
開發者ID:lisong,項目名稱:cphalcon,代碼行數:6,代碼來源:UnitTest.php

示例6: describeReferences

 public function describeReferences($table, $schema = null)
 {
     $table = $this->escape($table);
     $sql = 'SELECT AC.TABLE_NAME, CC.COLUMN_NAME, AC.CONSTRAINT_NAME, AC.R_OWNER, RCC.TABLE_NAME R_TABLE_NAME, ' . 'RCC.COLUMN_NAME R_COLUMN_NAME FROM ALL_CONSTRAINTS AC JOIN ALL_CONS_COLUMNS CC ' . 'ON AC.CONSTRAINT_NAME = CC.CONSTRAINT_NAME JOIN ALL_CONS_COLUMNS RCC ON AC.R_OWNER = RCC.OWNER ' . "AND AC.R_CONSTRAINT_NAME = RCC.CONSTRAINT_NAME WHERE AC.CONSTRAINT_TYPE='R' ";
     if (!empty($schema)) {
         $schema = $this->escapeSchema($schema);
         $sql .= 'AND AC.OWNER = ' . Text::upper($schema) . ' AND AC.TABLE_NAME = ' . Text::upper($table);
     } else {
         $sql .= 'AND AC.TABLE_NAME = ' . Text::upper($table);
     }
     return $sql;
 }
開發者ID:phalcon,項目名稱:incubator,代碼行數:12,代碼來源:Oracle.php

示例7: testUpperException

 public function testUpperException()
 {
     $this->setExpectedException('\\Phalcon\\Exception');
     \Phalcon\Text::upper(false);
 }
開發者ID:aisuhua,項目名稱:phalcon-php,代碼行數:5,代碼來源:TextTest.php


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