Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
210a8e9a
Commit
210a8e9a
authored
Jun 19, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3972 from yiisoft/inflector-slug-improvements
Fixes #3939: `\yii\Inflector::slug()` improvements
parents
59b967cc
c3de3450
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
128 additions
and
77 deletions
+128
-77
CHANGELOG.md
framework/CHANGELOG.md
+6
-0
BaseInflector.php
framework/helpers/BaseInflector.php
+39
-69
requirements.php
framework/requirements/requirements.php
+2
-1
FallbackInflector.php
tests/unit/framework/helpers/FallbackInflector.php
+22
-0
InflectorTest.php
tests/unit/framework/helpers/InflectorTest.php
+59
-7
No files found.
framework/CHANGELOG.md
View file @
210a8e9a
...
@@ -91,6 +91,12 @@ Yii Framework 2 Change Log
...
@@ -91,6 +91,12 @@ Yii Framework 2 Change Log
-
Enh #3773: Added
`FileValidator::mimeTypes`
to support validating MIME types of files (Ragazzo)
-
Enh #3773: Added
`FileValidator::mimeTypes`
to support validating MIME types of files (Ragazzo)
-
Enh #3774: Added
`FileValidator::checkExtensionByMimeType`
to support validating file types against file mime-types (Ragazzo)
-
Enh #3774: Added
`FileValidator::checkExtensionByMimeType`
to support validating file types against file mime-types (Ragazzo)
-
Enh #3801: Base migration controller
`yii\console\controllers\BaseMigrateController`
extracted (klimov-paul)
-
Enh #3801: Base migration controller
`yii\console\controllers\BaseMigrateController`
extracted (klimov-paul)
-
Enh #3939:
`\yii\Inflector::slug()`
improvements (samdark)
-
Added protected
`\yii\Inflector::transliterate()`
that could be replaced with custom translit implementation.
-
Added proper tests for both intl-based slug and PHP fallback.
-
Removed character maps for non-latin languages.
-
Improved overall slug results.
-
Added note about the fact that intl is required for non-latin languages to requirements checker.
-
Enh: Added support for using sub-queries when building a DB query with
`IN`
condition (qiangxue)
-
Enh: Added support for using sub-queries when building a DB query with
`IN`
condition (qiangxue)
-
Enh: Supported adding a new response formatter without the need to reconfigure existing formatters (qiangxue)
-
Enh: Supported adding a new response formatter without the need to reconfigure existing formatters (qiangxue)
-
Enh: Added
`yii\web\UrlManager::addRules()`
to simplify adding new URL rules (qiangxue)
-
Enh: Added
`yii\web\UrlManager::addRules()`
to simplify adding new URL rules (qiangxue)
...
...
framework/helpers/BaseInflector.php
View file @
210a8e9a
...
@@ -15,6 +15,7 @@ use Yii;
...
@@ -15,6 +15,7 @@ use Yii;
* Do not use BaseInflector. Use [[Inflector]] instead.
* Do not use BaseInflector. Use [[Inflector]] instead.
*
*
* @author Antonio Ramirez <amigo.cobos@gmail.com>
* @author Antonio Ramirez <amigo.cobos@gmail.com>
* @author Alexander Makarov <sam@rmcreative.ru>
* @since 2.0
* @since 2.0
*/
*/
class
BaseInflector
class
BaseInflector
...
@@ -217,10 +218,9 @@ class BaseInflector
...
@@ -217,10 +218,9 @@ class BaseInflector
];
];
/**
/**
* @var array
map of special chars and its translation. This is used by [[slug()]]
.
* @var array
fallback map for transliteration used by [[slug()]] when intl isn't available
.
*/
*/
public
static
$transliteration
=
[
public
static
$transliteration
=
[
// Latin
'À'
=>
'A'
,
'Á'
=>
'A'
,
'Â'
=>
'A'
,
'Ã'
=>
'A'
,
'Ä'
=>
'A'
,
'Å'
=>
'A'
,
'Æ'
=>
'AE'
,
'Ç'
=>
'C'
,
'À'
=>
'A'
,
'Á'
=>
'A'
,
'Â'
=>
'A'
,
'Ã'
=>
'A'
,
'Ä'
=>
'A'
,
'Å'
=>
'A'
,
'Æ'
=>
'AE'
,
'Ç'
=>
'C'
,
'È'
=>
'E'
,
'É'
=>
'E'
,
'Ê'
=>
'E'
,
'Ë'
=>
'E'
,
'Ì'
=>
'I'
,
'Í'
=>
'I'
,
'Î'
=>
'I'
,
'Ï'
=>
'I'
,
'È'
=>
'E'
,
'É'
=>
'E'
,
'Ê'
=>
'E'
,
'Ë'
=>
'E'
,
'Ì'
=>
'I'
,
'Í'
=>
'I'
,
'Î'
=>
'I'
,
'Ï'
=>
'I'
,
'Ð'
=>
'D'
,
'Ñ'
=>
'N'
,
'Ò'
=>
'O'
,
'Ó'
=>
'O'
,
'Ô'
=>
'O'
,
'Õ'
=>
'O'
,
'Ö'
=>
'O'
,
'Ő'
=>
'O'
,
'Ð'
=>
'D'
,
'Ñ'
=>
'N'
,
'Ò'
=>
'O'
,
'Ó'
=>
'O'
,
'Ô'
=>
'O'
,
'Õ'
=>
'O'
,
'Ö'
=>
'O'
,
'Ő'
=>
'O'
,
...
@@ -231,62 +231,6 @@ class BaseInflector
...
@@ -231,62 +231,6 @@ class BaseInflector
'ð'
=>
'd'
,
'ñ'
=>
'n'
,
'ò'
=>
'o'
,
'ó'
=>
'o'
,
'ô'
=>
'o'
,
'õ'
=>
'o'
,
'ö'
=>
'o'
,
'ő'
=>
'o'
,
'ð'
=>
'd'
,
'ñ'
=>
'n'
,
'ò'
=>
'o'
,
'ó'
=>
'o'
,
'ô'
=>
'o'
,
'õ'
=>
'o'
,
'ö'
=>
'o'
,
'ő'
=>
'o'
,
'ø'
=>
'o'
,
'ù'
=>
'u'
,
'ú'
=>
'u'
,
'û'
=>
'u'
,
'ü'
=>
'u'
,
'ű'
=>
'u'
,
'ý'
=>
'y'
,
'þ'
=>
'th'
,
'ø'
=>
'o'
,
'ù'
=>
'u'
,
'ú'
=>
'u'
,
'û'
=>
'u'
,
'ü'
=>
'u'
,
'ű'
=>
'u'
,
'ý'
=>
'y'
,
'þ'
=>
'th'
,
'ÿ'
=>
'y'
,
'ÿ'
=>
'y'
,
// Latin symbols
'©'
=>
'(c)'
,
// Greek
'Α'
=>
'A'
,
'Β'
=>
'B'
,
'Γ'
=>
'G'
,
'Δ'
=>
'D'
,
'Ε'
=>
'E'
,
'Ζ'
=>
'Z'
,
'Η'
=>
'H'
,
'Θ'
=>
'8'
,
'Ι'
=>
'I'
,
'Κ'
=>
'K'
,
'Λ'
=>
'L'
,
'Μ'
=>
'M'
,
'Ν'
=>
'N'
,
'Ξ'
=>
'3'
,
'Ο'
=>
'O'
,
'Π'
=>
'P'
,
'Ρ'
=>
'R'
,
'Σ'
=>
'S'
,
'Τ'
=>
'T'
,
'Υ'
=>
'Y'
,
'Φ'
=>
'F'
,
'Χ'
=>
'X'
,
'Ψ'
=>
'PS'
,
'Ω'
=>
'W'
,
'Ά'
=>
'A'
,
'Έ'
=>
'E'
,
'Ί'
=>
'I'
,
'Ό'
=>
'O'
,
'Ύ'
=>
'Y'
,
'Ή'
=>
'H'
,
'Ώ'
=>
'W'
,
'Ϊ'
=>
'I'
,
'Ϋ'
=>
'Y'
,
'α'
=>
'a'
,
'β'
=>
'b'
,
'γ'
=>
'g'
,
'δ'
=>
'd'
,
'ε'
=>
'e'
,
'ζ'
=>
'z'
,
'η'
=>
'h'
,
'θ'
=>
'8'
,
'ι'
=>
'i'
,
'κ'
=>
'k'
,
'λ'
=>
'l'
,
'μ'
=>
'm'
,
'ν'
=>
'n'
,
'ξ'
=>
'3'
,
'ο'
=>
'o'
,
'π'
=>
'p'
,
'ρ'
=>
'r'
,
'σ'
=>
's'
,
'τ'
=>
't'
,
'υ'
=>
'y'
,
'φ'
=>
'f'
,
'χ'
=>
'x'
,
'ψ'
=>
'ps'
,
'ω'
=>
'w'
,
'ά'
=>
'a'
,
'έ'
=>
'e'
,
'ί'
=>
'i'
,
'ό'
=>
'o'
,
'ύ'
=>
'y'
,
'ή'
=>
'h'
,
'ώ'
=>
'w'
,
'ς'
=>
's'
,
'ϊ'
=>
'i'
,
'ΰ'
=>
'y'
,
'ϋ'
=>
'y'
,
'ΐ'
=>
'i'
,
// Turkish
'Ş'
=>
'S'
,
'İ'
=>
'I'
,
'Ç'
=>
'C'
,
'Ü'
=>
'U'
,
'Ö'
=>
'O'
,
'Ğ'
=>
'G'
,
'ş'
=>
's'
,
'ı'
=>
'i'
,
'ç'
=>
'c'
,
'ü'
=>
'u'
,
'ö'
=>
'o'
,
'ğ'
=>
'g'
,
// Russian
'А'
=>
'A'
,
'Б'
=>
'B'
,
'В'
=>
'V'
,
'Г'
=>
'G'
,
'Д'
=>
'D'
,
'Е'
=>
'E'
,
'Ё'
=>
'Yo'
,
'Ж'
=>
'Zh'
,
'З'
=>
'Z'
,
'И'
=>
'I'
,
'Й'
=>
'J'
,
'К'
=>
'K'
,
'Л'
=>
'L'
,
'М'
=>
'M'
,
'Н'
=>
'N'
,
'О'
=>
'O'
,
'П'
=>
'P'
,
'Р'
=>
'R'
,
'С'
=>
'S'
,
'Т'
=>
'T'
,
'У'
=>
'U'
,
'Ф'
=>
'F'
,
'Х'
=>
'H'
,
'Ц'
=>
'C'
,
'Ч'
=>
'Ch'
,
'Ш'
=>
'Sh'
,
'Щ'
=>
'Sh'
,
'Ъ'
=>
''
,
'Ы'
=>
'Y'
,
'Ь'
=>
''
,
'Э'
=>
'E'
,
'Ю'
=>
'Yu'
,
'Я'
=>
'Ya'
,
'а'
=>
'a'
,
'б'
=>
'b'
,
'в'
=>
'v'
,
'г'
=>
'g'
,
'д'
=>
'd'
,
'е'
=>
'e'
,
'ё'
=>
'yo'
,
'ж'
=>
'zh'
,
'з'
=>
'z'
,
'и'
=>
'i'
,
'й'
=>
'j'
,
'к'
=>
'k'
,
'л'
=>
'l'
,
'м'
=>
'm'
,
'н'
=>
'n'
,
'о'
=>
'o'
,
'п'
=>
'p'
,
'р'
=>
'r'
,
'с'
=>
's'
,
'т'
=>
't'
,
'у'
=>
'u'
,
'ф'
=>
'f'
,
'х'
=>
'h'
,
'ц'
=>
'c'
,
'ч'
=>
'ch'
,
'ш'
=>
'sh'
,
'щ'
=>
'sh'
,
'ъ'
=>
''
,
'ы'
=>
'y'
,
'ь'
=>
''
,
'э'
=>
'e'
,
'ю'
=>
'yu'
,
'я'
=>
'ya'
,
// Ukrainian
'Є'
=>
'Ye'
,
'І'
=>
'I'
,
'Ї'
=>
'Yi'
,
'Ґ'
=>
'G'
,
'є'
=>
'ye'
,
'і'
=>
'i'
,
'ї'
=>
'yi'
,
'ґ'
=>
'g'
,
// Czech
'Č'
=>
'C'
,
'Ď'
=>
'D'
,
'Ě'
=>
'E'
,
'Ň'
=>
'N'
,
'Ř'
=>
'R'
,
'Š'
=>
'S'
,
'Ť'
=>
'T'
,
'Ů'
=>
'U'
,
'Ž'
=>
'Z'
,
'č'
=>
'c'
,
'ď'
=>
'd'
,
'ě'
=>
'e'
,
'ň'
=>
'n'
,
'ř'
=>
'r'
,
'š'
=>
's'
,
'ť'
=>
't'
,
'ů'
=>
'u'
,
'ž'
=>
'z'
,
// Polish
'Ą'
=>
'A'
,
'Ć'
=>
'C'
,
'Ę'
=>
'e'
,
'Ł'
=>
'L'
,
'Ń'
=>
'N'
,
'Ó'
=>
'o'
,
'Ś'
=>
'S'
,
'Ź'
=>
'Z'
,
'Ż'
=>
'Z'
,
'ą'
=>
'a'
,
'ć'
=>
'c'
,
'ę'
=>
'e'
,
'ł'
=>
'l'
,
'ń'
=>
'n'
,
'ó'
=>
'o'
,
'ś'
=>
's'
,
'ź'
=>
'z'
,
'ż'
=>
'z'
,
// Latvian
'Ā'
=>
'A'
,
'Č'
=>
'C'
,
'Ē'
=>
'E'
,
'Ģ'
=>
'G'
,
'Ī'
=>
'i'
,
'Ķ'
=>
'k'
,
'Ļ'
=>
'L'
,
'Ņ'
=>
'N'
,
'Š'
=>
'S'
,
'Ū'
=>
'u'
,
'Ž'
=>
'Z'
,
'ā'
=>
'a'
,
'č'
=>
'c'
,
'ē'
=>
'e'
,
'ģ'
=>
'g'
,
'ī'
=>
'i'
,
'ķ'
=>
'k'
,
'ļ'
=>
'l'
,
'ņ'
=>
'n'
,
'š'
=>
's'
,
'ū'
=>
'u'
,
'ž'
=>
'z'
,
//Vietnamese
'Ấ'
=>
'A'
,
'Ầ'
=>
'A'
,
'Ẩ'
=>
'A'
,
'Ẫ'
=>
'A'
,
'Ậ'
=>
'A'
,
'Ắ'
=>
'A'
,
'Ằ'
=>
'A'
,
'Ẳ'
=>
'A'
,
'Ẵ'
=>
'A'
,
'Ặ'
=>
'A'
,
'Ố'
=>
'O'
,
'Ồ'
=>
'O'
,
'Ổ'
=>
'O'
,
'Ỗ'
=>
'O'
,
'Ộ'
=>
'O'
,
'Ớ'
=>
'O'
,
'Ờ'
=>
'O'
,
'Ở'
=>
'O'
,
'Ỡ'
=>
'O'
,
'Ợ'
=>
'O'
,
'Ế'
=>
'E'
,
'Ề'
=>
'E'
,
'Ể'
=>
'E'
,
'Ễ'
=>
'E'
,
'Ệ'
=>
'E'
,
'ấ'
=>
'a'
,
'ầ'
=>
'a'
,
'ẩ'
=>
'a'
,
'ẫ'
=>
'a'
,
'ậ'
=>
'a'
,
'ắ'
=>
'a'
,
'ằ'
=>
'a'
,
'ẳ'
=>
'a'
,
'ẵ'
=>
'a'
,
'ặ'
=>
'a'
,
'ố'
=>
'o'
,
'ồ'
=>
'o'
,
'ổ'
=>
'o'
,
'ỗ'
=>
'o'
,
'ộ'
=>
'o'
,
'ớ'
=>
'o'
,
'ờ'
=>
'o'
,
'ở'
=>
'o'
,
'ỡ'
=>
'o'
,
'ợ'
=>
'o'
,
'ế'
=>
'e'
,
'ề'
=>
'e'
,
'ể'
=>
'e'
,
'ễ'
=>
'e'
,
'ệ'
=>
'e'
];
];
/**
/**
...
@@ -456,9 +400,13 @@ class BaseInflector
...
@@ -456,9 +400,13 @@ class BaseInflector
}
}
/**
/**
* Returns a string with all spaces converted to given replacement and
* Returns a string with all spaces converted to given replacement,
* non word characters removed. Maps special characters to ASCII using
* non word characters removed and the rest of characters transliterated.
* [[$transliteration]] array.
*
* If intl extension isn't available uses fallback that converts latin characters only
* and removes the rest. You may customize characters map via $transliteration property
* of the helper.
*
* @param string $string An arbitrary string to convert
* @param string $string An arbitrary string to convert
* @param string $replacement The replacement to use for spaces
* @param string $replacement The replacement to use for spaces
* @param boolean $lowercase whether to return the string in lowercase or not. Defaults to `true`.
* @param boolean $lowercase whether to return the string in lowercase or not. Defaults to `true`.
...
@@ -466,20 +414,42 @@ class BaseInflector
...
@@ -466,20 +414,42 @@ class BaseInflector
*/
*/
public
static
function
slug
(
$string
,
$replacement
=
'-'
,
$lowercase
=
true
)
public
static
function
slug
(
$string
,
$replacement
=
'-'
,
$lowercase
=
true
)
{
{
if
(
extension_loaded
(
'intl'
)
===
true
)
{
$string
=
static
::
transliterate
(
$string
);
$options
=
'Any-Latin; NFKD; [:Punctuation:] Remove; [^\u0000-\u007E] Remove'
;
$string
=
preg_replace
(
'/[^a-zA-Z=\s—–-]+/u'
,
''
,
$string
);
$string
=
transliterator_transliterate
(
$options
,
$string
);
$string
=
preg_replace
(
'/[=\s—–-]+/u'
,
$replacement
,
$string
);
$string
=
preg_replace
(
'/[-=\s]+/'
,
$replacement
,
$string
);
}
else
{
$string
=
str_replace
(
array_keys
(
static
::
$transliteration
),
static
::
$transliteration
,
$string
);
$string
=
preg_replace
(
'/[^\p{L}\p{Nd}]+/u'
,
$replacement
,
$string
);
}
$string
=
trim
(
$string
,
$replacement
);
$string
=
trim
(
$string
,
$replacement
);
return
$lowercase
?
strtolower
(
$string
)
:
$string
;
return
$lowercase
?
strtolower
(
$string
)
:
$string
;
}
}
/**
/**
* Returns transliterated version of a string.
*
* If intl extension isn't available uses fallback that converts latin characters only
* and removes the rest. You may customize characters map via $transliteration property
* of the helper.
*
* @param string $string input string
* @return string
*/
protected
static
function
transliterate
(
$string
)
{
if
(
static
::
hasIntl
())
{
return
transliterator_transliterate
(
'Any-Latin; NFKD'
,
$string
);
}
else
{
return
str_replace
(
array_keys
(
static
::
$transliteration
),
static
::
$transliteration
,
$string
);
}
}
/**
* @return boolean if intl extension is loaded
*/
protected
static
function
hasIntl
()
{
return
extension_loaded
(
'intl'
);
}
/**
* Converts a table name to its class name. For example, converts "people" to "Person"
* Converts a table name to its class name. For example, converts "people" to "Person"
* @param string $tableName
* @param string $tableName
* @return string
* @return string
...
...
framework/requirements/requirements.php
View file @
210a8e9a
...
@@ -44,7 +44,8 @@ return array(
...
@@ -44,7 +44,8 @@ return array(
'condition'
=>
$this
->
checkPhpExtensionVersion
(
'intl'
,
'1.0.2'
,
'>='
),
'condition'
=>
$this
->
checkPhpExtensionVersion
(
'intl'
,
'1.0.2'
,
'>='
),
'by'
=>
'<a href="http://www.php.net/manual/en/book.intl.php">Internationalization</a> support'
,
'by'
=>
'<a href="http://www.php.net/manual/en/book.intl.php">Internationalization</a> support'
,
'memo'
=>
'PHP Intl extension 1.0.2 or higher is required when you want to use advanced parameters formatting
'memo'
=>
'PHP Intl extension 1.0.2 or higher is required when you want to use advanced parameters formatting
in <code>Yii::t()</code>, <abbr title="Internationalized domain names">IDN</abbr>-feature of
in <code>Yii::t()</code>, non-latin languages with <code>Inflector::slug()</code>,
<abbr title="Internationalized domain names">IDN</abbr>-feature of
<code>EmailValidator</code> or <code>UrlValidator</code> or the <code>yii\i18n\Formatter</code> class.'
<code>EmailValidator</code> or <code>UrlValidator</code> or the <code>yii\i18n\Formatter</code> class.'
),
),
array
(
array
(
...
...
tests/unit/framework/helpers/FallbackInflector.php
0 → 100644
View file @
210a8e9a
<?php
namespace
yiiunit\framework\helpers
;
use
yii\helpers\BaseInflector
;
/**
* Forces Inflector::slug to use PHP even if intl is available
*/
class
FallbackInflector
extends
BaseInflector
{
/**
* @inheritdoc
*/
protected
static
function
hasIntl
()
{
return
false
;
}
}
\ No newline at end of file
tests/unit/framework/helpers/InflectorTest.php
View file @
210a8e9a
...
@@ -122,23 +122,75 @@ class InflectorTest extends TestCase
...
@@ -122,23 +122,75 @@ class InflectorTest extends TestCase
$this
->
assertEquals
(
"customer_tables"
,
Inflector
::
tableize
(
'customerTable'
));
$this
->
assertEquals
(
"customer_tables"
,
Inflector
::
tableize
(
'customerTable'
));
}
}
public
function
testSlug
()
public
function
testSlug
Commons
()
{
{
$data
=
[
$data
=
[
'Привет. Hello, Йии-- Framework !--- Как дела ? How it goes ?'
=>
'privet-hello-jii-framework-kak-dela-how-it-goes'
,
''
=>
''
,
'this is a title'
=>
'this-is-a-title'
,
'hello world'
=>
'hello-world'
,
'недвижимость'
=>
'nedvizimost'
,
'remove.!?[]{}…symbols'
=>
'removesymbols'
,
'minus-sign'
=>
'minus-sign'
,
'mdash—sign'
=>
'mdash-sign'
,
'ndash–sign'
=>
'ndash-sign'
,
'áàâéèêíìîóòôúùûã'
=>
'aaaeeeiiiooouuua'
,
'áàâéèêíìîóòôúùûã'
=>
'aaaeeeiiiooouuua'
,
'Ναδάλης ṃỹṛèşưḿĕ'
=>
'nadales-myresume'
,
'älä lyö ääliö ööliä läikkyy'
=>
'ala-lyo-aalio-oolia-laikkyy'
,
'E=mc²'
=>
'e-mc2'
,
'è¼å¥'
=>
'e14a'
,
];
];
foreach
(
$data
as
$source
=>
$expected
)
{
foreach
(
$data
as
$source
=>
$expected
)
{
if
(
extension_loaded
(
'intl'
))
{
$this
->
assertEquals
(
$expected
,
FallbackInflector
::
slug
(
$source
));
}
$this
->
assertEquals
(
$expected
,
Inflector
::
slug
(
$source
));
$this
->
assertEquals
(
$expected
,
Inflector
::
slug
(
$source
));
}
}
}
}
public
function
testSlugIntl
()
{
if
(
!
extension_loaded
(
'intl'
))
{
$this
->
markTestSkipped
(
'intl extension is required.'
);
}
// Some test strings are from https://github.com/bergie/midgardmvc_helper_urlize. Thank you, Henri Bergius!
$data
=
[
// Korean
'해동검도'
=>
'haedong-geomdo'
,
// Hiragana
'ひらがな'
=>
'hiragana'
,
// Georgian
'საქართველო'
=>
'sakartvelo'
,
// Arabic
'العربي'
=>
'alrby'
,
'عرب'
=>
'rb'
,
// Hebrew
'עִבְרִית'
=>
'iberiyt'
,
// Turkish
'Sanırım hepimiz aynı şeyi düşünüyoruz.'
=>
'sanrm-hepimiz-ayn-seyi-dusunuyoruz'
,
// Russian
'недвижимость'
=>
'nedvizimost'
,
'Контакты'
=>
'kontakty'
,
];
foreach
(
$data
as
$source
=>
$expected
)
{
$this
->
assertEquals
(
$expected
,
Inflector
::
slug
(
$source
));
}
}
public
function
testSlugPhp
()
{
$data
=
[
'we have недвижимость'
=>
'we-have'
,
];
foreach
(
$data
as
$source
=>
$expected
)
{
$this
->
assertEquals
(
$expected
,
FallbackInflector
::
slug
(
$source
));
}
}
public
function
testClassify
()
public
function
testClassify
()
{
{
$this
->
assertEquals
(
"CustomerTable"
,
Inflector
::
classify
(
'customer_tables'
));
$this
->
assertEquals
(
"CustomerTable"
,
Inflector
::
classify
(
'customer_tables'
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment