92 lines
2.2 KiB
PHP
92 lines
2.2 KiB
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Log;
|
|
use Overtrue\Pinyin\Pinyin;
|
|
|
|
if (! function_exists('pinyin')) {
|
|
/**
|
|
* Get the Pinyin of given string.
|
|
*
|
|
* @param string $string
|
|
* @param string $option
|
|
*
|
|
* @return string
|
|
*/
|
|
function pinyin($string, $option = Pinyin::NONE)
|
|
{
|
|
return app(Pinyin::class)->convert($string, $option);
|
|
}
|
|
} else {
|
|
Log::warning('There exist multiple function "pinyin".');
|
|
}
|
|
|
|
if (! function_exists('pinyin_abbr')) {
|
|
/**
|
|
* Get the fist letters of given string.
|
|
*
|
|
* @param string $string
|
|
* @param string $delimiter
|
|
*
|
|
* @return string
|
|
*/
|
|
function pinyin_abbr($string, $delimiter = '')
|
|
{
|
|
return app(Pinyin::class)->abbr($string, $delimiter);
|
|
}
|
|
} else {
|
|
Log::warning('There exist multiple function "pinyin_abbr".');
|
|
}
|
|
|
|
if (! function_exists('pinyin_permlink')) {
|
|
/**
|
|
* Get a pinyin permalink from string.
|
|
*
|
|
* @param string $string
|
|
* @param string $delimiter
|
|
*
|
|
* @return string
|
|
*
|
|
* @deprecated since version 3.0.1. Use the "pinyin_permalink" method instead.
|
|
*/
|
|
function pinyin_permlink($string, $delimiter = '-')
|
|
{
|
|
return app(Pinyin::class)->permalink($string, $delimiter);
|
|
}
|
|
} else {
|
|
Log::warning('There exist multiple function "pinyin_permlink".');
|
|
}
|
|
|
|
if (! function_exists('pinyin_permalink')) {
|
|
/**
|
|
* Get a pinyin permalink from string.
|
|
*
|
|
* @param string $string
|
|
* @param string $delimiter
|
|
*
|
|
* @return string
|
|
*/
|
|
function pinyin_permalink($string, $delimiter = '-')
|
|
{
|
|
return app(Pinyin::class)->permalink($string, $delimiter);
|
|
}
|
|
} else {
|
|
Log::warning('There exist multiple function "pinyin_permalink".');
|
|
}
|
|
|
|
if (! function_exists('pinyin_sentence')) {
|
|
/**
|
|
* Get the fist pinyin and letters of given string.
|
|
*
|
|
* @param string $string
|
|
* @param string $tone
|
|
*
|
|
* @return string
|
|
*/
|
|
function pinyin_sentence($string, $tone = false)
|
|
{
|
|
return app(Pinyin::class)->sentence($string, $tone);
|
|
}
|
|
} else {
|
|
Log::warning('There exist multiple function "pinyin_sentence".');
|
|
}
|