本文整理汇总了PHP中Strings::ucfirst方法的典型用法代码示例。如果您正苦于以下问题:PHP Strings::ucfirst方法的具体用法?PHP Strings::ucfirst怎么用?PHP Strings::ucfirst使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Strings
的用法示例。
在下文中一共展示了Strings::ucfirst方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getByName
public function getByName($name, $type, $transpose = 0)
{
$this->name = Strings::ucfirst($name);
$this->type = Strings::sanitize_u($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->chord[] = $notes[$current];
foreach ($this->config[$this->type] as $num) {
$current += $num;
if ($current > $note_sum) {
$current -= $note_sum + 1;
}
$this->chord[] = $notes[$current];
}
return $this->chord;
}
}
}
示例2: testUcfirstEmpty
public function testUcfirstEmpty()
{
$expected = '';
$string = new Strings('');
$result = $string->ucfirst();
$this->assertEmpty($result);
}
示例3: getByChords
public function getByChords($chords)
{
$_chord = new Chord();
$notes = array();
foreach ($chords as $chord) {
$name = Strings::ucfirst($chord["name"]);
$type = Strings::sanitize_u($chord["type"]);
$_chord->getByName($name, $type);
$notes = array_merge($notes, $_chord->notes);
}
$notes = array_unique($notes);
$this->possible = array();
$scales = $this->getTypes();
for ($i = 0; $i < 12; $i++) {
foreach ($scales as $scale) {
$this->scale = null;
$this->getByName("C", $scale, $i);
if ($this->containsNotes($notes, $this->scale)) {
array_push($this->possible, array("name" => current($this->scale), "type" => $scale));
}
}
}
return $this->possible;
}