PHP Класс Devise\Support\Str

Показать файл Открыть проект

Открытые методы

Метод Описание
replaceBetween ( string $haystack, string $needle, Closure $replacementMethod ) : string Replace the $needle strings within the $haystack with whatever the $replacementMethod tells us. Replacement method will be given a $between variable

Защищенные методы

Метод Описание
closetag ( string $str ) : char Gets the closing tag for a string
escaped ( string $str ) : integer Gets escaped string. If the string has '\' char then it is considered to be escaped.
opentag ( string $str ) : char Gets opening tag for a string

Описание методов

closetag() защищенный Метод

Gets the closing tag for a string
protected closetag ( string $str ) : char
$str string
Результат char

escaped() защищенный Метод

..
protected escaped ( string $str ) : integer
$str string
Результат integer

opentag() защищенный Метод

Gets opening tag for a string
protected opentag ( string $str ) : char
$str string
Результат char

replaceBetween() публичный Метод

Usage: replaceBetween('something @here(...) and @here(...)', '@here', function($between) { return "[ $between ]";" }); Returns something [ ... ] and [ ... ] This method is used by Devise\Pages\Docs\LiveSpan.
public replaceBetween ( string $haystack, string $needle, Closure $replacementMethod ) : string
$haystack string
$needle string
$replacementMethod Closure
Результат string