Viewing File: /usr/local/cpanel/3rdparty/perl/536/cpanel-lib/x86_64-linux/POSIX/1003/Locale.pod

=encoding utf8

=head1 NAME

POSIX::1003::Locale - POSIX handling locale settings

=head1 SYNOPSIS

  use POSIX::1003::Locale;

  my $location = setlocale(LC_ALL, 'de'); # German
  my $info     = localeconv();            # is HASH
  print Dumper $info;  # use Data::Dumper to inspect

=head1 DESCRIPTION

See L<perllocale> for the details.

=head1 FUNCTIONS

=over 4

=item B<localeconv>()

Get detailed information about the current locale

  my $info     = localeconv();            # is HASH
  print Dumper $info;  # use Data::Dumper to inspect

=item B<setlocale>($lc, $lang)

Locales describe national and language specific facts.  With
L<setlocale()|POSIX::1003::Locale/"FUNCTIONS"> you change the locale.

  my $location = setlocale(LC_ALL, 'de'); # German

=back

=head1 CONSTANTS

=for comment
#TABLE_LOCALE_START

  During installation, a symbol table will get inserted here.

=for comment
#TABLE_LOCALE_END

=head1 SEE ALSO

This module is part of POSIX-1003 distribution version 1.02,
built on November 10, 2020. Website: F<http://perl.overmeer.net/CPAN>.  The code is based on L<POSIX>, which
is released with Perl itself.  See also L<POSIX::Util> for
additional functionality.

=head1 COPYRIGHTS

Copyrights 2011-2020 on the perl code and the related documentation
 by [Mark Overmeer]. For other contributors see ChangeLog.

This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
See F<http://dev.perl.org/licenses/>

Back to Directory File Manager