|
hg@2
|
1 |
addcslashes ( string str, string charlist )
|
|
hg@2
|
2 |
Quote string with slashes in a C style (string)
|
|
hg@2
|
3 |
addslashes ( string str )
|
|
hg@2
|
4 |
Quote string with slashes (string)
|
|
hg@2
|
5 |
bin2hex ( string str )
|
|
hg@2
|
6 |
Convert binary data into hexadecimal representation (string)
|
|
hg@2
|
7 |
chr ( int ascii )
|
|
hg@2
|
8 |
Return a specific character (string)
|
|
hg@2
|
9 |
chunk_split ( string body [, int chunklen [, string end]] )
|
|
hg@2
|
10 |
Split a string into smaller chunks (string)
|
|
hg@2
|
11 |
convert_cyr_string ( string str, string from, string to )
|
|
hg@2
|
12 |
Convert from one Cyrillic character set to another (string)
|
|
hg@2
|
13 |
count_chars ( string string [, int mode] )
|
|
hg@2
|
14 |
Return information about characters used in a string (mixed)
|
|
hg@2
|
15 |
crc32 ( string str )
|
|
hg@2
|
16 |
Calculates the crc32 polynomial of a string (int)
|
|
hg@2
|
17 |
crypt ( string str [, string salt] )
|
|
hg@2
|
18 |
One-way string encryption (hashing) (string)
|
|
hg@2
|
19 |
echo ( string arg1 [, string ...] )
|
|
hg@2
|
20 |
Output one or more strings (void)
|
|
hg@2
|
21 |
explode ( string separator, string string [, int limit] )
|
|
hg@2
|
22 |
Split a string by string (array)
|
|
hg@2
|
23 |
get_html_translation_table ( [int table [, int quote_style]] )
|
|
hg@2
|
24 |
Returns the translation table used by htmlspecialchars() and htmlentities() (array)
|
|
hg@2
|
25 |
hebrev ( string hebrew_text [, int max_chars_per_line] )
|
|
hg@2
|
26 |
Convert logical Hebrew text to visual text (string)
|
|
hg@2
|
27 |
hebrevc ( string hebrew_text [, int max_chars_per_line] )
|
|
hg@2
|
28 |
Convert logical Hebrew text to visual text with newline conversion (string)
|
|
hg@2
|
29 |
html_entity_decode ( string string [, int quote_style [, string charset]] )
|
|
hg@2
|
30 |
Convert all HTML entities to their applicable characters (string)
|
|
hg@2
|
31 |
htmlentities ( string string [, int quote_style [, string charset]] )
|
|
hg@2
|
32 |
Convert all applicable characters to HTML entities (string)
|
|
hg@2
|
33 |
htmlspecialchars_decode ( string string [, int quote_style] )
|
|
hg@2
|
34 |
Convert special HTML entities back to characters (string)
|
|
hg@2
|
35 |
htmlspecialchars ( string string [, int quote_style [, string charset]] )
|
|
hg@2
|
36 |
Convert special characters to HTML entities (string)
|
|
hg@2
|
37 |
implode ( string glue, array pieces )
|
|
hg@2
|
38 |
Join array elements with a string (string)
|
|
hg@2
|
39 |
levenshtein ( string str1, string str2 [, int cost_ins, int cost_rep, int cost_del] )
|
|
hg@2
|
40 |
Calculate Levenshtein distance between two strings (int)
|
|
hg@2
|
41 |
localeconv ( void )
|
|
hg@2
|
42 |
Get numeric formatting information (array)
|
|
hg@2
|
43 |
ltrim ( string str [, string charlist] )
|
|
hg@2
|
44 |
Strip whitespace (or other characters) from the beginning of a string (string)
|
|
hg@2
|
45 |
md5_file ( string filename [, bool raw_output] )
|
|
hg@2
|
46 |
Calculates the md5 hash of a given file (string)
|
|
hg@2
|
47 |
md5 ( string str [, bool raw_output] )
|
|
hg@2
|
48 |
Calculate the md5 hash of a string (string)
|
|
hg@2
|
49 |
metaphone ( string str [, int phones] )
|
|
hg@2
|
50 |
Calculate the metaphone key of a string (string)
|
|
hg@2
|
51 |
money_format ( string format, float number )
|
|
hg@2
|
52 |
Formats a number as a currency string (string)
|
|
hg@2
|
53 |
nl_langinfo ( int item )
|
|
hg@2
|
54 |
Query language and locale information (string)
|
|
hg@2
|
55 |
nl2br ( string string )
|
|
hg@2
|
56 |
Inserts HTML line breaks before all newlines in a string (string)
|
|
hg@2
|
57 |
number_format ( float number [, int decimals [, string dec_point, string thousands_sep]] )
|
|
hg@2
|
58 |
Format a number with grouped thousands (string)
|
|
hg@2
|
59 |
ord ( string string )
|
|
hg@2
|
60 |
Return ASCII value of character (int)
|
|
hg@2
|
61 |
parse_str ( string str [, array &arr] )
|
|
hg@2
|
62 |
Parses the string into variables (void)
|
|
hg@2
|
63 |
print ( string arg )
|
|
hg@2
|
64 |
Output a string (int)
|
|
hg@2
|
65 |
printf ( string format [, mixed args [, mixed ...]] )
|
|
hg@2
|
66 |
Output a formatted string (int)
|
|
hg@2
|
67 |
quoted_printable_decode ( string str )
|
|
hg@2
|
68 |
Convert a quoted-printable string to an 8 bit string (string)
|
|
hg@2
|
69 |
quotemeta ( string str )
|
|
hg@2
|
70 |
Quote meta characters (string)
|
|
hg@2
|
71 |
rtrim ( string str [, string charlist] )
|
|
hg@2
|
72 |
Strip whitespace (or other characters) from the end of a string (string)
|
|
hg@2
|
73 |
setlocale ( int category, string locale [, string ...] )
|
|
hg@2
|
74 |
Set locale information (string)
|
|
hg@2
|
75 |
cal_days_in_month ( int calendar, int month, int year )
|
|
hg@2
|
76 |
Return the number of days in a month for a given year and calendar (int)
|
|
hg@2
|
77 |
cal_from_jd ( int jd, int calendar )
|
|
hg@2
|
78 |
Converts from Julian Day Count to a supported calendar (array)
|
|
hg@2
|
79 |
cal_info ( [int calendar] )
|
|
hg@2
|
80 |
Returns information about a particular calendar (array)
|
|
hg@2
|
81 |
cal_to_jd ( int calendar, int month, int day, int year )
|
|
hg@2
|
82 |
Converts from a supported calendar to Julian Day Count (int)
|
|
hg@2
|
83 |
easter_date ( [int year] )
|
|
hg@2
|
84 |
Get Unix timestamp for midnight on Easter of a given year (int)
|
|
hg@2
|
85 |
easter_days ( [int year [, int method]] )
|
|
hg@2
|
86 |
Get number of days after March 21 on which Easter falls for a given year (int)
|
|
hg@2
|
87 |
frenchtojd ( int month, int day, int year )
|
|
hg@2
|
88 |
Converts a date from the French Republican Calendar to a Julian Day Count (int)
|
|
hg@2
|
89 |
gregoriantojd ( int month, int day, int year )
|
|
hg@2
|
90 |
Converts a Gregorian date to Julian Day Count (int)
|
|
hg@2
|
91 |
jddayofweek ( int julianday [, int mode] )
|
|
hg@2
|
92 |
Returns the day of the week (mixed)
|
|
hg@2
|
93 |
jdmonthname ( int julianday, int mode )
|
|
hg@2
|
94 |
Returns a month name (string)
|
|
hg@2
|
95 |
jdtofrench ( int juliandaycount )
|
|
hg@2
|
96 |
Converts a Julian Day Count to the French Republican Calendar (string)
|
|
hg@2
|
97 |
jdtogregorian ( int julianday )
|
|
hg@2
|
98 |
Converts Julian Day Count to Gregorian date (string)
|
|
hg@2
|
99 |
jdtojewish ( int juliandaycount [, bool hebrew [, int fl]] )
|
|
hg@2
|
100 |
Converts a Julian day count to a Jewish calendar date (string)
|
|
hg@2
|
101 |
jdtojulian ( int julianday )
|
|
hg@2
|
102 |
Converts a Julian Day Count to a Julian Calendar Date (string)
|
|
hg@2
|
103 |
jdtounix ( int jday )
|
|
hg@2
|
104 |
Convert Julian Day to Unix timestamp (int)
|
|
hg@2
|
105 |
jewishtojd ( int month, int day, int year )
|
|
hg@2
|
106 |
Converts a date in the Jewish Calendar to Julian Day Count (int)
|
|
hg@2
|
107 |
juliantojd ( int month, int day, int year )
|
|
hg@2
|
108 |
Converts a Julian Calendar date to Julian Day Count (int)
|
|
hg@2
|
109 |
unixtojd ( [int timestamp] )
|
|
hg@2
|
110 |
Convert Unix timestamp to Julian Day (int)
|
|
hg@2
|
111 |
ctype_alnum ( string text )
|
|
hg@2
|
112 |
Check for alphanumeric character(s) (bool)
|
|
hg@2
|
113 |
ctype_alpha ( string text )
|
|
hg@2
|
114 |
Check for alphabetic character(s) (bool)
|
|
hg@2
|
115 |
ctype_cntrl ( string text )
|
|
hg@2
|
116 |
Check for control character(s) (bool)
|
|
hg@2
|
117 |
ctype_digit ( string text )
|
|
hg@2
|
118 |
Check for numeric character(s) (bool)
|
|
hg@2
|
119 |
ctype_graph ( string text )
|
|
hg@2
|
120 |
Check for any printable character(s) except space (bool)
|
|
hg@2
|
121 |
ctype_lower ( string text )
|
|
hg@2
|
122 |
Check for lowercase character(s) (bool)
|
|
hg@2
|
123 |
ctype_print ( string text )
|
|
hg@2
|
124 |
Check for printable character(s) (bool)
|
|
hg@2
|
125 |
ctype_punct ( string text )
|
|
hg@2
|
126 |
Check for any printable character which is not whitespace or an alphanumeric character (bool)
|
|
hg@2
|
127 |
ctype_space ( string text )
|
|
hg@2
|
128 |
Check for whitespace character(s) (bool)
|
|
hg@2
|
129 |
ctype_upper ( string text )
|
|
hg@2
|
130 |
Check for uppercase character(s) (bool)
|
|
hg@2
|
131 |
ctype_xdigit ( string text )
|
|
hg@2
|
132 |
Check for character(s) representing a hexadecimal digit (bool)
|
|
hg@2
|
133 |
checkdate ( int month, int day, int year )
|
|
hg@2
|
134 |
Validate a Gregorian date (bool)
|
|
hg@2
|
135 |
date_default_timezone_get ( void )
|
|
hg@2
|
136 |
Gets the default timezone used by all date/time functions in a script (string)
|
|
hg@2
|
137 |
date_default_timezone_set ( string timezone_identifier )
|
|
hg@2
|
138 |
Sets the default timezone used by all date/time functions in a script (bool)
|
|
hg@2
|
139 |
date ( string format [, int timestamp] )
|
|
hg@2
|
140 |
Format a local time/date (string)
|
|
hg@2
|
141 |
getdate ( [int timestamp] )
|
|
hg@2
|
142 |
Get date/time information (array)
|
|
hg@2
|
143 |
gettimeofday ( [bool return_float] )
|
|
hg@2
|
144 |
Get current time (mixed)
|
|
hg@2
|
145 |
gmdate ( string format [, int timestamp] )
|
|
hg@2
|
146 |
Format a GMT/UTC date/time (string)
|
|
hg@2
|
147 |
gmmktime ( [int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst]]]]]]] )
|
|
hg@2
|
148 |
Get Unix timestamp for a GMT date (int)
|
|
hg@2
|
149 |
gmstrftime ( string format [, int timestamp] )
|
|
hg@2
|
150 |
Format a GMT/UTC time/date according to locale settings (string)
|
|
hg@2
|
151 |
localtime ( [int timestamp [, bool is_associative]] )
|
|
hg@2
|
152 |
Get the local time (array)
|
|
hg@2
|
153 |
microtime ( [bool get_as_float] )
|
|
hg@2
|
154 |
Return current Unix timestamp with microseconds (mixed)
|
|
hg@2
|
155 |
mktime ( [int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst]]]]]]] )
|
|
hg@2
|
156 |
Get Unix timestamp for a date (int)
|
|
hg@2
|
157 |
strftime ( string format [, int timestamp] )
|
|
hg@2
|
158 |
Format a local time/date according to locale settings (string)
|
|
hg@2
|
159 |
strptime ( string date, string format )
|
|
hg@2
|
160 |
Parse a time/date generated with strftime() (array)
|
|
hg@2
|
161 |
strtotime ( string time [, int now] )
|
|
hg@2
|
162 |
Parse about any English textual datetime description into a Unix timestamp (int)
|
|
hg@2
|
163 |
time ( void )
|
|
hg@2
|
164 |
Return current Unix timestamp (int)
|
|
hg@2
|
165 |
dba_close ( resource handle )
|
|
hg@2
|
166 |
Close a DBA database (void)
|
|
hg@2
|
167 |
dba_delete ( string key, resource handle )
|
|
hg@2
|
168 |
Delete DBA entry specified by key (bool)
|
|
hg@2
|
169 |
dba_exists ( string key, resource handle )
|
|
hg@2
|
170 |
Check whether key exists (bool)
|
|
hg@2
|
171 |
dba_fetch ( string key, resource handle )
|
|
hg@2
|
172 |
Fetch data specified by key (string)
|
|
hg@2
|
173 |
dba_firstkey ( resource handle )
|
|
hg@2
|
174 |
Fetch first key (string)
|
|
hg@2
|
175 |
dba_handlers ( [bool full_info] )
|
|
hg@2
|
176 |
List all the handlers available (array)
|
|
hg@2
|
177 |
dba_insert ( string key, string value, resource handle )
|
|
hg@2
|
178 |
Insert entry (bool)
|
|
hg@2
|
179 |
dba_list ( void )
|
|
hg@2
|
180 |
List all open database files (array)
|
|
hg@2
|
181 |
dba_nextkey ( resource handle )
|
|
hg@2
|
182 |
Fetch next key (string)
|
|
hg@2
|
183 |
dba_open ( string path, string mode [, string handler [, mixed ...]] )
|
|
hg@2
|
184 |
Open database (resource)
|
|
hg@2
|
185 |
dba_optimize ( resource handle )
|
|
hg@2
|
186 |
Optimize database (bool)
|
|
hg@2
|
187 |
dba_popen ( string path, string mode [, string handler [, mixed ...]] )
|
|
hg@2
|
188 |
Open database persistently (resource)
|
|
hg@2
|
189 |
dba_replace ( string key, string value, resource handle )
|
|
hg@2
|
190 |
Replace or insert entry (bool)
|
|
hg@2
|
191 |
dba_sync ( resource handle )
|
|
hg@2
|
192 |
Synchronize database (bool)
|
|
hg@2
|
193 |
dio_close ( resource fd )
|
|
hg@2
|
194 |
Closes the file descriptor given by fd (void)
|
|
hg@2
|
195 |
dio_fcntl ( resource fd, int cmd [, mixed args] )
|
|
hg@2
|
196 |
Performs a c library fcntl on fd (mixed)
|
|
hg@2
|
197 |
dio_open ( string filename, int flags [, int mode] )
|
|
hg@2
|
198 |
Opens a new filename with specified permissions of flags and creation permissions of mode (resource)
|
|
hg@2
|
199 |
dio_read ( resource fd [, int len] )
|
|
hg@2
|
200 |
Reads bytes from a file descriptor (string)
|
|
hg@2
|
201 |
dio_seek ( resource fd, int pos [, int whence] )
|
|
hg@2
|
202 |
Seeks to pos on fd from whence (int)
|
|
hg@2
|
203 |
dio_stat ( resource fd )
|
|
hg@2
|
204 |
Gets stat information about the file descriptor fd (array)
|
|
hg@2
|
205 |
dio_tcsetattr ( resource fd, array options )
|
|
hg@2
|
206 |
Sets terminal attributes and baud rate for a serial port (bool)
|
|
hg@2
|
207 |
dio_truncate ( resource fd, int offset )
|
|
hg@2
|
208 |
Truncates file descriptor fd to offset bytes (bool)
|
|
hg@2
|
209 |
dio_write ( resource fd, string data [, int len] )
|
|
hg@2
|
210 |
Writes data to fd with optional truncation at length (int)
|
|
hg@2
|
211 |
chdir ( string directory )
|
|
hg@2
|
212 |
Change directory (bool)
|
|
hg@2
|
213 |
chroot ( string directory )
|
|
hg@2
|
214 |
Change the root directory (bool)
|
|
hg@2
|
215 |
closedir ( resource dir_handle )
|
|
hg@2
|
216 |
Close directory handle (void)
|
|
hg@2
|
217 |
getcwd ( void )
|
|
hg@2
|
218 |
Gets the current working directory (string)
|
|
hg@2
|
219 |
opendir ( string path [, resource context] )
|
|
hg@2
|
220 |
Open directory handle (resource)
|
|
hg@2
|
221 |
readdir ( resource dir_handle )
|
|
hg@2
|
222 |
Read entry from directory handle (string)
|
|
hg@2
|
223 |
rewinddir ( resource dir_handle )
|
|
hg@2
|
224 |
Rewind directory handle (void)
|
|
hg@2
|
225 |
basename ( string path [, string suffix] )
|
|
hg@2
|
226 |
Returns filename component of path (string)
|
|
hg@2
|
227 |
chgrp ( string filename, mixed group )
|
|
hg@2
|
228 |
Changes file group (bool)
|
|
hg@2
|
229 |
chmod ( string filename, int mode )
|
|
hg@2
|
230 |
Changes file mode (bool)
|
|
hg@2
|
231 |
chown ( string filename, mixed user )
|
|
hg@2
|
232 |
Changes file owner (bool)
|
|
hg@2
|
233 |
clearstatcache ( void )
|
|
hg@2
|
234 |
Clears file status cache (void)
|
|
hg@2
|
235 |
copy ( string source, string dest )
|
|
hg@2
|
236 |
Copies file (bool)
|
|
hg@2
|
237 |
dirname ( string path )
|
|
hg@2
|
238 |
Returns directory name component of path (string)
|
|
hg@2
|
239 |
disk_free_space ( string directory )
|
|
hg@2
|
240 |
Returns available space in directory (float)
|
|
hg@2
|
241 |
disk_total_space ( string directory )
|
|
hg@2
|
242 |
Returns the total size of a directory (float)
|
|
hg@2
|
243 |
fclose ( resource handle )
|
|
hg@2
|
244 |
Closes an open file pointer (bool)
|
|
hg@2
|
245 |
feof ( resource handle )
|
|
hg@2
|
246 |
Tests for end-of-file on a file pointer (bool)
|
|
hg@2
|
247 |
fflush ( resource handle )
|
|
hg@2
|
248 |
Flushes the output to a file (bool)
|
|
hg@2
|
249 |
fgetc ( resource handle )
|
|
hg@2
|
250 |
Gets character from file pointer (string)
|
|
hg@2
|
251 |
fgetcsv ( resource handle [, int length [, string delimiter [, string enclosure]]] )
|
|
hg@2
|
252 |
Gets line from file pointer and parse for CSV fields (array)
|
|
hg@2
|
253 |
fgets ( resource handle [, int length] )
|
|
hg@2
|
254 |
Gets line from file pointer (string)
|
|
hg@2
|
255 |
fgetss ( resource handle [, int length [, string allowable_tags]] )
|
|
hg@2
|
256 |
Gets line from file pointer and strip HTML tags (string)
|
|
hg@2
|
257 |
file_exists ( string filename )
|
|
hg@2
|
258 |
Checks whether a file or directory exists (bool)
|
|
hg@2
|
259 |
file_get_contents ( string filename [, bool use_include_path [, resource context [, int offset [, int maxlen]]]] )
|
|
hg@2
|
260 |
Reads entire file into a string (string)
|
|
hg@2
|
261 |
file ( string filename [, int use_include_path [, resource context]] )
|
|
hg@2
|
262 |
Reads entire file into an array (array)
|
|
hg@2
|
263 |
ftp_cdup ( resource ftp_stream )
|
|
hg@2
|
264 |
Changes to the parent directory (bool)
|
|
hg@2
|
265 |
ftp_chdir ( resource ftp_stream, string directory )
|
|
hg@2
|
266 |
Changes the current directory on a FTP server (bool)
|
|
hg@2
|
267 |
ftp_close ( resource ftp_stream )
|
|
hg@2
|
268 |
Closes an FTP connection (bool)
|
|
hg@2
|
269 |
ftp_connect ( string host [, int port [, int timeout]] )
|
|
hg@2
|
270 |
Opens an FTP connection (resource)
|
|
hg@2
|
271 |
ftp_delete ( resource ftp_stream, string path )
|
|
hg@2
|
272 |
Deletes a file on the FTP server (bool)
|
|
hg@2
|
273 |
ftp_exec ( resource ftp_stream, string command )
|
|
hg@2
|
274 |
Requests execution of a program on the FTP server (bool)
|
|
hg@2
|
275 |
ftp_fget ( resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos] )
|
|
hg@2
|
276 |
Downloads a file from the FTP server and saves to an open file (bool)
|
|
hg@2
|
277 |
ftp_fput ( resource ftp_stream, string remote_file, resource handle, int mode [, int startpos] )
|
|
hg@2
|
278 |
Uploads from an open file to the FTP server (bool)
|
|
hg@2
|
279 |
ftp_get_option ( resource ftp_stream, int option )
|
|
hg@2
|
280 |
Retrieves various runtime behaviours of the current FTP stream (mixed)
|
|
hg@2
|
281 |
ftp_get ( resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos] )
|
|
hg@2
|
282 |
Downloads a file from the FTP server (bool)
|
|
hg@2
|
283 |
ftp_login ( resource ftp_stream, string username, string password )
|
|
hg@2
|
284 |
Logs in to an FTP connection (bool)
|
|
hg@2
|
285 |
ftp_mdtm ( resource ftp_stream, string remote_file )
|
|
hg@2
|
286 |
Returns the last modified time of the given file (int)
|
|
hg@2
|
287 |
ftp_mkdir ( resource ftp_stream, string directory )
|
|
hg@2
|
288 |
Creates a directory (string)
|
|
hg@2
|
289 |
ftp_nb_continue ( resource ftp_stream )
|
|
hg@2
|
290 |
Continues retrieving/sending a file (non-blocking) (int)
|
|
hg@2
|
291 |
ftp_nb_fget ( resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos] )
|
|
hg@2
|
292 |
Retrieves a file from the FTP server and writes it to an open file (non-blocking) (int)
|
|
hg@2
|
293 |
ftp_nb_fput ( resource ftp_stream, string remote_file, resource handle, int mode [, int startpos] )
|
|
hg@2
|
294 |
Stores a file from an open file to the FTP server (non-blocking) (int)
|
|
hg@2
|
295 |
ftp_nb_get ( resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos] )
|
|
hg@2
|
296 |
Retrieves a file from the FTP server and writes it to a local file (non-blocking) (int)
|
|
hg@2
|
297 |
ftp_nb_put ( resource ftp_stream, string remote_file, string local_file, int mode [, int startpos] )
|
|
hg@2
|
298 |
Stores a file on the FTP server (non-blocking) (int)
|
|
hg@2
|
299 |
ftp_nlist ( resource ftp_stream, string directory )
|
|
hg@2
|
300 |
Returns a list of files in the given directory (array)
|
|
hg@2
|
301 |
ftp_pasv ( resource ftp_stream, bool pasv )
|
|
hg@2
|
302 |
Turns passive mode on or off (bool)
|
|
hg@2
|
303 |
ftp_put ( resource ftp_stream, string remote_file, string local_file, int mode [, int startpos] )
|
|
hg@2
|
304 |
Uploads a file to the FTP server (bool)
|
|
hg@2
|
305 |
ftp_pwd ( resource ftp_stream )
|
|
hg@2
|
306 |
Returns the current directory name (string)
|
|
hg@2
|
307 |
ftp_rawlist ( resource ftp_stream, string directory [, bool recursive] )
|
|
hg@2
|
308 |
Returns a detailed list of files in the given directory (array)
|
|
hg@2
|
309 |
ftp_rename ( resource ftp_stream, string oldname, string newname )
|
|
hg@2
|
310 |
Renames a file or a directory on the FTP server (bool)
|
|
hg@2
|
311 |
ftp_rmdir ( resource ftp_stream, string directory )
|
|
hg@2
|
312 |
Removes a directory (bool)
|
|
hg@2
|
313 |
ftp_set_option ( resource ftp_stream, int option, mixed value )
|
|
hg@2
|
314 |
Set miscellaneous runtime FTP options (bool)
|
|
hg@2
|
315 |
ftp_site ( resource ftp_stream, string command )
|
|
hg@2
|
316 |
Sends a SITE command to the server (bool)
|
|
hg@2
|
317 |
ftp_size ( resource ftp_stream, string remote_file )
|
|
hg@2
|
318 |
Returns the size of the given file (int)
|
|
hg@2
|
319 |
ftp_ssl_connect ( string host [, int port [, int timeout]] )
|
|
hg@2
|
320 |
Opens an Secure SSL-FTP connection (resource)
|
|
hg@2
|
321 |
ftp_systype ( resource ftp_stream )
|
|
hg@2
|
322 |
Returns the system type identifier of the remote FTP server (string)
|
|
hg@2
|
323 |
call_user_func_array ( callback function, array param_arr )
|
|
hg@2
|
324 |
Call a user function given with an array of parameters (mixed)
|
|
hg@2
|
325 |
call_user_func ( callback function [, mixed parameter [, mixed ...]] )
|
|
hg@2
|
326 |
Call a user function given by the first parameter (mixed)
|
|
hg@2
|
327 |
create_function ( string args, string code )
|
|
hg@2
|
328 |
Create an anonymous (lambda-style) function (string)
|
|
hg@2
|
329 |
func_get_arg ( int arg_num )
|
|
hg@2
|
330 |
Return an item from the argument list (mixed)
|
|
hg@2
|
331 |
func_get_args ( void )
|
|
hg@2
|
332 |
Returns an array comprising a function's argument list (array)
|
|
hg@2
|
333 |
func_num_args ( void )
|
|
hg@2
|
334 |
Returns the number of arguments passed to the function (int)
|
|
hg@2
|
335 |
function_exists ( string function_name )
|
|
hg@2
|
336 |
Return TRUE if the given function has been defined (bool)
|
|
hg@2
|
337 |
get_defined_functions ( void )
|
|
hg@2
|
338 |
Returns an array of all defined functions (array)
|
|
hg@2
|
339 |
register_shutdown_function ( callback function [, mixed parameter [, mixed ...]] )
|
|
hg@2
|
340 |
Register a function for execution on shutdown (void)
|
|
hg@2
|
341 |
register_tick_function ( callback function [, mixed arg [, mixed ...]] )
|
|
hg@2
|
342 |
Register a function for execution on each tick (bool)
|
|
hg@2
|
343 |
unregister_tick_function ( string function_name )
|
|
hg@2
|
344 |
De-register a function for execution on each tick (void)
|
|
hg@2
|
345 |
header ( string string [, bool replace [, int http_response_code]] )
|
|
hg@2
|
346 |
Send a raw HTTP header (void)
|
|
hg@2
|
347 |
headers_sent ( [string &file [, int &line]] )
|
|
hg@2
|
348 |
Checks if or where headers have been sent (bool)
|
|
hg@2
|
349 |
setcookie ( string name [, string value [, int expire [, string path [, string domain [, bool secure]]]]] )
|
|
hg@2
|
350 |
Send a cookie (bool)
|
|
hg@2
|
351 |
gd_info ( void )
|
|
hg@2
|
352 |
Retrieve information about the currently installed GD library (array)
|
|
hg@2
|
353 |
getimagesize ( string filename [, array &imageinfo] )
|
|
hg@2
|
354 |
Get the size of an image (array)
|
|
hg@2
|
355 |
image_type_to_mime_type ( int imagetype )
|
|
hg@2
|
356 |
Get Mime-Type for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype (string)
|
|
hg@2
|
357 |
image2wbmp ( resource image [, string filename [, int threshold]] )
|
|
hg@2
|
358 |
Output image to browser or file (int)
|
|
hg@2
|
359 |
imagealphablending ( resource image, bool blendmode )
|
|
hg@2
|
360 |
Set the blending mode for an image (bool)
|
|
hg@2
|
361 |
imageantialias ( resource im, bool on )
|
|
hg@2
|
362 |
Should antialias functions be used or not (bool)
|
|
hg@2
|
363 |
imagearc ( resource image, int cx, int cy, int w, int h, int s, int e, int color )
|
|
hg@2
|
364 |
Draw a partial ellipse (bool)
|
|
hg@2
|
365 |
imagechar ( resource image, int font, int x, int y, string c, int color )
|
|
hg@2
|
366 |
Draw a character horizontally (bool)
|
|
hg@2
|
367 |
imagecharup ( resource image, int font, int x, int y, string c, int color )
|
|
hg@2
|
368 |
Draw a character vertically (bool)
|
|
hg@2
|
369 |
imagecolorallocate ( resource image, int red, int green, int blue )
|
|
hg@2
|
370 |
Allocate a color for an image (int)
|
|
hg@2
|
371 |
imagecolorallocatealpha ( resource image, int red, int green, int blue, int alpha )
|
|
hg@2
|
372 |
Allocate a color for an image (int)
|
|
hg@2
|
373 |
imagecolorat ( resource image, int x, int y )
|
|
hg@2
|
374 |
Get the index of the color of a pixel (int)
|
|
hg@2
|
375 |
imagecolorclosest ( resource image, int red, int green, int blue )
|
|
hg@2
|
376 |
Get the index of the closest color to the specified color (int)
|
|
hg@2
|
377 |
imagecolorclosestalpha ( resource image, int red, int green, int blue, int alpha )
|
|
hg@2
|
378 |
Get the index of the closest color to the specified color + alpha (int)
|
|
hg@2
|
379 |
imagecolorclosesthwb ( resource image, int red, int green, int blue )
|
|
hg@2
|
380 |
Get the index of the color which has the hue, white and blackness nearest to the given color (int)
|
|
hg@2
|
381 |
imagecolordeallocate ( resource image, int color )
|
|
hg@2
|
382 |
De-allocate a color for an image (bool)
|
|
hg@2
|
383 |
imagecolorexact ( resource image, int red, int green, int blue )
|
|
hg@2
|
384 |
Get the index of the specified color (int)
|
|
hg@2
|
385 |
imagecolorexactalpha ( resource image, int red, int green, int blue, int alpha )
|
|
hg@2
|
386 |
Get the index of the specified color + alpha (int)
|
|
hg@2
|
387 |
imagecolormatch ( resource image1, resource image2 )
|
|
hg@2
|
388 |
Makes the colors of the palette version of an image more closely match the true color version (bool)
|
|
hg@2
|
389 |
imagecolorresolve ( resource image, int red, int green, int blue )
|
|
hg@2
|
390 |
Get the index of the specified color or its closest possible alternative (int)
|
|
hg@2
|
391 |
imagecolorresolvealpha ( resource image, int red, int green, int blue, int alpha )
|
|
hg@2
|
392 |
Get the index of the specified color + alpha or its closest possible alternative (int)
|
|
hg@2
|
393 |
imagecolorset ( resource image, int index, int red, int green, int blue )
|
|
hg@2
|
394 |
Set the color for the specified palette index (void)
|
|
hg@2
|
395 |
imagecolorsforindex ( resource image, int index )
|
|
hg@2
|
396 |
Get the colors for an index (array)
|
|
hg@2
|
397 |
imagecolorstotal ( resource image )
|
|
hg@2
|
398 |
Find out the number of colors in an image's palette (int)
|
|
hg@2
|
399 |
imagecolortransparent ( resource image [, int color] )
|
|
hg@2
|
400 |
Define a color as transparent (int)
|
|
hg@2
|
401 |
imageconvolution ( resource image, array matrix3x3, float div, float offset )
|
|
hg@2
|
402 |
Apply a 3x3 convolution matrix, using coefficient div and offset (bool)
|
|
hg@2
|
403 |
imagecopy ( resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h )
|
|
hg@2
|
404 |
Copy part of an image (bool)
|
|
hg@2
|
405 |
imagecopymerge ( resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct )
|
|
hg@2
|
406 |
Copy and merge part of an image (bool)
|
|
hg@2
|
407 |
imagecopymergegray ( resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct )
|
|
hg@2
|
408 |
Copy and merge part of an image with gray scale (bool)
|
|
hg@2
|
409 |
imagecopyresampled ( resource dst_image, resource src_image, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h )
|
|
hg@2
|
410 |
Copy and resize part of an image with resampling (bool)
|
|
hg@2
|
411 |
imagecopyresized ( resource dst_image, resource src_image, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h )
|
|
hg@2
|
412 |
Copy and resize part of an image (bool)
|
|
hg@2
|
413 |
imagecreate ( int x_size, int y_size )
|
|
hg@2
|
414 |
Create a new palette based image (resource)
|
|
hg@2
|
415 |
imagecreatefromgd2 ( string filename )
|
|
hg@2
|
416 |
Create a new image from GD2 file or URL (resource)
|
|
hg@2
|
417 |
imagecreatefromgd2part ( string filename, int srcX, int srcY, int width, int height )
|
|
hg@2
|
418 |
Create a new image from a given part of GD2 file or URL (resource)
|
|
hg@2
|
419 |
imagecreatefromgd ( string filename )
|
|
hg@2
|
420 |
Create a new image from GD file or URL (resource)
|
|
hg@2
|
421 |
imagecreatefromgif ( string filename )
|
|
hg@2
|
422 |
Create a new image from file or URL (resource)
|
|
hg@2
|
423 |
imagecreatefromjpeg ( string filename )
|
|
hg@2
|
424 |
Create a new image from file or URL (resource)
|
|
hg@2
|
425 |
imap_8bit ( string string )
|
|
hg@2
|
426 |
Convert an 8bit string to a quoted-printable string (string)
|
|
hg@2
|
427 |
imap_alerts ( void )
|
|
hg@2
|
428 |
This function returns all IMAP alert messages (if any) that have occurred during this page request or since the alert stack was reset (array)
|
|
hg@2
|
429 |
imap_append ( resource imap_stream, string mbox, string message [, string options] )
|
|
hg@2
|
430 |
Append a string message to a specified mailbox (bool)
|
|
hg@2
|
431 |
imap_base64 ( string text )
|
|
hg@2
|
432 |
Decode BASE64 encoded text (string)
|
|
hg@2
|
433 |
imap_binary ( string string )
|
|
hg@2
|
434 |
Convert an 8bit string to a base64 string (string)
|
|
hg@2
|
435 |
imap_body ( resource imap_stream, int msg_number [, int options] )
|
|
hg@2
|
436 |
Read the message body (string)
|
|
hg@2
|
437 |
imap_bodystruct ( resource stream_id, int msg_no, string section )
|
|
hg@2
|
438 |
Read the structure of a specified body section of a specific message (object)
|
|
hg@2
|
439 |
imap_check ( resource imap_stream )
|
|
hg@2
|
440 |
Check current mailbox (object)
|
|
hg@2
|
441 |
imap_clearflag_full ( resource stream, string sequence, string flag [, string options] )
|
|
hg@2
|
442 |
Clears flags on messages (bool)
|
|
hg@2
|
443 |
imap_close ( resource imap_stream [, int flag] )
|
|
hg@2
|
444 |
Close an IMAP stream (bool)
|
|
hg@2
|
445 |
imap_createmailbox ( resource imap_stream, string mbox )
|
|
hg@2
|
446 |
Create a new mailbox (bool)
|
|
hg@2
|
447 |
imap_delete ( int imap_stream, int msg_number [, int options] )
|
|
hg@2
|
448 |
Mark a message for deletion from current mailbox (bool)
|
|
hg@2
|
449 |
imap_deletemailbox ( resource imap_stream, string mbox )
|
|
hg@2
|
450 |
Delete a mailbox (bool)
|
|
hg@2
|
451 |
imap_errors ( void )
|
|
hg@2
|
452 |
This function returns all of the IMAP errors (if any) that have occurred during this page request or since the error stack was reset (array)
|
|
hg@2
|
453 |
imap_expunge ( resource imap_stream )
|
|
hg@2
|
454 |
Delete all messages marked for deletion (bool)
|
|
hg@2
|
455 |
imap_fetch_overview ( resource imap_stream, string sequence [, int options] )
|
|
hg@2
|
456 |
Read an overview of the information in the headers of the given message (array)
|
|
hg@2
|
457 |
imap_fetchbody ( resource imap_stream, int msg_number, string part_number [, int options] )
|
|
hg@2
|
458 |
Fetch a particular section of the body of the message (string)
|
|
hg@2
|
459 |
imap_fetchheader ( resource imap_stream, int msgno [, int options] )
|
|
hg@2
|
460 |
Returns header for a message (string)
|
|
hg@2
|
461 |
imap_fetchstructure ( resource imap_stream, int msg_number [, int options] )
|
|
hg@2
|
462 |
Read the structure of a particular message (object)
|
|
hg@2
|
463 |
imap_get_quota ( resource imap_stream, string quota_root )
|
|
hg@2
|
464 |
Retrieve the quota level settings, and usage statics per mailbox (array)
|
|
hg@2
|
465 |
imap_get_quotaroot ( resource imap_stream, string quota_root )
|
|
hg@2
|
466 |
Retrieve the quota settings per user (array)
|
|
hg@2
|
467 |
imap_getmailboxes ( resource imap_stream, string ref, string pattern )
|
|
hg@2
|
468 |
Read the list of mailboxes, returning detailed information on each one (array)
|
|
hg@2
|
469 |
imap_getsubscribed ( resource imap_stream, string ref, string pattern )
|
|
hg@2
|
470 |
List all the subscribed mailboxes (array)
|
|
hg@2
|
471 |
imap_headerinfo ( resource imap_stream, int msg_number [, int fromlength [, int subjectlength [, string defaulthost]]] )
|
|
hg@2
|
472 |
Read the header of the message (object)
|
|
hg@2
|
473 |
imap_headers ( resource imap_stream )
|
|
hg@2
|
474 |
Returns headers for all messages in a mailbox (array)
|
|
hg@2
|
475 |
imap_last_error ( void )
|
|
hg@2
|
476 |
This function returns the last IMAP error (if any) that occurred during this page request (string)
|
|
hg@2
|
477 |
imap_list ( resource imap_stream, string ref, string pattern )
|
|
hg@2
|
478 |
Read the list of mailboxes (array)
|
|
hg@2
|
479 |
imap_lsub ( resource imap_stream, string ref, string pattern )
|
|
hg@2
|
480 |
List all the subscribed mailboxes (array)
|
|
hg@2
|
481 |
imap_mail_compose ( array envelope, array body )
|
|
hg@2
|
482 |
Create a MIME message based on given envelope and body sections (string)
|
|
hg@2
|
483 |
imap_mail_copy ( resource imap_stream, string msglist, string mbox [, int options] )
|
|
hg@2
|
484 |
Copy specified messages to a mailbox (bool)
|
|
hg@2
|
485 |
imap_mail_move ( resource imap_stream, string msglist, string mbox [, int options] )
|
|
hg@2
|
486 |
Move specified messages to a mailbox (bool)
|
|
hg@2
|
487 |
imap_mail ( string to, string subject, string message [, string additional_headers [, string cc [, string bcc [, string rpath]]]] )
|
|
hg@2
|
488 |
Send an email message (bool)
|
|
hg@2
|
489 |
imap_mailboxmsginfo ( resource imap_stream )
|
|
hg@2
|
490 |
Get information about the current mailbox (object)
|
|
hg@2
|
491 |
imap_mime_header_decode ( string text )
|
|
hg@2
|
492 |
Decode MIME header elements (array)
|
|
hg@2
|
493 |
imap_msgno ( resource imap_stream, int uid )
|
|
hg@2
|
494 |
This function returns the message sequence number for the given UID (int)
|
|
hg@2
|
495 |
imap_num_msg ( resource imap_stream )
|
|
hg@2
|
496 |
Gives the number of messages in the current mailbox (int)
|
|
hg@2
|
497 |
imap_num_recent ( resource imap_stream )
|
|
hg@2
|
498 |
Gives the number of recent messages in current mailbox (int)
|
|
hg@2
|
499 |
imap_open ( string mailbox, string username, string password [, int options] )
|
|
hg@2
|
500 |
Open an IMAP stream to a mailbox (resource)
|
|
hg@2
|
501 |
imap_ping ( resource imap_stream )
|
|
hg@2
|
502 |
Check if the IMAP stream is still active (bool)
|
|
hg@2
|
503 |
imap_qprint ( string string )
|
|
hg@2
|
504 |
Convert a quoted-printable string to an 8 bit string (string)
|
|
hg@2
|
505 |
imap_renamemailbox ( resource imap_stream, string old_mbox, string new_mbox )
|
|
hg@2
|
506 |
Rename an old mailbox to new mailbox (bool)
|
|
hg@2
|
507 |
imap_reopen ( resource imap_stream, string mailbox [, int options] )
|
|
hg@2
|
508 |
Reopen IMAP stream to new mailbox (bool)
|
|
hg@2
|
509 |
imap_rfc822_parse_adrlist ( string address, string default_host )
|
|
hg@2
|
510 |
Parses an address string (array)
|
|
hg@2
|
511 |
imap_rfc822_parse_headers ( string headers [, string defaulthost] )
|
|
hg@2
|
512 |
Parse mail headers from a string (object)
|
|
hg@2
|
513 |
imap_rfc822_write_address ( string mailbox, string host, string personal )
|
|
hg@2
|
514 |
Returns a properly formatted email address given the mailbox, host, and personal info (string)
|
|
hg@2
|
515 |
imap_search ( resource imap_stream, string criteria [, int options [, string charset]] )
|
|
hg@2
|
516 |
This function returns an array of messages matching the given search criteria (array)
|
|
hg@2
|
517 |
imap_set_quota ( resource imap_stream, string quota_root, int quota_limit )
|
|
hg@2
|
518 |
Sets a quota for a given mailbox (bool)
|
|
hg@2
|
519 |
imap_setacl ( resource stream_id, string mailbox, string id, string rights )
|
|
hg@2
|
520 |
Sets the ACL for a giving mailbox (bool)
|
|
hg@2
|
521 |
imap_setflag_full ( resource stream, string sequence, string flag [, string options] )
|
|
hg@2
|
522 |
Sets flags on messages (bool)
|
|
hg@2
|
523 |
imap_sort ( resource stream, int criteria, int reverse [, int options [, string search_criteria [, string charset]]] )
|
|
hg@2
|
524 |
Sort an array of message headers (array)
|
|
hg@2
|
525 |
imap_status ( resource imap_stream, string mailbox, int options )
|
|
hg@2
|
526 |
This function returns status information on a mailbox other than the current one (object)
|
|
hg@2
|
527 |
imap_subscribe ( resource imap_stream, string mbox )
|
|
hg@2
|
528 |
Subscribe to a mailbox (bool)
|
|
hg@2
|
529 |
imap_thread ( resource stream_id [, int options] )
|
|
hg@2
|
530 |
Returns a tree of threaded message (array)
|
|
hg@2
|
531 |
imap_timeout ( int timeout_type [, int timeout] )
|
|
hg@2
|
532 |
Set or fetch imap timeout (mixed)
|
|
hg@2
|
533 |
imap_uid ( resource imap_stream, int msgno )
|
|
hg@2
|
534 |
This function returns the UID for the given message sequence number (int)
|
|
hg@2
|
535 |
imap_undelete ( resource imap_stream, int msg_number [, int flags] )
|
|
hg@2
|
536 |
Unmark the message which is marked deleted (bool)
|
|
hg@2
|
537 |
imap_unsubscribe ( string imap_stream, string mbox )
|
|
hg@2
|
538 |
Unsubscribe from a mailbox (bool)
|
|
hg@2
|
539 |
imap_utf7_decode ( string text )
|
|
hg@2
|
540 |
Decodes a modified UTF-7 encoded string (string)
|
|
hg@2
|
541 |
imap_utf7_encode ( string data )
|
|
hg@2
|
542 |
Converts ISO-8859-1 string to modified UTF-7 text (string)
|
|
hg@2
|
543 |
imap_utf8 ( string mime_encoded_text )
|
|
hg@2
|
544 |
Converts MIME-encoded text to UTF-8 (string)
|
|
hg@2
|
545 |
ezmlm_hash ( string addr )
|
|
hg@2
|
546 |
Calculate the hash value needed by EZMLM (int)
|
|
hg@2
|
547 |
mail ( string to, string subject, string message [, string additional_headers [, string additional_parameters]] )
|
|
hg@2
|
548 |
Send mail (bool)
|
|
hg@2
|
549 |
abs ( mixed number )
|
|
hg@2
|
550 |
Absolute value (number)
|
|
hg@2
|
551 |
acos ( float arg )
|
|
hg@2
|
552 |
Arc cosine (float)
|
|
hg@2
|
553 |
acosh ( float arg )
|
|
hg@2
|
554 |
Inverse hyperbolic cosine (float)
|
|
hg@2
|
555 |
asin ( float arg )
|
|
hg@2
|
556 |
Arc sine (float)
|
|
hg@2
|
557 |
asinh ( float arg )
|
|
hg@2
|
558 |
Inverse hyperbolic sine (float)
|
|
hg@2
|
559 |
atan2 ( float y, float x )
|
|
hg@2
|
560 |
Arc tangent of two variables (float)
|
|
hg@2
|
561 |
atan ( float arg )
|
|
hg@2
|
562 |
Arc tangent (float)
|
|
hg@2
|
563 |
atanh ( float arg )
|
|
hg@2
|
564 |
Inverse hyperbolic tangent (float)
|
|
hg@2
|
565 |
base_convert ( string number, int frombase, int tobase )
|
|
hg@2
|
566 |
Convert a number between arbitrary bases (string)
|
|
hg@2
|
567 |
bindec ( string binary_string )
|
|
hg@2
|
568 |
Binary to decimal (number)
|
|
hg@2
|
569 |
ceil ( float value )
|
|
hg@2
|
570 |
Round fractions up (float)
|
|
hg@2
|
571 |
cos ( float arg )
|
|
hg@2
|
572 |
Cosine (float)
|
|
hg@2
|
573 |
cosh ( float arg )
|
|
hg@2
|
574 |
Hyperbolic cosine (float)
|
|
hg@2
|
575 |
decbin ( int number )
|
|
hg@2
|
576 |
Decimal to binary (string)
|
|
hg@2
|
577 |
dechex ( int number )
|
|
hg@2
|
578 |
Decimal to hexadecimal (string)
|
|
hg@2
|
579 |
decoct ( int number )
|
|
hg@2
|
580 |
Decimal to octal (string)
|
|
hg@2
|
581 |
deg2rad ( float number )
|
|
hg@2
|
582 |
Converts the number in degrees to the radian equivalent (float)
|
|
hg@2
|
583 |
exp ( float arg )
|
|
hg@2
|
584 |
Calculates the exponent of e (float)
|
|
hg@2
|
585 |
expm1 ( float number )
|
|
hg@2
|
586 |
Returns exp(number) - 1, computed in a way that is accurate even when the value of number is close to zero (float)
|
|
hg@2
|
587 |
floor ( float value )
|
|
hg@2
|
588 |
Round fractions down (float)
|
|
hg@2
|
589 |
fmod ( float x, float y )
|
|
hg@2
|
590 |
Returns the floating point remainder (modulo) of the division of the arguments (float)
|
|
hg@2
|
591 |
getrandmax ( void )
|
|
hg@2
|
592 |
Show largest possible random value (int)
|
|
hg@2
|
593 |
hexdec ( string hex_string )
|
|
hg@2
|
594 |
Hexadecimal to decimal (number)
|
|
hg@2
|
595 |
hypot ( float x, float y )
|
|
hg@2
|
596 |
Calculate the length of the hypotenuse of a right-angle triangle (float)
|
|
hg@2
|
597 |
is_finite ( float val )
|
|
hg@2
|
598 |
Finds whether a value is a legal finite number (bool)
|
|
hg@2
|
599 |
is_infinite ( float val )
|
|
hg@2
|
600 |
Finds whether a value is infinite (bool)
|
|
hg@2
|
601 |
is_nan ( float val )
|
|
hg@2
|
602 |
Finds whether a value is not a number (bool)
|
|
hg@2
|
603 |
lcg_value ( void )
|
|
hg@2
|
604 |
Combined linear congruential generator (float)
|
|
hg@2
|
605 |
log10 ( float arg )
|
|
hg@2
|
606 |
Base-10 logarithm (float)
|
|
hg@2
|
607 |
log1p ( float number )
|
|
hg@2
|
608 |
Returns log(1 + number), computed in a way that is accurate even when the value of number is close to zero (float)
|
|
hg@2
|
609 |
log ( float arg [, float base] )
|
|
hg@2
|
610 |
Natural logarithm (float)
|
|
hg@2
|
611 |
max ( number arg1, number arg2 [, number ...] )
|
|
hg@2
|
612 |
Find highest value (mixed)
|
|
hg@2
|
613 |
min ( number arg1, number arg2 [, number ...] )
|
|
hg@2
|
614 |
Find lowest value (mixed)
|
|
hg@2
|
615 |
mt_getrandmax ( void )
|
|
hg@2
|
616 |
Show largest possible random value (int)
|
|
hg@2
|
617 |
mt_rand ( [int min, int max] )
|
|
hg@2
|
618 |
Generate a better random value (int)
|
|
hg@2
|
619 |
mt_srand ( [int seed] )
|
|
hg@2
|
620 |
Seed the better random number generator (void)
|
|
hg@2
|
621 |
octdec ( string octal_string )
|
|
hg@2
|
622 |
Octal to decimal (number)
|
|
hg@2
|
623 |
pi ( void )
|
|
hg@2
|
624 |
Get value of pi (float)
|
|
hg@2
|
625 |
pow ( number base, number exp )
|
|
hg@2
|
626 |
Exponential expression (number)
|
|
hg@2
|
627 |
rad2deg ( float number )
|
|
hg@2
|
628 |
Converts the radian number to the equivalent number in degrees (float)
|
|
hg@2
|
629 |
rand ( [int min, int max] )
|
|
hg@2
|
630 |
Generate a random integer (int)
|
|
hg@2
|
631 |
round ( float val [, int precision] )
|
|
hg@2
|
632 |
Rounds a float (float)
|
|
hg@2
|
633 |
sin ( float arg )
|
|
hg@2
|
634 |
Sine (float)
|
|
hg@2
|
635 |
sinh ( float arg )
|
|
hg@2
|
636 |
Hyperbolic sine (float)
|
|
hg@2
|
637 |
sqrt ( float arg )
|
|
hg@2
|
638 |
Square root (float)
|
|
hg@2
|
639 |
srand ( [int seed] )
|
|
hg@2
|
640 |
Seed the random number generator (void)
|
|
hg@2
|
641 |
tan ( float arg )
|
|
hg@2
|
642 |
Tangent (float)
|
|
hg@2
|
643 |
tanh ( float arg )
|
|
hg@2
|
644 |
Hyperbolic tangent (float)
|
|
hg@2
|
645 |
mhash_count ( void )
|
|
hg@2
|
646 |
Get the highest available hash id (int)
|
|
hg@2
|
647 |
mhash_get_block_size ( int hash )
|
|
hg@2
|
648 |
Get the block size of the specified hash (int)
|
|
hg@2
|
649 |
mhash_get_hash_name ( int hash )
|
|
hg@2
|
650 |
Get the name of the specified hash (string)
|
|
hg@2
|
651 |
mhash_keygen_s2k ( int hash, string password, string salt, int bytes )
|
|
hg@2
|
652 |
Generates a key (string)
|
|
hg@2
|
653 |
mhash ( int hash, string data [, string key] )
|
|
hg@2
|
654 |
Compute hash (string)
|
|
hg@2
|
655 |
connection_aborted ( void )
|
|
hg@2
|
656 |
Returns TRUE if client disconnected (int)
|
|
hg@2
|
657 |
connection_status ( void )
|
|
hg@2
|
658 |
Returns connection status bitfield (int)
|
|
hg@2
|
659 |
connection_timeout ( void )
|
|
hg@2
|
660 |
Return TRUE if script timed out (bool)
|
|
hg@2
|
661 |
constant ( string name )
|
|
hg@2
|
662 |
Returns the value of a constant (mixed)
|
|
hg@2
|
663 |
define ( string name, mixed value [, bool case_insensitive] )
|
|
hg@2
|
664 |
Defines a named constant (bool)
|
|
hg@2
|
665 |
defined ( string name )
|
|
hg@2
|
666 |
Checks whether a given named constant exists (bool)
|
|
hg@2
|
667 |
eval ( string code_str )
|
|
hg@2
|
668 |
Evaluate a string as PHP code (mixed)
|
|
hg@2
|
669 |
exit ( [string status] )
|
|
hg@2
|
670 |
Output a message and terminate the current script (void)
|
|
hg@2
|
671 |
get_browser ( [string user_agent [, bool return_array]] )
|
|
hg@2
|
672 |
Tells what the user's browser is capable of (mixed)
|
|
hg@2
|
673 |
highlight_file ( string filename [, bool return] )
|
|
hg@2
|
674 |
Syntax highlighting of a file (mixed)
|
|
hg@2
|
675 |
highlight_string ( string str [, bool return] )
|
|
hg@2
|
676 |
Syntax highlighting of a string (mixed)
|
|
hg@2
|
677 |
ignore_user_abort ( [bool setting] )
|
|
hg@2
|
678 |
Set whether a client disconnect should abort script execution (int)
|
|
hg@2
|
679 |
pack ( string format [, mixed args [, mixed ...]] )
|
|
hg@2
|
680 |
Pack data into binary string (string)
|
|
hg@2
|
681 |
php_check_syntax ( string file_name [, string &error_message] )
|
|
hg@2
|
682 |
Check the PHP syntax of (and execute) the specified file (bool)
|
|
hg@2
|
683 |
sleep ( int seconds )
|
|
hg@2
|
684 |
Delay execution (int)
|
|
hg@2
|
685 |
time_sleep_until ( float timestamp )
|
|
hg@2
|
686 |
Make the script sleep until the specified time (bool)
|
|
hg@2
|
687 |
uniqid ( [string prefix [, bool more_entropy]] )
|
|
hg@2
|
688 |
Generate a unique ID (string)
|
|
hg@2
|
689 |
unpack ( string format, string data )
|
|
hg@2
|
690 |
Unpack data from binary string (array)
|
|
hg@2
|
691 |
usleep ( int micro_seconds )
|
|
hg@2
|
692 |
Delay execution in microseconds (void)
|
|
hg@2
|
693 |
mysql_affected_rows ( [resource link_identifier] )
|
|
hg@2
|
694 |
Get number of affected rows in previous MySQL operation (int)
|
|
hg@2
|
695 |
mysql_change_user ( string user, string password [, string database [, resource link_identifier]] )
|
|
hg@2
|
696 |
Change logged in user of the active connection (int)
|
|
hg@2
|
697 |
mysql_client_encoding ( [resource link_identifier] )
|
|
hg@2
|
698 |
Returns the name of the character set (string)
|
|
hg@2
|
699 |
mysql_close ( [resource link_identifier] )
|
|
hg@2
|
700 |
Close MySQL connection (bool)
|
|
hg@2
|
701 |
mysql_connect ( [string server [, string username [, string password [, bool new_link [, int client_flags]]]]] )
|
|
hg@2
|
702 |
Open a connection to a MySQL Server (resource)
|
|
hg@2
|
703 |
mysql_create_db ( string database_name [, resource link_identifier] )
|
|
hg@2
|
704 |
Create a MySQL database (bool)
|
|
hg@2
|
705 |
mysql_data_seek ( resource result, int row_number )
|
|
hg@2
|
706 |
Move internal result pointer (bool)
|
|
hg@2
|
707 |
mysql_db_name ( resource result, int row [, mixed field] )
|
|
hg@2
|
708 |
Get result data (string)
|
|
hg@2
|
709 |
mysql_db_query ( string database, string query [, resource link_identifier] )
|
|
hg@2
|
710 |
Send a MySQL query (resource)
|
|
hg@2
|
711 |
mysql_drop_db ( string database_name [, resource link_identifier] )
|
|
hg@2
|
712 |
Drop (delete) a MySQL database (bool)
|
|
hg@2
|
713 |
mysql_errno ( [resource link_identifier] )
|
|
hg@2
|
714 |
Returns the numerical value of the error message from previous MySQL operation (int)
|
|
hg@2
|
715 |
mysql_error ( [resource link_identifier] )
|
|
hg@2
|
716 |
Returns the text of the error message from previous MySQL operation (string)
|
|
hg@2
|
717 |
mysql_escape_string ( string unescaped_string )
|
|
hg@2
|
718 |
Escapes a string for use in a mysql_query (string)
|
|
hg@2
|
719 |
mysql_fetch_array ( resource result [, int result_type] )
|
|
hg@2
|
720 |
Fetch a result row as an associative array, a numeric array, or both (array)
|
|
hg@2
|
721 |
mysql_fetch_assoc ( resource result )
|
|
hg@2
|
722 |
Fetch a result row as an associative array (array)
|
|
hg@2
|
723 |
mysql_fetch_field ( resource result [, int field_offset] )
|
|
hg@2
|
724 |
Get column information from a result and return as an object (object)
|
|
hg@2
|
725 |
mysql_fetch_lengths ( resource result )
|
|
hg@2
|
726 |
Get the length of each output in a result (array)
|
|
hg@2
|
727 |
mysql_fetch_object ( resource result )
|
|
hg@2
|
728 |
Fetch a result row as an object (object)
|
|
hg@2
|
729 |
mysql_fetch_row ( resource result )
|
|
hg@2
|
730 |
Get a result row as an enumerated array (array)
|
|
hg@2
|
731 |
mysql_field_flags ( resource result, int field_offset )
|
|
hg@2
|
732 |
Get the flags associated with the specified field in a result (string)
|
|
hg@2
|
733 |
mysql_field_len ( resource result, int field_offset )
|
|
hg@2
|
734 |
Returns the length of the specified field (int)
|
|
hg@2
|
735 |
mysql_field_name ( resource result, int field_offset )
|
|
hg@2
|
736 |
Get the name of the specified field in a result (string)
|
|
hg@2
|
737 |
mysql_field_seek ( resource result, int field_offset )
|
|
hg@2
|
738 |
Set result pointer to a specified field offset (bool)
|
|
hg@2
|
739 |
mysql_field_table ( resource result, int field_offset )
|
|
hg@2
|
740 |
Get name of the table the specified field is in (string)
|
|
hg@2
|
741 |
mysql_field_type ( resource result, int field_offset )
|
|
hg@2
|
742 |
Get the type of the specified field in a result (string)
|
|
hg@2
|
743 |
mysql_free_result ( resource result )
|
|
hg@2
|
744 |
Free result memory (bool)
|
|
hg@2
|
745 |
mysql_get_client_info ( void )
|
|
hg@2
|
746 |
Get MySQL client info (string)
|
|
hg@2
|
747 |
mysql_get_host_info ( [resource link_identifier] )
|
|
hg@2
|
748 |
Get MySQL host info (string)
|
|
hg@2
|
749 |
mysql_get_proto_info ( [resource link_identifier] )
|
|
hg@2
|
750 |
Get MySQL protocol info (int)
|
|
hg@2
|
751 |
mysql_get_server_info ( [resource link_identifier] )
|
|
hg@2
|
752 |
Get MySQL server info (string)
|
|
hg@2
|
753 |
mysql_info ( [resource link_identifier] )
|
|
hg@2
|
754 |
Get information about the most recent query (string)
|
|
hg@2
|
755 |
mysql_insert_id ( [resource link_identifier] )
|
|
hg@2
|
756 |
Get the ID generated from the previous INSERT operation (int)
|
|
hg@2
|
757 |
mysql_list_dbs ( [resource link_identifier] )
|
|
hg@2
|
758 |
List databases available on a MySQL server (resource)
|
|
hg@2
|
759 |
mysql_list_fields ( string database_name, string table_name [, resource link_identifier] )
|
|
hg@2
|
760 |
List MySQL table fields (resource)
|
|
hg@2
|
761 |
mysql_list_processes ( [resource link_identifier] )
|
|
hg@2
|
762 |
List MySQL processes (resource)
|
|
hg@2
|
763 |
mysql_list_tables ( string database [, resource link_identifier] )
|
|
hg@2
|
764 |
List tables in a MySQL database (resource)
|
|
hg@2
|
765 |
mysql_num_fields ( resource result )
|
|
hg@2
|
766 |
Get number of fields in result (int)
|
|
hg@2
|
767 |
mysql_num_rows ( resource result )
|
|
hg@2
|
768 |
Get number of rows in result (int)
|
|
hg@2
|
769 |
mysql_pconnect ( [string server [, string username [, string password [, int client_flags]]]] )
|
|
hg@2
|
770 |
Open a persistent connection to a MySQL server (resource)
|
|
hg@2
|
771 |
mysql_ping ( [resource link_identifier] )
|
|
hg@2
|
772 |
Ping a server connection or reconnect if there is no connection (bool)
|
|
hg@2
|
773 |
mysql_query ( string query [, resource link_identifier] )
|
|
hg@2
|
774 |
Send a MySQL query (resource)
|
|
hg@2
|
775 |
mysql_real_escape_string ( string unescaped_string [, resource link_identifier] )
|
|
hg@2
|
776 |
Escapes special characters in a string for use in a SQL statement (string)
|
|
hg@2
|
777 |
mysql_result ( resource result, int row [, mixed field] )
|
|
hg@2
|
778 |
Get result data (string)
|
|
hg@2
|
779 |
mysql_select_db ( string database_name [, resource link_identifier] )
|
|
hg@2
|
780 |
Select a MySQL database (bool)
|
|
hg@2
|
781 |
mysql_stat ( [resource link_identifier] )
|
|
hg@2
|
782 |
Get current system status (string)
|
|
hg@2
|
783 |
mysql_tablename ( resource result, int i )
|
|
hg@2
|
784 |
Get table name of field (string)
|
|
hg@2
|
785 |
mysql_thread_id ( [resource link_identifier] )
|
|
hg@2
|
786 |
Return the current thread ID (int)
|
|
hg@2
|
787 |
mysql_unbuffered_query ( string query [, resource link_identifier] )
|
|
hg@2
|
788 |
Send an SQL query to MySQL, without fetching and buffering the result rows (resource)
|
|
hg@2
|
789 |
mysqli_embedded_connect ( [string dbname] )
|
|
hg@2
|
790 |
Open a connection to an embedded mysql server (mysqli)
|
|
hg@2
|
791 |
mysqli_server_end ( void )
|
|
hg@2
|
792 |
Shut down the embedded server (void)
|
|
hg@2
|
793 |
mysqli_server_init ( [array server [, array groups]] )
|
|
hg@2
|
794 |
Initialize embedded server (bool)
|
|
hg@2
|
795 |
checkdnsrr ( string host [, string type] )
|
|
hg@2
|
796 |
Check DNS records corresponding to a given Internet host name or IP address (int)
|
|
hg@2
|
797 |
closelog ( void )
|
|
hg@2
|
798 |
Close connection to system logger (bool)
|
|
hg@2
|
799 |
debugger_off ( void )
|
|
hg@2
|
800 |
Disable internal PHP debugger (PHP 3) (int)
|
|
hg@2
|
801 |
debugger_on ( string address )
|
|
hg@2
|
802 |
Enable internal PHP debugger (PHP 3) (int)
|
|
hg@2
|
803 |
define_syslog_variables ( void )
|
|
hg@2
|
804 |
Initializes all syslog related constants (void)
|
|
hg@2
|
805 |
fsockopen ( string target [, int port [, int &errno [, string &errstr [, float timeout]]]] )
|
|
hg@2
|
806 |
Open Internet or Unix domain socket connection (resource)
|
|
hg@2
|
807 |
gethostbyaddr ( string ip_address )
|
|
hg@2
|
808 |
Get the Internet host name corresponding to a given IP address (string)
|
|
hg@2
|
809 |
gethostbyname ( string hostname )
|
|
hg@2
|
810 |
Get the IP address corresponding to a given Internet host name (string)
|
|
hg@2
|
811 |
gethostbynamel ( string hostname )
|
|
hg@2
|
812 |
Get a list of IP addresses corresponding to a given Internet host name (array)
|
|
hg@2
|
813 |
getmxrr ( string hostname, array &mxhosts [, array &weight] )
|
|
hg@2
|
814 |
Get MX records corresponding to a given Internet host name (bool)
|
|
hg@2
|
815 |
getprotobyname ( string name )
|
|
hg@2
|
816 |
Get protocol number associated with protocol name (int)
|
|
hg@2
|
817 |
getprotobynumber ( int number )
|
|
hg@2
|
818 |
Get protocol name associated with protocol number (string)
|
|
hg@2
|
819 |
getservbyname ( string service, string protocol )
|
|
hg@2
|
820 |
Get port number associated with an Internet service and protocol (int)
|
|
hg@2
|
821 |
getservbyport ( int port, string protocol )
|
|
hg@2
|
822 |
Get Internet service which corresponds to port and protocol (string)
|
|
hg@2
|
823 |
inet_ntop ( string in_addr )
|
|
hg@2
|
824 |
Converts a packed internet address to a human readable representation (string)
|
|
hg@2
|
825 |
inet_pton ( string address )
|
|
hg@2
|
826 |
Converts a human readable IP address to its packed in_addr representation (string)
|
|
hg@2
|
827 |
ip2long ( string ip_address )
|
|
hg@2
|
828 |
Converts a string containing an (IPv4) Internet Protocol dotted address into a proper address (int)
|
|
hg@2
|
829 |
long2ip ( int proper_address )
|
|
hg@2
|
830 |
Converts an (IPv4) Internet network address into a string in Internet standard dotted format (string)
|
|
hg@2
|
831 |
openlog ( string ident, int option, int facility )
|
|
hg@2
|
832 |
Open connection to system logger (bool)
|
|
hg@2
|
833 |
pfsockopen ( string hostname [, int port [, int &errno [, string &errstr [, float timeout]]]] )
|
|
hg@2
|
834 |
Open persistent Internet or Unix domain socket connection (resource)
|
|
hg@2
|
835 |
syslog ( int priority, string message )
|
|
hg@2
|
836 |
Generate a system log message (bool)
|
|
hg@2
|
837 |
odbc_autocommit ( resource connection_id [, bool OnOff] )
|
|
hg@2
|
838 |
Toggle autocommit behaviour (mixed)
|
|
hg@2
|
839 |
odbc_binmode ( resource result_id, int mode )
|
|
hg@2
|
840 |
Handling of binary column data (bool)
|
|
hg@2
|
841 |
odbc_close_all ( void )
|
|
hg@2
|
842 |
Close all ODBC connections (void)
|
|
hg@2
|
843 |
odbc_close ( resource connection_id )
|
|
hg@2
|
844 |
Close an ODBC connection (void)
|
|
hg@2
|
845 |
odbc_columnprivileges ( resource connection_id, string qualifier, string owner, string table_name, string column_name )
|
|
hg@2
|
846 |
Returns a result identifier that can be used to fetch a list of columns and associated privileges (resource)
|
|
hg@2
|
847 |
odbc_columns ( resource connection_id [, string qualifier [, string schema [, string table_name [, string column_name]]]] )
|
|
hg@2
|
848 |
Lists the column names in specified tables (resource)
|
|
hg@2
|
849 |
odbc_commit ( resource connection_id )
|
|
hg@2
|
850 |
Commit an ODBC transaction (bool)
|
|
hg@2
|
851 |
odbc_connect ( string dsn, string user, string password [, int cursor_type] )
|
|
hg@2
|
852 |
Connect to a datasource (resource)
|
|
hg@2
|
853 |
odbc_cursor ( resource result_id )
|
|
hg@2
|
854 |
Get cursorname (string)
|
|
hg@2
|
855 |
odbc_data_source ( resource connection_id, int fetch_type )
|
|
hg@2
|
856 |
Returns information about a current connection (array)
|
|
hg@2
|
857 |
odbc_do ( resource conn_id, string query )
|
|
hg@2
|
858 |
Synonym for odbc_exec() (resource)
|
|
hg@2
|
859 |
odbc_error ( [resource connection_id] )
|
|
hg@2
|
860 |
Get the last error code (string)
|
|
hg@2
|
861 |
odbc_errormsg ( [resource connection_id] )
|
|
hg@2
|
862 |
Get the last error message (string)
|
|
hg@2
|
863 |
odbc_exec ( resource connection_id, string query_string [, int flags] )
|
|
hg@2
|
864 |
Prepare and execute a SQL statement (resource)
|
|
hg@2
|
865 |
odbc_execute ( resource result_id [, array parameters_array] )
|
|
hg@2
|
866 |
Execute a prepared statement (bool)
|
|
hg@2
|
867 |
odbc_fetch_array ( resource result [, int rownumber] )
|
|
hg@2
|
868 |
Fetch a result row as an associative array (array)
|
|
hg@2
|
869 |
odbc_fetch_into ( resource result_id, array &result_array [, int rownumber] )
|
|
hg@2
|
870 |
Fetch one result row into array (int)
|
|
hg@2
|
871 |
odbc_fetch_object ( resource result [, int rownumber] )
|
|
hg@2
|
872 |
Fetch a result row as an object (object)
|
|
hg@2
|
873 |
odbc_fetch_row ( resource result_id [, int row_number] )
|
|
hg@2
|
874 |
Fetch a row (bool)
|
|
hg@2
|
875 |
odbc_field_len ( resource result_id, int field_number )
|
|
hg@2
|
876 |
Get the length (precision) of a field (int)
|
|
hg@2
|
877 |
odbc_field_name ( resource result_id, int field_number )
|
|
hg@2
|
878 |
Get the columnname (string)
|
|
hg@2
|
879 |
odbc_field_num ( resource result_id, string field_name )
|
|
hg@2
|
880 |
Return column number (int)
|
|
hg@2
|
881 |
odbc_field_precision ( resource result_id, int field_number )
|
|
hg@2
|
882 |
Synonym for odbc_field_len() (int)
|
|
hg@2
|
883 |
odbc_field_scale ( resource result_id, int field_number )
|
|
hg@2
|
884 |
Get the scale of a field (int)
|
|
hg@2
|
885 |
odbc_field_type ( resource result_id, int field_number )
|
|
hg@2
|
886 |
Datatype of a field (string)
|
|
hg@2
|
887 |
odbc_foreignkeys ( resource connection_id, string pk_qualifier, string pk_owner, string pk_table, string fk_qualifier, string fk_owner, string fk_table )
|
|
hg@2
|
888 |
Returns a list of foreign keys in the specified table or a list of foreign keys in other tables that refer to the primary key in the specified table (resource)
|
|
hg@2
|
889 |
odbc_free_result ( resource result_id )
|
|
hg@2
|
890 |
Free resources associated with a result (bool)
|
|
hg@2
|
891 |
odbc_gettypeinfo ( resource connection_id [, int data_type] )
|
|
hg@2
|
892 |
Returns a result identifier containing information about data types supported by the data source (resource)
|
|
hg@2
|
893 |
odbc_longreadlen ( resource result_id, int length )
|
|
hg@2
|
894 |
Handling of LONG columns (bool)
|
|
hg@2
|
895 |
odbc_next_result ( resource result_id )
|
|
hg@2
|
896 |
Checks if multiple results are available (bool)
|
|
hg@2
|
897 |
odbc_num_fields ( resource result_id )
|
|
hg@2
|
898 |
Number of columns in a result (int)
|
|
hg@2
|
899 |
odbc_num_rows ( resource result_id )
|
|
hg@2
|
900 |
Number of rows in a result (int)
|
|
hg@2
|
901 |
odbc_pconnect ( string dsn, string user, string password [, int cursor_type] )
|
|
hg@2
|
902 |
Open a persistent database connection (resource)
|
|
hg@2
|
903 |
odbc_prepare ( resource connection_id, string query_string )
|
|
hg@2
|
904 |
Prepares a statement for execution (resource)
|
|
hg@2
|
905 |
odbc_primarykeys ( resource connection_id, string qualifier, string owner, string table )
|
|
hg@2
|
906 |
Returns a result identifier that can be used to fetch the column names that comprise the primary key for a table (resource)
|
|
hg@2
|
907 |
odbc_procedurecolumns ( resource connection_id [, string qualifier, string owner, string proc, string column] )
|
|
hg@2
|
908 |
Retrieve information about parameters to procedures (resource)
|
|
hg@2
|
909 |
odbc_procedures ( resource connection_id [, string qualifier, string owner, string name] )
|
|
hg@2
|
910 |
Get the list of procedures stored in a specific data source (resource)
|
|
hg@2
|
911 |
odbc_result_all ( resource result_id [, string format] )
|
|
hg@2
|
912 |
Print result as HTML table (int)
|
|
hg@2
|
913 |
odbc_result ( resource result_id, mixed field )
|
|
hg@2
|
914 |
Get result data (mixed)
|
|
hg@2
|
915 |
odbc_rollback ( resource connection_id )
|
|
hg@2
|
916 |
Rollback a transaction (bool)
|
|
hg@2
|
917 |
odbc_setoption ( resource id, int function, int option, int param )
|
|
hg@2
|
918 |
Adjust ODBC settings (bool)
|
|
hg@2
|
919 |
odbc_specialcolumns ( resource connection_id, int type, string qualifier, string owner, string table, int scope, int nullable )
|
|
hg@2
|
920 |
Returns either the optimal set of columns that uniquely identifies a row in the table or columns that are automatically updated when any value in the row is updated by a transaction
|
|
hg@2
|
921 |
odbc_statistics ( resource connection_id, string qualifier, string owner, string table_name, int unique, int accuracy )
|
|
hg@2
|
922 |
Retrieve statistics about a table (resource)
|
|
hg@2
|
923 |
odbc_tableprivileges ( resource connection_id, string qualifier, string owner, string name )
|
|
hg@2
|
924 |
Lists tables and the privileges associated with each table (resource)
|
|
hg@2
|
925 |
odbc_tables ( resource connection_id [, string qualifier [, string owner [, string name [, string types]]]] ) Get the list of table names stored in a specific data source (resource)
|
|
hg@2
|
926 |
pcntl_alarm ( int seconds )
|
|
hg@2
|
927 |
Set an alarm clock for delivery of a signal (int)
|
|
hg@2
|
928 |
pcntl_exec ( string path [, array args [, array envs]] )
|
|
hg@2
|
929 |
Executes specified program in current process space (void)
|
|
hg@2
|
930 |
pcntl_fork ( void )
|
|
hg@2
|
931 |
Forks the currently running process (int)
|
|
hg@2
|
932 |
pcntl_signal ( int signo, callback handle [, bool restart_syscalls] )
|
|
hg@2
|
933 |
Installs a signal handler (bool)
|
|
hg@2
|
934 |
pcntl_waitpid ( int pid, int &status [, int options] )
|
|
hg@2
|
935 |
Waits on or returns the status of a forked child (int)
|
|
hg@2
|
936 |
pcntl_wexitstatus ( int status )
|
|
hg@2
|
937 |
Returns the return code of a terminated child (int)
|
|
hg@2
|
938 |
pcntl_wifexited ( int status )
|
|
hg@2
|
939 |
Returns TRUE if status code represents a successful exit (bool)
|
|
hg@2
|
940 |
pcntl_wifsignaled ( int status )
|
|
hg@2
|
941 |
Returns TRUE if status code represents a termination due to a signal (bool)
|
|
hg@2
|
942 |
pcntl_wifstopped ( int status )
|
|
hg@2
|
943 |
Returns TRUE if child process is currently stopped (bool)
|
|
hg@2
|
944 |
pcntl_wstopsig ( int status )
|
|
hg@2
|
945 |
Returns the signal which caused the child to stop (int)
|
|
hg@2
|
946 |
pcntl_wtermsig ( int status )
|
|
hg@2
|
947 |
Returns the signal which caused the child to terminate (int)
|
|
hg@2
|
948 |
posix_access ( string file [, int mode] )
|
|
hg@2
|
949 |
Determine accessibility of a file (bool)
|
|
hg@2
|
950 |
posix_ctermid ( void )
|
|
hg@2
|
951 |
Get path name of controlling terminal (string)
|
|
hg@2
|
952 |
posix_get_last_error ( void )
|
|
hg@2
|
953 |
Retrieve the error number set by the last posix function that failed (int)
|
|
hg@2
|
954 |
posix_getcwd ( void )
|
|
hg@2
|
955 |
Pathname of current directory (string)
|
|
hg@2
|
956 |
posix_getegid ( void )
|
|
hg@2
|
957 |
Return the effective group ID of the current process (int)
|
|
hg@2
|
958 |
posix_geteuid ( void )
|
|
hg@2
|
959 |
Return the effective user ID of the current process (int)
|
|
hg@2
|
960 |
posix_getgid ( void )
|
|
hg@2
|
961 |
Return the real group ID of the current process (int)
|
|
hg@2
|
962 |
posix_getgrgid ( int gid )
|
|
hg@2
|
963 |
Return info about a group by group id (array)
|
|
hg@2
|
964 |
posix_getgrnam ( string name )
|
|
hg@2
|
965 |
Return info about a group by name (array)
|
|
hg@2
|
966 |
posix_getgroups ( void )
|
|
hg@2
|
967 |
Return the group set of the current process (array)
|
|
hg@2
|
968 |
posix_getlogin ( void )
|
|
hg@2
|
969 |
Return login name (string)
|
|
hg@2
|
970 |
posix_getpgid ( int pid )
|
|
hg@2
|
971 |
Get process group id for job control (int)
|
|
hg@2
|
972 |
posix_getpgrp ( void )
|
|
hg@2
|
973 |
Return the current process group identifier (int)
|
|
hg@2
|
974 |
posix_getpid ( void )
|
|
hg@2
|
975 |
Return the current process identifier (int)
|
|
hg@2
|
976 |
posix_getppid ( void )
|
|
hg@2
|
977 |
Return the parent process identifier (int)
|
|
hg@2
|
978 |
posix_getpwnam ( string username )
|
|
hg@2
|
979 |
Return info about a user by username (array)
|
|
hg@2
|
980 |
posix_getpwuid ( int uid )
|
|
hg@2
|
981 |
Return info about a user by user id (array)
|
|
hg@2
|
982 |
posix_getrlimit ( void )
|
|
hg@2
|
983 |
Return info about system resource limits (array)
|
|
hg@2
|
984 |
posix_getsid ( int pid )
|
|
hg@2
|
985 |
Get the current sid of the process (int)
|
|
hg@2
|
986 |
posix_getuid ( void )
|
|
hg@2
|
987 |
Return the real user ID of the current process (int)
|
|
hg@2
|
988 |
posix_isatty ( int fd )
|
|
hg@2
|
989 |
Determine if a file descriptor is an interactive terminal (bool)
|
|
hg@2
|
990 |
posix_kill ( int pid, int sig )
|
|
hg@2
|
991 |
Send a signal to a process (bool)
|
|
hg@2
|
992 |
posix_mkfifo ( string pathname, int mode )
|
|
hg@2
|
993 |
Create a fifo special file (a named pipe) (bool)
|
|
hg@2
|
994 |
posix_mknod ( string pathname, int mode [, int major [, int minor]] )
|
|
hg@2
|
995 |
Create a special or ordinary file (POSIX.1) (bool)
|
|
hg@2
|
996 |
posix_setegid ( int gid )
|
|
hg@2
|
997 |
Set the effective GID of the current process (bool)
|
|
hg@2
|
998 |
posix_seteuid ( int uid )
|
|
hg@2
|
999 |
Set the effective UID of the current process (bool)
|
|
hg@2
|
1000 |
posix_setgid ( int gid )
|
|
hg@2
|
1001 |
Set the GID of the current process (bool)
|
|
hg@2
|
1002 |
posix_setpgid ( int pid, int pgid )
|
|
hg@2
|
1003 |
Set process group id for job control (bool)
|
|
hg@2
|
1004 |
posix_setsid ( void )
|
|
hg@2
|
1005 |
Make the current process a session leader (int)
|
|
hg@2
|
1006 |
posix_setuid ( int uid )
|
|
hg@2
|
1007 |
Set the UID of the current process (bool)
|
|
hg@2
|
1008 |
posix_strerror ( int errno )
|
|
hg@2
|
1009 |
Retrieve the system error message associated with the given errno (string)
|
|
hg@2
|
1010 |
posix_times ( void )
|
|
hg@2
|
1011 |
Get process times (array)
|
|
hg@2
|
1012 |
posix_ttyname ( int fd )
|
|
hg@2
|
1013 |
Determine terminal device name (string)
|
|
hg@2
|
1014 |
posix_uname ( void )
|
|
hg@2
|
1015 |
Get system name (array)
|
|
hg@2
|
1016 |
escapeshellarg ( string arg )
|
|
hg@2
|
1017 |
Escape a string to be used as a shell argument (string)
|
|
hg@2
|
1018 |
escapeshellcmd ( string command )
|
|
hg@2
|
1019 |
Escape shell metacharacters (string)
|
|
hg@2
|
1020 |
exec ( string command [, array &output [, int &return_var]] )
|
|
hg@2
|
1021 |
Execute an external program (string)
|
|
hg@2
|
1022 |
passthru ( string command [, int &return_var] )
|
|
hg@2
|
1023 |
Execute an external program and display raw output (void)
|
|
hg@2
|
1024 |
proc_close ( resource process )
|
|
hg@2
|
1025 |
Close a process opened by proc_open() and return the exit code of that process. (int)
|
|
hg@2
|
1026 |
proc_open ( string cmd, array descriptorspec, array &pipes [, string cwd [, array env [, array other_options]]] )
|
|
hg@2
|
1027 |
Execute a command and open file pointers for input/output (resource)
|
|
hg@2
|
1028 |
shell_exec ( string cmd )
|
|
hg@2
|
1029 |
Execute command via shell and return the complete output as a string (string)
|
|
hg@2
|
1030 |
system ( string command [, int &return_var] )
|
|
hg@2
|
1031 |
Execute an external program and display the output (string)
|
|
hg@2
|
1032 |
ereg_replace ( string pattern, string replacement, string string )
|
|
hg@2
|
1033 |
Replace regular expression (string)
|
|
hg@2
|
1034 |
ereg ( string pattern, string string [, array ®s] )
|
|
hg@2
|
1035 |
Regular expression match (int)
|
|
hg@2
|
1036 |
eregi_replace ( string pattern, string replacement, string string )
|
|
hg@2
|
1037 |
Replace regular expression case insensitive (string)
|
|
hg@2
|
1038 |
eregi ( string pattern, string string [, array ®s] )
|
|
hg@2
|
1039 |
Case insensitive regular expression match (int)
|
|
hg@2
|
1040 |
split ( string pattern, string string [, int limit] )
|
|
hg@2
|
1041 |
Split string into array by regular expression (array)
|
|
hg@2
|
1042 |
spliti ( string pattern, string string [, int limit] )
|
|
hg@2
|
1043 |
Split string into array by regular expression case insensitive (array)
|
|
hg@2
|
1044 |
sql_regcase ( string string )
|
|
hg@2
|
1045 |
Make regular expression for case insensitive match (string)
|
|
hg@2
|
1046 |
session_cache_expire ( [int new_cache_expire] )
|
|
hg@2
|
1047 |
Return current cache expire (int)
|
|
hg@2
|
1048 |
session_cache_limiter ( [string cache_limiter] )
|
|
hg@2
|
1049 |
Get and/or set the current cache limiter (string)
|
|
hg@2
|
1050 |
session_decode ( string data )
|
|
hg@2
|
1051 |
Decodes session data from a string (bool)
|
|
hg@2
|
1052 |
session_destroy ( void )
|
|
hg@2
|
1053 |
Destroys all data registered to a session (bool)
|
|
hg@2
|
1054 |
session_encode ( void )
|
|
hg@2
|
1055 |
Encodes the current session data as a string (string)
|
|
hg@2
|
1056 |
session_get_cookie_params ( void )
|
|
hg@2
|
1057 |
Get the session cookie parameters (array)
|
|
hg@2
|
1058 |
session_id ( [string id] )
|
|
hg@2
|
1059 |
Get and/or set the current session id (string)
|
|
hg@2
|
1060 |
session_is_registered ( string name )
|
|
hg@2
|
1061 |
Find out whether a global variable is registered in a session (bool)
|
|
hg@2
|
1062 |
session_module_name ( [string module] )
|
|
hg@2
|
1063 |
Get and/or set the current session module (string)
|
|
hg@2
|
1064 |
session_name ( [string name] )
|
|
hg@2
|
1065 |
Get and/or set the current session name (string)
|
|
hg@2
|
1066 |
session_regenerate_id ( [bool delete_old_session] )
|
|
hg@2
|
1067 |
Update the current session id with a newly generated one (bool)
|
|
hg@2
|
1068 |
session_register ( mixed name [, mixed ...] )
|
|
hg@2
|
1069 |
Register one or more global variables with the current session (bool)
|
|
hg@2
|
1070 |
session_save_path ( [string path] )
|
|
hg@2
|
1071 |
Get and/or set the current session save path (string)
|
|
hg@2
|
1072 |
session_set_cookie_params ( int lifetime [, string path [, string domain [, bool secure]]] )
|
|
hg@2
|
1073 |
Set the session cookie parameters (void)
|
|
hg@2
|
1074 |
session_set_save_handler ( callback open, callback close, callback read, callback write, callback destroy, callback gc )
|
|
hg@2
|
1075 |
Sets user-level session storage functions (bool)
|
|
hg@2
|
1076 |
session_start ( void )
|
|
hg@2
|
1077 |
Initialize session data (bool)
|
|
hg@2
|
1078 |
session_unregister ( string name )
|
|
hg@2
|
1079 |
Unregister a global variable from the current session (bool)
|
|
hg@2
|
1080 |
session_unset ( void )
|
|
hg@2
|
1081 |
Free all session variables (void)
|
|
hg@2
|
1082 |
session_write_close ( void )
|
|
hg@2
|
1083 |
Write session data and end session (void)
|
|
hg@2
|
1084 |
addcslashes ( string str, string charlist )
|
|
hg@2
|
1085 |
Quote string with slashes in a C style (string)
|
|
hg@2
|
1086 |
addslashes ( string str )
|
|
hg@2
|
1087 |
Quote string with slashes (string)
|
|
hg@2
|
1088 |
bin2hex ( string str )
|
|
hg@2
|
1089 |
Convert binary data into hexadecimal representation (string)
|
|
hg@2
|
1090 |
chr ( int ascii )
|
|
hg@2
|
1091 |
Return a specific character (string)
|
|
hg@2
|
1092 |
chunk_split ( string body [, int chunklen [, string end]] )
|
|
hg@2
|
1093 |
Split a string into smaller chunks (string)
|
|
hg@2
|
1094 |
convert_cyr_string ( string str, string from, string to )
|
|
hg@2
|
1095 |
Convert from one Cyrillic character set to another (string)
|
|
hg@2
|
1096 |
count_chars ( string string [, int mode] )
|
|
hg@2
|
1097 |
Return information about characters used in a string (mixed)
|
|
hg@2
|
1098 |
crc32 ( string str )
|
|
hg@2
|
1099 |
Calculates the crc32 polynomial of a string (int)
|
|
hg@2
|
1100 |
crypt ( string str [, string salt] )
|
|
hg@2
|
1101 |
One-way string encryption (hashing) (string)
|
|
hg@2
|
1102 |
echo ( string arg1 [, string ...] )
|
|
hg@2
|
1103 |
Output one or more strings (void)
|
|
hg@2
|
1104 |
explode ( string separator, string string [, int limit] )
|
|
hg@2
|
1105 |
Split a string by string (array)
|
|
hg@2
|
1106 |
get_html_translation_table ( [int table [, int quote_style]] )
|
|
hg@2
|
1107 |
Returns the translation table used by htmlspecialchars() and htmlentities() (array)
|
|
hg@2
|
1108 |
hebrev ( string hebrew_text [, int max_chars_per_line] )
|
|
hg@2
|
1109 |
Convert logical Hebrew text to visual text (string)
|
|
hg@2
|
1110 |
hebrevc ( string hebrew_text [, int max_chars_per_line] )
|
|
hg@2
|
1111 |
Convert logical Hebrew text to visual text with newline conversion (string)
|
|
hg@2
|
1112 |
html_entity_decode ( string string [, int quote_style [, string charset]] )
|
|
hg@2
|
1113 |
Convert all HTML entities to their applicable characters (string)
|
|
hg@2
|
1114 |
htmlentities ( string string [, int quote_style [, string charset]] )
|
|
hg@2
|
1115 |
Convert all applicable characters to HTML entities (string)
|
|
hg@2
|
1116 |
htmlspecialchars_decode ( string string [, int quote_style] )
|
|
hg@2
|
1117 |
Convert special HTML entities back to characters (string)
|
|
hg@2
|
1118 |
htmlspecialchars ( string string [, int quote_style [, string charset]] )
|
|
hg@2
|
1119 |
Convert special characters to HTML entities (string)
|
|
hg@2
|
1120 |
implode ( string glue, array pieces )
|
|
hg@2
|
1121 |
Join array elements with a string (string)
|
|
hg@2
|
1122 |
levenshtein ( string str1, string str2 [, int cost_ins, int cost_rep, int cost_del] )
|
|
hg@2
|
1123 |
Calculate Levenshtein distance between two strings (int)
|
|
hg@2
|
1124 |
localeconv ( void )
|
|
hg@2
|
1125 |
Get numeric formatting information (array)
|
|
hg@2
|
1126 |
ltrim ( string str [, string charlist] )
|
|
hg@2
|
1127 |
Strip whitespace (or other characters) from the beginning of a string (string)
|
|
hg@2
|
1128 |
md5_file ( string filename [, bool raw_output] )
|
|
hg@2
|
1129 |
Calculates the md5 hash of a given file (string)
|
|
hg@2
|
1130 |
md5 ( string str [, bool raw_output] )
|
|
hg@2
|
1131 |
Calculate the md5 hash of a string (string)
|
|
hg@2
|
1132 |
metaphone ( string str [, int phones] )
|
|
hg@2
|
1133 |
Calculate the metaphone key of a string (string)
|
|
hg@2
|
1134 |
money_format ( string format, float number )
|
|
hg@2
|
1135 |
Formats a number as a currency string (string)
|
|
hg@2
|
1136 |
nl_langinfo ( int item )
|
|
hg@2
|
1137 |
Query language and locale information (string)
|
|
hg@2
|
1138 |
nl2br ( string string )
|
|
hg@2
|
1139 |
Inserts HTML line breaks before all newlines in a string (string)
|
|
hg@2
|
1140 |
number_format ( float number [, int decimals [, string dec_point, string thousands_sep]] )
|
|
hg@2
|
1141 |
Format a number with grouped thousands (string)
|
|
hg@2
|
1142 |
ord ( string string )
|
|
hg@2
|
1143 |
Return ASCII value of character (int)
|
|
hg@2
|
1144 |
parse_str ( string str [, array &arr] )
|
|
hg@2
|
1145 |
Parses the string into variables (void)
|
|
hg@2
|
1146 |
print ( string arg )
|
|
hg@2
|
1147 |
Output a string (int)
|
|
hg@2
|
1148 |
printf ( string format [, mixed args [, mixed ...]] )
|
|
hg@2
|
1149 |
Output a formatted string (int)
|
|
hg@2
|
1150 |
quoted_printable_decode ( string str )
|
|
hg@2
|
1151 |
Convert a quoted-printable string to an 8 bit string (string)
|
|
hg@2
|
1152 |
quotemeta ( string str )
|
|
hg@2
|
1153 |
Quote meta characters (string)
|
|
hg@2
|
1154 |
rtrim ( string str [, string charlist] )
|
|
hg@2
|
1155 |
Strip whitespace (or other characters) from the end of a string (string)
|
|
hg@2
|
1156 |
setlocale ( int category, string locale [, string ...] )
|
|
hg@2
|
1157 |
Set locale information (string)
|
|
hg@2
|
1158 |
trim ( string str [, string charlist] )
|
|
hg@2
|
1159 |
Strip whitespace (or other characters) from the beginning and end of a string (string)
|
|
hg@2
|
1160 |
ucfirst ( string str )
|
|
hg@2
|
1161 |
Make a string's first character uppercase (string)
|
|
hg@2
|
1162 |
ucwords ( string str )
|
|
hg@2
|
1163 |
Uppercase the first character of each word in a string (string)
|
|
hg@2
|
1164 |
vprintf ( string format, array args )
|
|
hg@2
|
1165 |
Output a formatted string (int)
|
|
hg@2
|
1166 |
vsprintf ( string format, array args )
|
|
hg@2
|
1167 |
Return a formatted string (string)
|
|
hg@2
|
1168 |
wordwrap ( string str [, int width [, string break [, bool cut]]] )
|
|
hg@2
|
1169 |
Wraps a string to a given number of characters using a string break character (string)
|
|
hg@2
|
1170 |
base64_decode ( string encoded_data )
|
|
hg@2
|
1171 |
Decodes data encoded with MIME base64 (string)
|
|
hg@2
|
1172 |
base64_encode ( string data )
|
|
hg@2
|
1173 |
Encodes data with MIME base64 (string)
|
|
hg@2
|
1174 |
get_meta_tags ( string filename [, bool use_include_path] )
|
|
hg@2
|
1175 |
Extracts all meta tag content attributes from a file and returns an array (array)
|
|
hg@2
|
1176 |
parse_url ( string url )
|
|
hg@2
|
1177 |
Parse a URL and return its components (array)
|
|
hg@2
|
1178 |
rawurldecode ( string str )
|
|
hg@2
|
1179 |
Decode URL-encoded strings (string)
|
|
hg@2
|
1180 |
rawurlencode ( string str )
|
|
hg@2
|
1181 |
URL-encode according to RFC 1738 (string)
|
|
hg@2
|
1182 |
urldecode ( string str )
|
|
hg@2
|
1183 |
Decodes URL-encoded string (string)
|
|
hg@2
|
1184 |
urlencode ( string str )
|
|
hg@2
|
1185 |
URL-encodes string (string)
|
|
hg@2
|
1186 |
debug_zval_dump ( mixed variable )
|
|
hg@2
|
1187 |
Dumps a string representation of an internal zend value to output (void)
|
|
hg@2
|
1188 |
empty ( mixed var )
|
|
hg@2
|
1189 |
Determine whether a variable is empty (bool)
|
|
hg@2
|
1190 |
floatval ( mixed var )
|
|
hg@2
|
1191 |
Get float value of a variable (float)
|
|
hg@2
|
1192 |
get_defined_vars ( void )
|
|
hg@2
|
1193 |
Returns an array of all defined variables (array)
|
|
hg@2
|
1194 |
get_resource_type ( resource handle )
|
|
hg@2
|
1195 |
Returns the resource type (string)
|
|
hg@2
|
1196 |
gettype ( mixed var )
|
|
hg@2
|
1197 |
Get the type of a variable (string)
|
|
hg@2
|
1198 |
import_request_variables ( string types [, string prefix] )
|
|
hg@2
|
1199 |
Import GET/POST/Cookie variables into the global scope (bool)
|
|
hg@2
|
1200 |
intval ( mixed var [, int base] )
|
|
hg@2
|
1201 |
Get the integer value of a variable (int)
|
|
hg@2
|
1202 |
is_array ( mixed var )
|
|
hg@2
|
1203 |
Finds whether a variable is an array (bool)
|
|
hg@2
|
1204 |
is_bool ( mixed var )
|
|
hg@2
|
1205 |
Finds out whether a variable is a boolean (bool)
|
|
hg@2
|
1206 |
is_callable ( mixed var [, bool syntax_only [, string &callable_name]] )
|
|
hg@2
|
1207 |
Verify that the contents of a variable can be called as a function (bool)
|
|
hg@2
|
1208 |
is_float ( mixed var )
|
|
hg@2
|
1209 |
Finds whether a variable is a float (bool)
|
|
hg@2
|
1210 |
is_int ( mixed var )
|
|
hg@2
|
1211 |
Find whether a variable is an integer (bool)
|
|
hg@2
|
1212 |
is_null ( mixed var )
|
|
hg@2
|
1213 |
Finds whether a variable is NULL (bool)
|
|
hg@2
|
1214 |
is_numeric ( mixed var )
|
|
hg@2
|
1215 |
Finds whether a variable is a number or a numeric string (bool)
|
|
hg@2
|
1216 |
is_object ( mixed var )
|
|
hg@2
|
1217 |
Finds whether a variable is an object (bool)
|
|
hg@2
|
1218 |
is_resource ( mixed var )
|
|
hg@2
|
1219 |
Finds whether a variable is a resource (bool)
|
|
hg@2
|
1220 |
is_scalar ( mixed var )
|
|
hg@2
|
1221 |
Finds whether a variable is a scalar (bool)
|
|
hg@2
|
1222 |
is_string ( mixed var )
|
|
hg@2
|
1223 |
Finds whether a variable is a string (bool)
|
|
hg@2
|
1224 |
isset ( mixed var [, mixed var [, ...]] )
|
|
hg@2
|
1225 |
Determine whether a variable is set (bool)
|
|
hg@2
|
1226 |
print_r ( mixed expression [, bool return] )
|
|
hg@2
|
1227 |
Prints human-readable information about a variable (bool)
|
|
hg@2
|
1228 |
serialize ( mixed value )
|
|
hg@2
|
1229 |
Generates a storable representation of a value (string)
|
|
hg@2
|
1230 |
settype ( mixed &var, string type )
|
|
hg@2
|
1231 |
Set the type of a variable (bool)
|
|
hg@2
|
1232 |
strval ( mixed var )
|
|
hg@2
|
1233 |
Get string value of a variable (string)
|
|
hg@2
|
1234 |
unserialize ( string str )
|
|
hg@2
|
1235 |
Creates a PHP value from a stored representation (mixed)
|
|
hg@2
|
1236 |
unset ( mixed var [, mixed var [, mixed ...]] )
|
|
hg@2
|
1237 |
Unset a given variable (void)
|
|
hg@2
|
1238 |
var_dump ( mixed expression [, mixed expression [, ...]] )
|
|
hg@2
|
1239 |
Dumps information about a variable (void)
|
|
hg@2
|
1240 |
var_export ( mixed expression [, bool return] )
|
|
hg@2
|
1241 |
Outputs or returns a parsable string representation of a variable (mixed)
|
|
hg@2
|
1242 |
|
|
hg@2
|
1243 |
|
|
hg@2
|
1244 |
|
|
hg@2
|
1245 |
|
|
hg@2
|
1246 |
|