Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 41 - 50 of 201 for timestamp:[now/d-1d TO *] (0.03 sec)

  1. sysread.txt

    =over =item sysread FILEHANDLE,SCALAR,LENGTH,OFFSET X<sysread> =item sysread FILEHANDLE,SCALAR,LENGTH Attempts to read LENGTH bytes of data into variable SCALAR from the specified FILEHANDLE, using...
    perldoc.perl.org/functions/sysread.txt
    Registered: Tue Sep 16 14:22:18 UTC 2025
    - 2K bytes
    - Viewed (0)
  2. syswrite.txt

    =over =item syswrite FILEHANDLE,SCALAR,LENGTH,OFFSET X<syswrite> =item syswrite FILEHANDLE,SCALAR,LENGTH =item syswrite FILEHANDLE,SCALAR Attempts to write LENGTH bytes of data from variable SCALAR...
    perldoc.perl.org/functions/syswrite.txt
    Registered: Tue Sep 16 11:30:29 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  3. exit.txt

    =over =item exit EXPR X<exit> X<terminate> X<abort> =item exit Evaluates EXPR and exits immediately with that value. Example: my $ans = <STDIN>; exit 0 if $ans =~ /^[Xx]/; See also L<C<die>|/die LI...
    perldoc.perl.org/functions/exit.txt
    Registered: Tue Sep 16 09:30:44 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  4. rand.txt

    =over =item rand EXPR X<rand> X<random> =item rand Returns a random fractional number greater than or equal to C<0> and B<less> than the value of EXPR. (EXPR should be positive.) If EXPR is omitted...
    perldoc.perl.org/functions/rand.txt
    Registered: Tue Sep 16 16:07:15 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  5. qw/STRING/ - Perldoc Browser

    functions / qw/STRING/ ( source , CPAN ) # q/STRING/ # qq/STRING/ # qw/STRING/ # qx/STRING/ Generalized quotes. See "...
    perldoc.perl.org/functions/qw/STRING/ Similar Results (2)
    Registered: Tue Sep 16 03:46:19 UTC 2025
    - 15.7K bytes
    - Viewed (0)
  6. push.txt

    =over =item push ARRAY,LIST X<push> X<stack> Adds one or more items to the B<end> of an array. my @animals = ("cat"); push(@animals, "mouse"); # ("cat", "mouse") my @colors = ("red"); push(@colors,...
    perldoc.perl.org/functions/push.txt
    Registered: Tue Sep 16 15:12:19 UTC 2025
    - 628 bytes
    - Viewed (0)
  7. prototype.txt

    =over =item prototype FUNCTION X<prototype> =item prototype Returns the prototype of a function as a string (or L<C<undef>|/undef EXPR> if the function has no prototype). FUNCTION is a reference to...
    perldoc.perl.org/functions/prototype.txt
    Registered: Tue Sep 16 04:56:20 UTC 2025
    - 722 bytes
    - Viewed (0)
  8. __LINE__.txt

    =over =item __LINE__ X<__LINE__> A special token that compiles to the current line number. It can be altered by the mechanism described at L<perlsyn/"Plain Old Comments (Not!)">. =back 187
    perldoc.perl.org/functions/__LINE__.txt
    Registered: Tue Sep 16 13:22:49 UTC 2025
    - 187 bytes
    - Viewed (0)
  9. dbmopen.txt

    =over =item dbmopen HASH,DBNAME,MASK X<dbmopen> X<dbm> X<ndbm> X<sdbm> X<gdbm> [This function has been largely superseded by the L<C<tie>|/tie VARIABLE,CLASSNAME,LIST> function.] This binds a L<dbm...
    perldoc.perl.org/functions/dbmopen.txt
    Registered: Wed Sep 17 03:21:13 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  10. splice.txt

    =over =item splice ARRAY,OFFSET,LENGTH,LIST X<splice> =item splice ARRAY,OFFSET,LENGTH =item splice ARRAY,OFFSET =item splice ARRAY Removes the elements designated by OFFSET and LENGTH from an arra...
    perldoc.perl.org/functions/splice.txt
    Registered: Wed Sep 17 02:25:01 UTC 2025
    - 1.6K bytes
    - Viewed (0)
Back to top