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


PHP Inflector::tableize方法代碼示例

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


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

示例1: testTableize

 public function testTableize()
 {
     $this->assertEquals("customer_tables", Inflector::tableize('customerTable'));
 }
開發者ID:howq,項目名稱:yii2,代碼行數:4,代碼來源:InflectorTest.php

示例2: createSecureItemName

 /**
  * @return string
  */
 public function createSecureItemName()
 {
     if (!($template = $this->secureItemTemplate)) {
         $uniquePart = strtoupper(Inflector::tableize((new \ReflectionClass($this->owner))->getShortName()));
         $template = 'ACCESS_' . $uniquePart;
     }
     $primaryKeys = $this->owner->getPrimaryKey(true);
     foreach ($primaryKeys as $value) {
         $template .= '_' . $value;
     }
     return $template;
 }
開發者ID:yii2-tools,項目名稱:yii2-secure-ar,代碼行數:15,代碼來源:SecureBehavior.php

示例3: tableName

 /**
  * Declares the name of the database table associated with this AR class.
  * By default this method returns the class name as the table name that is equal to plurlized form
  * of class name with camel case converted to lower case with words concatenated with underscopes.
  * For example, 'Customer' becomes '{{%customers}}', and 'OrderItem' becomes
  * '{{%order_items}}'. You may override this method if the table is not named after this convention.
  * @return string the table name
  */
 public static function tableName()
 {
     return '{{%' . Inflector::tableize(StringHelper::basename(get_called_class())) . '}}';
 }
開發者ID:omnilight,項目名稱:yz2,代碼行數:12,代碼來源:ActiveRecord.php

示例4: attach

 public function attach($owner)
 {
     parent::attach($owner);
     $folder = Inflector::tableize(StringHelper::basename($this->owner->className()));
     if (!$this->basePath) {
         $this->basePath = '@static/' . $folder;
     }
     if (!$this->baseUrl) {
         $this->baseUrl = '@staticUrl/' . $folder;
     }
 }
開發者ID:maddoger,項目名稱:yii2-filebehavior,代碼行數:11,代碼來源:FileBehavior.php


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