Kraken\Util\Support\ArraySupport::normalizeKey PHP 메소드

normalizeKey() 공개 정적인 메소드

Normalize key to dot notation valid format.
public static normalizeKey ( string $key ) : string
$key string
리턴 string
    public static function normalizeKey($key)
    {
        return $key === null ? null : trim(str_replace([" ", "\t", "\n", "\r", "", "\v"], ['', '', '', '', '', ''], $key), '.');
    }