whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Str
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Str/metaphone.php
<?php declare(strict_types=1); namespace Psl\Str; use function metaphone as php_metaphone; /** * Calculate the metaphone key of a string. * * @param int<0, max> $phonemes This parameter restricts the returned metaphone key to phonemes characters in length. * the default value of 0 means no restriction. * * @return string the metaphone key as a string * * @pure */ function metaphone(string $string, int $phonemes = 0): string { return php_metaphone($string, $phonemes); }
Copyright ©2021 || Defacer Indonesia