Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 3441 - 3450 of 6,493 for content_length:[0 TO 9999] (0.07 sec)

  1. do.txt

    =over =item do BLOCK X<do> X<block> Not really a function. Returns the value of the last command in the sequence of commands indicated by BLOCK. When modified by the C<while> or C<until> loop modif...
    perldoc.perl.org/functions/do.txt
    Registered: Mon Jun 23 13:40:31 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  2. ref.txt

    =over =item ref EXPR X<ref> X<reference> =item ref Examines the value of EXPR, expecting it to be a reference, and returns a string giving information about the reference and the type of referent. ...
    perldoc.perl.org/functions/ref.txt
    Registered: Mon Jun 23 13:10:33 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  3. umask.txt

    =over =item umask EXPR X<umask> =item umask Sets the umask for the process to EXPR and returns the previous value. If EXPR is omitted, merely returns the current umask. The Unix permission C<rwxr-x...
    perldoc.perl.org/functions/umask.txt
    Registered: Mon Jun 23 11:25:30 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  4. last.txt

    =over =item last LABEL X<last> X<break> =item last EXPR =item last The L<C<last>|/last LABEL> command is like the C<break> statement in C (as used in loops); it immediately exits the loop in questi...
    perldoc.perl.org/functions/last.txt
    Registered: Mon Jun 23 11:33:36 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  5. getppid.txt

    =over =item getppid X<getppid> X<parent> X<pid> Returns the process id of the parent process. Note for Linux users: Between v5.8.1 and v5.16.0 Perl would work around non-POSIX thread semantics the ...
    perldoc.perl.org/functions/getppid.txt
    Registered: Mon Jun 23 12:45:51 UTC 2025
    - 428 bytes
    - Viewed (0)
  6. getpeername.txt

    =over =item getpeername SOCKET X<getpeername> X<peer> Returns the packed sockaddr address of the other end of the SOCKET connection. use Socket; my $hersockaddr = getpeername($sock); my ($port, $ia...
    perldoc.perl.org/functions/getpeername.txt
    Registered: Mon Jun 23 13:20:28 UTC 2025
    - 356 bytes
    - Viewed (0)
  7. link.txt

    =over =item link OLDFILE,NEWFILE X<link> Creates a new filename linked to the old filename. Returns true for success, false otherwise. Portability issues: L<perlport/link>. =back 183
    perldoc.perl.org/functions/link.txt
    Registered: Mon Jun 23 10:02:11 UTC 2025
    - 183 bytes
    - Viewed (0)
  8. time.txt

    =over =item time X<time> X<epoch> Returns the number of non-leap seconds since whatever time the system considers to be the epoch, suitable for feeding to L<C<gmtime>|/gmtime EXPR> and L<C<localtim...
    perldoc.perl.org/functions/time.txt
    Registered: Mon Jun 23 16:12:15 UTC 2025
    - 853 bytes
    - Viewed (0)
  9. @INC.txt

    =over =item @INC X<@INC> The array C<@INC> contains the list of places that the C<do EXPR>, C<require>, or C<use> constructs look for their library files. It initially consists of the arguments to ...
    perldoc.perl.org/variables/@INC.txt
    Registered: Tue Jun 24 01:19:15 UTC 2025
    - 987 bytes
    - Viewed (0)
  10. $^O.txt

    =over =item $OSNAME =item $^O X<$^O> X<$OSNAME> The name of the operating system under which this copy of Perl was built, as determined during the configuration process. For examples see L<perlport...
    perldoc.perl.org/variables/$^O.txt
    Registered: Mon Jun 23 23:54:46 UTC 2025
    - 670 bytes
    - Viewed (0)
Back to top