A.2a. Alphabetical Listing of PHP Functions (a-e)
Creates an array using the parameters as elements in the array. By
using the => operator, you can specify specific
indexes for any elements; if no indexes are given, the elements are
assigned indexes starting from 0 and incrementing by one. The
internal pointer (see current,
reset, and next) is set to the
first element.
$array = array("first", 3 => "second", "third", "fourth" => 4);
Note: array is actually a language construct, used
to denote literal arrays, but its usage is similar to that of a
function, so it's included here.
array array_filter(array array, mixed callback)
| |
Creates an array containing all values from the original array for
which the given callback function returns true. If
the input array is an associative array, the keys are preserved. For
example:
function isBig($inValue) {
return($inValue > 10);
}
$array = array(7, 8, 9, 10, 11, 12, 13, 14);
$new_array = array_filter($array, "isBig"); // contains (11, 12, 13, 14)
array array_map(mixed callback, array array1[, ... array arrayN])
| |
Creates an array by applying the callback function referenced in the
first parameter to the remaining parameters; the callback function
should take as parameters a number of values equal to the number of
arrays passed into array_map( ). For example:
function multiply($inOne, $inTwo) {
return $inOne * $inTwo;
}
$first = (1, 2, 3, 4);
$second = (10, 9, 8, 7);
$array = array_map("multiply", $first, $second); // contains (10, 18, 24, 28)
bool array_multisort(array array1[, SORT_ASC|SORT_DESC
[, SORT_REGULAR|SORT_NUMERIC|SORT_STRING]]
[, array array2[, SORT_ASC|SORT_DESC
[, SORT_REGULAR|SORT_NUMERIC|SORT_STRING]], ...])
| |
Used to sort several arrays simultaneously, or to sort a
multidimensional array in one or more dimensions. The input arrays
are treated as columns in a table to be sorted by rows—the
first array is the primary sort. Any values that compare the same
according to that sort are sorted by the next input array, and so on.
The first argument is an array; following that, each argument may be
an array or one of the following order flags (the order flags are
used to change the default order of the sort):
SORT_ASC (default)
|
Sort in ascending order
|
SORT_DESC
|
Sort in descending order
|
After that, a sorting type from the following list can be specified:
SORT_REGULAR (default)
|
Compare items normally
|
SORT_NUMERIC
|
Compare items numerically
|
SORT_STRING
|
Compare items as strings
|
The sorting flags apply only to the immediately preceding array, and
they revert to SORT_ASC and
SORT_REGULAR before each new array argument.
This function returns true if the operation was
successful and false if not.
mixed assert_options(int option[, mixed value])
| |
If value is specified, sets the assert
control option option to
value and returns the previous setting. If
value is not specified, returns the
current value of option. The following
values for option are allowed:
ASSERT_ACTIVE
|
Enable assertions.
|
ASSERT_WARNING
|
Have assertions generate warnings.
|
ASSERT_BAIL
|
Have execution of the script halt on an assertion.
|
ASSERT_QUIET_EVAL
|
Disable error reporting while evaluating assertion code given to the
assert( ) function.
|
ASSERT_CALLBACK
|
Call the specified user function to handle an assertion. Assertion
callbacks are called with three arguments: the file, the line, and
the expression where the assertion failed.
|
mixed call_user_func_array(string function, array parameters)
| |
Similar to call_user_func( ), this function calls
the function named function with the
parameters in the array parameters. The comparison to check for a
matching function is case-insensitive. Returns the value returned by
the function.
mixed call_user_method(string function, mixed object[, mixed parameter1
[, ... mixed parameterN]])
| |
Calls the method given in the first parameter on the object in the
second parameter. Additional parameters are used as parameters when
calling the method. The comparison to check for a matching method
name is case-insensitive. Returns the value returned by the function.
string chop(string string[, string characters])
| |
This is an alias for ltrim( ).
void closedir([int handle])
| |
Closes the directory stream referenced by
handle. See opendir for
more information on directory streams. If
handle is not specified, the most recently
opened directory stream is closed.
mixed count_chars(string string[, int mode])
| |
Returns the number of occurrences of each byte value from 0-255 in
string; mode
determines the form of the result. The possible values of
mode are:
0 (default)
|
Returns an associative array with each byte-value as a key and the
frequency of that byte-value as the value
|
1
|
Same as above, except that only byte-values with a nonzero frequency
are listed
|
2
|
Same as above, except that only byte-values with a frequency of zero
are listed
|
3
|
Returns a string containing all byte-values with a nonzero frequency
|
4
|
Returns a string containing all byte-values with a frequency of zero
|
string date(string format[, int timestamp])
| |
Formats a time and date according to the
format string provided in the first
parameter. If the second parameter is not specified, the current time
and date is used. The following characters are recognized in the
format string:
a
|
"am" or
"pm"
|
A
|
"AM" or
"PM"
|
B
|
Swatch Internet time
|
d
|
Day of the month as two digits, including a leading zero if
necessary; e.g., "01" through
"31"
|
D
|
Name of the day of the week as a three-letter abbreviation; e.g.,
"Mon"
|
F
|
Name of the month; e.g., "August"
|
g
|
Hour in 12-hour format; e.g., "1"
through "12"
|
G
|
Hour in 24-hour format; e.g., "0"
through "23"
|
h
|
Hour in 12-hour format, including a leading zero if necessary; e.g.,
"01" through
"12"
|
H
|
Hour in 24-hour format, including a leading zero if necessary; e.g.,
"00" through
"23"
|
I
|
Minutes, including a leading zero if necessary; e.g.,
"00" through
"59"
|
I
|
"1" if Daylight Savings Time;
"0" otherwise
|
j
|
Day of the month; e.g., "1" through
"31"
|
l
|
Name of the day of the week; e.g.,
"Monday"
|
L
|
"0" if the year is not a leap year;
"1" if it is
|
m
|
Month, including a leading zero if necessary; e.g.,
"01" through
"12"
|
M
|
Name of the month as a three-letter abbreviation; e.g.,
"Aug"
|
n
|
Month without leading zeros;
e.g.,"1" to
"12"
|
r
|
Date formatted according to RFC 822; e.g., "Thu, 21
Jun 2001 21:27:19 +0600"
|
s
|
Seconds, including a leading zero if necessary; e.g.,
"00" through
"59"
|
S
|
English ordinal suffix for the day of the month; either
"st",
"nd", or
"th"
|
t
|
Number of days in the month, from
"28" to
"31"
|
T
|
Timezone setting of the machine running PHP; e.g.,
"MST"
|
U
|
Seconds since the Unix epoch
|
w
|
Numeric day of the week, starting with
"0" for Sunday
|
W
|
Numeric week of the year according to ISO 8601
|
Y
|
Year with four digits; e.g., "1998"
|
y
|
Year with two digits; e.g., "98"
|
z
|
Day of the year, from "1" through
"365"
|
Z
|
Time zone offset in seconds, from
"-43200" (far west of UTC) to
"43200" (far east of UTC)
|
Any characters in the format string not
matching one of the above will be kept in the resulting string as-is.
int error_log(string message, int type[, string destination[, string headers]])
| |
Records an error message to the web server's error
log, to an email address, or to a file. The first parameter is the
message to log. The type is one of the following:
0
|
message is sent to the PHP system log; the
message is put into the file pointed at by the
error_log configuration directive.
|
1
|
message is sent to the email address
destination. If specified,
headers provides optional headers to use
when creating the message (see mail for more
information on the optional headers).
|
3
|
Appends message to the file
destination.
|
int error_reporting([int level])
| |
Sets the level of errors reported by PHP to
level and returns the current level; if
level is omitted, the current level of
error reporting is returned. The following values are available for
the function:
E_ERROR
|
Runtime warnings
|
E_WARNING
|
Runtime warnings
|
E_PARSE
|
Compile-time parse errors
|
E_NOTICE
|
Runtime notices
|
E_CORE_ERROR
|
Errors generated internally by PHP
|
E_CORE_WARNING
|
Warnings generated internally by PHP
|
E_COMPILE_ERROR
|
Errors generated internally by the Zend scripting engine
|
E_COMPILE_WARNING
|
Warnings generated internally by the Zend scripting engine
|
E_USER_ERROR
|
Runtime errors generated by a call to trigger_error(
)
|
E_USER_WARNING
|
Runtime warnings generated by a call to trigger_error(
)
|
E_ALL
|
All of the above options
|
Any number of these options can be ORed together, so that errors in
each of the levels are reported. For example, the following code
turns off user errors and warnings, performs some actions, then
restores the original level:
<?php
$level = error_reporting();
error_reporting($level & ~(E_USER_ERROR | E_USER_WARNING));
// do some stuff
error_reporting($level);
?>
int extract(array array[, int type[, string prefix]])
| |
Sets the value of variables to the values of elements from an array.
For each element in the array, the key is used to determine the
variable name to set, and that variable is set to the value of the
element.
The second argument, if given, takes one of the following values to
determine behavior if the values in the array have the same name as
variables already existing in the local scope:
EXTR_OVERWRITE (default)
|
Overwrite the existing variable
|
EXTR_SKIP
|
Don't overwrite the existing variable (ignore the
value provided in the array)
|
EXTR_PREFIX_SAME
|
Prefix the variable name with the string given as the third argument
|
EXTR_PREFIX_ALL
|
Prefix all variable names with the string given as the third argument
|
EXTR_PREFIX_INVALID
|
Prefix any invalid or numeric variable names with the string given as
the third argument
|
The function returns the number of successfully set variables.
 |  |  | A. Function Reference |  | A.2b. Alphabetical Listing of PHP Functions |
Copyright © 2003 O'Reilly & Associates. All rights reserved.
|