A.2d. Alphabetical Listing of PHP Functions (r-z)
void setcookie(string name[, string value[, int expiration[, string path
[, string domain[, bool is_secure]]]]])
| |
Generates a cookie and passes it along with the rest of the header
information. Because cookies are set in the HTTP header,
setcookie( ) must be called before any output is
generated.
If only name is specified, the cookie with
that name is deleted from the client. The
value argument specifies a value for the
cookie to take, expiration is a Unix
timestamp value defining a time the cookie should expire, and the
path and domain
parameters define a domain for the cookie to be associated with. If
is_secure is true, the
cookie will be transmitted only over a secure HTTP connection.
string setlocale(mixed category, string locale)
| |
Sets the locale for category functions to
locale. Returns the current locale after
being set, or false if the locale cannot be set.
Any number of options for category can be
added (or ORed) together. The following options are available:
LC_ALL (default)
|
All of the following categories
|
LC_COLLATE
|
String comparisons
|
LC_CTYPE
|
Character classification and conversion
|
LC_MONETARY
|
Monetary functions
|
LC_NUMERIC
|
Numeric functions
|
LC_TIME
|
Time and date formatting
|
If locale is 0 or the
empty string, the current locale is unaffected.
array socket_get_status(resource socket)
| |
Returns an associative array containing information about
socket. The following values are returned:
timed_out
|
true if the socket has timed out waiting for data
|
blocked
|
true if the socket is blocked
|
eof
|
true if an EOF event has been raised
|
unread_bytes
|
The number of unread bytes in the socket buffer
|
void sort(array array[, int flags])
| |
Sorts the values in the given array in
ascending order. For more control over the behavior of the sort,
provide the second parameter, which is one of the following values:
SORT_REGULAR (default)
|
Compare the items normally.
|
SORT_NUMERIC
|
Compare the items numerically.
|
SORT_STRING
|
Compare the items as strings.
|
See Chapter 5 for more information on using this
function.
string sprintf(string format[, mixed value1[, ... mixed valueN]])
| |
Returns a string created by filling format
with the given arguments. See printf for more
information on using this function.
mixed sscanf(string string, string format[, mixed variable1 ...])
| |
Parses string for values of types given in
format; the values found are either
returned in an array or, if variable1
through variableN (which must be variables
passed by reference) are given, in those variables.
The format string is the same as that used
in sprintf( ). For example:
$name = sscanf("Name: k.tatroe", "Name: %s"); // $name has "k.tatroe"
list($month, $day, $year) = sscanf("June 30, 2001", "%s %d, %d");
$count = sscanf("June 30, 2001", "%s %d, %d", &$month, &$day, &$year);
string str_pad(string string, string length[, string pad[, int type]])
| |
Pads string using
pad until it is at least
length characters and returns the
resulting string. By specifying type, you
can control where the padding occurs. The following values for
type are accepted:
STR_PAD_RIGHT (default)
|
Pad to the right of string.
|
STR_PAD_LEFT
|
Pad to the left of string.
|
STR_PAD_BOTH
|
Pad on either side of string.
|
string strchr(string string, string character)
| |
This function is an alias of strstr( ).
string strftime(string format[, int timestamp])
| |
Formats a time and date according to the
format string provided in the first
parameter and the current locale. If the second parameter is not
specified, the current time and date is used. The following
characters are recognized in the format
string:
%a
|
Name of the day of the week as a three-letter abbreviation; e.g.,
"Mon"
|
%A
|
Name of the day of the week; e.g.,
"Monday"
|
%b
|
Name of the month as a three-letter abbreviation; e.g.,
"Aug"
|
%B
|
Name of the month; e.g., "August"
|
%c
|
Date and time in the preferred format for the current locale
|
%C
|
The last two digits of the century
|
%d
|
Day of the month as two digits, including a leading zero if
necessary; e.g., "01" through
"31"
|
%D
|
Same as %m/%d/%y
|
%e
|
Day of the month as two digits, including a leading space if
necessary; e.g., "1" through
"31"
|
%h
|
Same as %b
|
%H
|
Hour in 24-hour format, including a leading zero if necessary; e.g.,
"00" through
"23"
|
%I
|
Hour in 12-hour format; e.g., "1"
through "12"
|
%j
|
Day of the year, including leading zeros as necessary; e.g.,
"001" through
"366"
|
%m
|
Month, including a leading zero if necessary; e.g.,
"01" through
"12"
|
%M
|
Minutes
|
%n
|
The newline character (\n)
|
%p
|
"am" or
"pm"
|
%r
|
Same as %I:%M:%S %p
|
%R
|
Same as %H:%M:%S
|
%S
|
Seconds
|
%t
|
The tab character (\t)
|
%T
|
Same as %H:%M:%S
|
%u
|
Numeric day of the week, starting with
"1" for Monday
|
%U
|
Numeric week of the year, starting with the first Sunday
|
%V
|
ISO 8601:1998 numeric week of the year—week 1 starts on the
Monday of the first week that has at least four days
|
%W
|
Numeric week of the year, starting with the first Monday
|
%w
|
Numeric day of the week, starting with
"0" for Sunday
|
%x
|
The preferred date format for the current locale
|
%X
|
The preferred time format for the current locale
|
%y
|
Year with two digits; e.g., "98"
|
%Y
|
Year with four digits; e.g., "1998"
|
%Z
|
Time zone or name or abbreviation
|
%%
|
The percent sign (%)
|
int strnatcasecmp(string one, string two)
| |
Compares two strings; returns a number less than 0 if
one is less than
two, 0 if the two strings are equal, and a
number greater than 0 if one is greater
than two. The comparison is
case-insensitive—that is,
"Alphabet" and
"alphabet" are not considered
equal. The function uses a "natural
order" algorithm—numbers in the strings are
compared more naturally than computers normally do. For example, the
values "1",
"10", and
"2" are sorted in that order by
strcmp( ), but strnatcmp( )
orders them "1",
"2", and
"10". This function is a
case-insensitive version of strnatcmp( ).
int strnatcmp(string one, string two)
| |
Compares two strings; returns a number less than 0 if
one is less than
two, 0 if the two strings are equal, and a
number greater than 0 if one is greater
than two. The comparison is
case-sensitive—that is,
"Alphabet" and
"alphabet" are not considered
equal. The strnatcmp( ) function uses a
"natural order"
algorithm—numbers in the strings are compared more naturally
than computers normally do. For example, the values
"1",
"10", and
"2" are sorted in that order by
strcmp( ), but strnatcmp( )
orders them "1",
"2", and
"10".
int strtotime(string time[, int timestamp])
| |
Converts an English description of a time and date into a Unix
timestamp value. Optionally, a timestamp
can be given that the function uses as the
"now" value; if not, the current
date and time is used.
The descriptive string can be in a number of formats. For example,
all of the following will work:
echo strtotime("now");
echo strtotime("+1 week");
echo strtotime("-1 week 2 days 4 seconds");
echo strtotime("2 January 1972");
int syslog(int priority, string message)
| |
Sends an error message to the system logging facility. On Unix
systems, this is syslog(3); on Windows NT, the
messages are logged in the NT Event Log. The message is logged with
the given priority, which is one of the following (listed in
decreasing order of priority):
LOG_EMERG
|
Error has caused the system to be unstable
|
LOG_ALERT
|
Error notes a situation that requires immediate action
|
LOG_CRIT
|
Error is a critical condition
|
LOG_ERR
|
Error is a general error condition
|
LOG_WARNING
|
Message is a warning
|
LOG_NOTICE
|
Message is a normal, but significant, condition
|
LOG_INFO
|
Error is an informational message that requires no action
|
LOG_DEBUG
|
Error is for debugging only
|
If message contains the characters
%m, they are replaced with the current error
message, if any is set. Returns true if the
logging succeeded and false if a failure occurred.
void trigger_error(string error[, int type])
| |
Triggers an error condition; if the type is not given, it defaults to
E_USER_NOTICE. The following types are valid:
E_USER_ERROR
|
User-generated error
|
E_USER_WARNING
|
User-generated warning
|
E_USER_NOTICE (default)
|
User-generated notice
|
The error string will be truncated to 1KB of text if it is longer
than 1KB.
string urldecode(string url)
| |
Returns a string created from decoding the URI-encoded
url. Sequences of characters beginning
with a % followed by a hexadecimal number are
replaced with the literal the sequence represents. See
rawurldecode, which this function differs from in
only in that it decodes plus signs (+) as spaces.
int version_compare(string one, string two[, string operator])
| |
Compares two strings of the format
"4.1.0" and returns
-1 if one is less than
two, 0 if they are
equal, and 1 if one is
greater than two. If
operator is specified, the operator is
used to make a comparison between the version strings, and the value
of the comparison using that operator is returned. The possible
operators are < or lt;
<= or le;
> or gt;
>= or ge;
==, =, or
eq; and !=,
<>, and ne.
 |  |  | A.2c. Alphabetical Listing of PHP Functions |  | B. Extension Overview |
Copyright © 2003 O'Reilly & Associates. All rights reserved.
|