nativegallery/app/Services/Word.php
2024-07-04 13:09:20 +03:00

20 lines
No EOL
277 B
PHP

<?php
namespace App\Services;
use App\Services\GenerateRandomStr;
class Word
{
public static function strlen($word)
{
$len = strlen($word);
if (preg_match("/[\p{Cyrillic}]/u", $word)) {
$len /= 2;
}
return $len;
}
}