当前位置: 首页>>代码示例>>PHP>>正文


PHP Strings::underscore方法代码示例

本文整理汇总了PHP中Strings::underscore方法的典型用法代码示例。如果您正苦于以下问题:PHP Strings::underscore方法的具体用法?PHP Strings::underscore怎么用?PHP Strings::underscore使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Strings的用法示例。


在下文中一共展示了Strings::underscore方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getByName

 public function getByName($name, $type, $transpose = 0)
 {
     $this->name = Strings::strtoupper($name);
     $this->type = Strings::underscore($type);
     $notes = $this->getNotes();
     if (in_array($this->type, array_keys($this->config))) {
         $start = array_keys($notes, $this->name);
         $note_sum = sizeof($notes) - 1;
         if (count($start) > 0) {
             if ($start[0] + $transpose < 0) {
                 $current = $start[0] + $transpose + $note_sum + 1;
             } else {
                 if ($start[0] + $transpose > $note_sum) {
                     $current = $start[0] + $transpose - $note_sum - 1;
                 } else {
                     $current = $start[0] + $transpose;
                 }
             }
             $this->scale[] = $notes[$current];
             foreach ($this->config[$this->type] as $num) {
                 $current += $num;
                 if ($current > $note_sum) {
                     $current -= $note_sum + 1;
                 }
                 $this->scale[] = $notes[$current];
             }
             return $this->scale;
         }
     }
 }
开发者ID:Acoustics,项目名称:jbLibrary,代码行数:30,代码来源:scale.php

示例2: getByScale

 public function getByScale($name, $type)
 {
     $scale = new Scale();
     $name = Strings::strtoupper($name);
     $type = Strings::underscore($type);
     $scale->getByName($name, $type);
     $scale_notes = $scale->notes;
     if (isset($scale_notes) && count($scale_notes) > 0) {
         $this->possible = array();
         $chords = $this->getTypes();
         for ($i = 0; $i < 12; $i++) {
             foreach ($chords as $chord) {
                 $this->chord = null;
                 $this->getByName("C", $chord, $i);
                 if ($this->containsNotes($this->chord, $scale_notes)) {
                     array_push($this->possible, array("name" => current($this->chord), "type" => $chord));
                 }
             }
         }
         return $this->possible;
     }
 }
开发者ID:Acoustics,项目名称:jbLibrary,代码行数:22,代码来源:chord.php


注:本文中的Strings::underscore方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。