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


PHP Str::macro方法代碼示例

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


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

示例1: registerStr

 /**
  * Str
  */
 public function registerStr()
 {
     //Create the Str object
     $this->app['str'] = new Str(Config::get('application.encoding'));
     \Str::macro('replaceAccents', function ($value) {
         return $this->app['str']->replaceAccents($value);
     });
     \Str::macro('arrayStripTags', function ($value) {
         return $this->app['str']->arrayStripTags($value);
     });
 }
開發者ID:ellipsesynergie,項目名稱:laravel-helper,代碼行數:14,代碼來源:LaravelHelperServiceProvider.php

示例2: boot

 /**
  * Bootstrap the application events.
  *
  * @return void
  */
 public function boot()
 {
     $this->package('jlem/fields');
     \App::bind('field', function () {
         return \App::make('Jlem\\Fields\\FormField');
     });
     \Str::macro('spaceCase', function ($string) {
         return ucwords(str_replace('_', ' ', \snake_case($string)));
     });
     \App::bind('Jlem\\Fields\\Arguments\\LabelTranslator', \Config::get('fields::config.label_translator'));
     \App::bind('Jlem\\Fields\\Arguments\\ArgumentMerger', \Config::get('fields::config.argument_merger'));
 }
開發者ID:jlem,項目名稱:fields,代碼行數:17,代碼來源:FieldsServiceProvider.php

示例3: setupMacros

 protected function setupMacros()
 {
     \Str::macro('creditCode', function ($length) {
         $pool = '123456789abcdefghijkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ';
         return substr(str_shuffle(str_repeat($pool, 5)), 0, $length);
     });
 }
開發者ID:kleitz,項目名稱:bjga-scheduler,代碼行數:7,代碼來源:SchedulerServiceProvider.php

示例4: function

<?php

/**
 * Extend Str class to add number to alpha
 *
 * @return string
 * @author Gat
 **/
Str::macro('numToAlpha', function ($n) {
    $r = '';
    for ($i = 1; $n >= 0 && $i < 10; $i++) {
        $r = chr(0x41 + $n % pow(26, $i) / pow(26, $i - 1)) . $r;
        $n -= pow(26, $i);
    }
    return $r;
});
開發者ID:razerbite,項目名稱:frisco_foundry,代碼行數:16,代碼來源:macros.php


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