|
Unicode-Compatible Functions
|
| type |
function |
params |
suffix |
file |
| void |
display_disabled_function |
(void) |
U
|
ZendEngine2/zend_API.c |
| string |
zend_version |
(void) |
U
|
ZendEngine2/zend_builtin_functions.c |
| int |
func_num_args |
(void) |
U
|
ZendEngine2/zend_builtin_functions.c |
| mixed |
func_get_arg |
(int arg_num) |
U
|
ZendEngine2/zend_builtin_functions.c |
| array |
func_get_args |
() |
U
|
ZendEngine2/zend_builtin_functions.c |
| int |
strlen |
(string str) |
U
|
ZendEngine2/zend_builtin_functions.c |
| int |
strcmp |
(string str1, string str2) |
U
|
ZendEngine2/zend_builtin_functions.c |
| int |
strncmp |
(string str1, string str2, int len) |
U
|
ZendEngine2/zend_builtin_functions.c |
| int |
strcasecmp |
(string str1, string str2) |
U
|
ZendEngine2/zend_builtin_functions.c |
| int |
strncasecmp |
(string str1, string str2, int len) |
U
|
ZendEngine2/zend_builtin_functions.c |
| array |
each |
(array arr) |
U
|
ZendEngine2/zend_builtin_functions.c |
| int |
error_reporting |
([int new_error_level]) |
U
|
ZendEngine2/zend_builtin_functions.c |
| bool |
define |
(string constant_name, mixed value, boolean case_sensitive=true) |
U
|
ZendEngine2/zend_builtin_functions.c |
| bool |
defined |
(string constant_name) |
U
|
ZendEngine2/zend_builtin_functions.c |
| string |
get_class |
([object object]) |
U
|
ZendEngine2/zend_builtin_functions.c |
| string |
get_called_class |
() |
U
|
ZendEngine2/zend_builtin_functions.c |
| string |
get_parent_class |
([mixed object]) |
U
|
ZendEngine2/zend_builtin_functions.c |
| bool |
is_subclass_of |
(object object, string class_name) |
U
|
ZendEngine2/zend_builtin_functions.c |
| bool |
is_a |
(object object, string class_name) |
U
|
ZendEngine2/zend_builtin_functions.c |
| array |
get_class_vars |
(string class_name) |
U
|
ZendEngine2/zend_builtin_functions.c |
| array |
get_object_vars |
(object obj) |
U
|
ZendEngine2/zend_builtin_functions.c |
| array |
get_class_methods |
(mixed class) |
U
|
ZendEngine2/zend_builtin_functions.c |
| bool |
method_exists |
(object object, string method) |
U
|
ZendEngine2/zend_builtin_functions.c |
| bool |
property_exists |
(mixed object_or_class, string property_name) |
U
|
ZendEngine2/zend_builtin_functions.c |
| bool |
class_exists |
(string classname [, bool autoload]) |
U
|
ZendEngine2/zend_builtin_functions.c |
| bool |
interface_exists |
(string classname [, bool autoload]) |
U
|
ZendEngine2/zend_builtin_functions.c |
| bool |
function_exists |
(string function_name) |
U
|
ZendEngine2/zend_builtin_functions.c |
| void |
leak |
(int num_bytes=3) |
U
|
ZendEngine2/zend_builtin_functions.c |
| void |
crash |
(void) |
U
|
ZendEngine2/zend_builtin_functions.c |
| array |
get_included_files |
(void) |
U
|
ZendEngine2/zend_builtin_functions.c |
| void |
trigger_error |
(string messsage [, int error_type]) |
U
|
ZendEngine2/zend_builtin_functions.c |
| string |
set_error_handler |
(string error_handler [, int error_types]) |
U
|
ZendEngine2/zend_builtin_functions.c |
| void |
restore_error_handler |
(void) |
U
|
ZendEngine2/zend_builtin_functions.c |
| string |
set_exception_handler |
(callable exception_handler) |
U
|
ZendEngine2/zend_builtin_functions.c |
| void |
restore_exception_handler |
(void) |
U
|
ZendEngine2/zend_builtin_functions.c |
| array |
get_declared_classes |
() |
U
|
ZendEngine2/zend_builtin_functions.c |
| array |
get_declared_interfaces |
() |
U
|
ZendEngine2/zend_builtin_functions.c |
| array |
get_defined_functions |
(void) |
U
|
ZendEngine2/zend_builtin_functions.c |
| array |
get_defined_vars |
(void) |
U
|
ZendEngine2/zend_builtin_functions.c |
| string |
create_function |
(string args, string code) |
U
|
ZendEngine2/zend_builtin_functions.c |
| void |
zend_test_func |
(mixed arg1, mixed arg2) |
U
|
ZendEngine2/zend_builtin_functions.c |
| int |
zend_thread_id |
(void) |
U
|
ZendEngine2/zend_builtin_functions.c |
| string |
get_resource_type |
(resource res) |
U
|
ZendEngine2/zend_builtin_functions.c |
| array |
get_loaded_extensions |
([bool zend_extensions]) |
U
|
ZendEngine2/zend_builtin_functions.c |
| array |
get_defined_constants |
([bool categorize]) |
U
|
ZendEngine2/zend_builtin_functions.c |
| void |
debug_print_backtrace |
(void) |
U |
ZendEngine2/zend_builtin_functions.c |
| array |
debug_backtrace |
([bool provide_object]) |
U
|
ZendEngine2/zend_builtin_functions.c |
| bool |
extension_loaded |
(string extension_name) |
U
|
ZendEngine2/zend_builtin_functions.c |
| array |
get_extension_funcs |
(string extension_name) |
U
|
ZendEngine2/zend_builtin_functions.c |
| int |
gc_collect_cycles |
(void) |
U
|
ZendEngine2/zend_builtin_functions.c |
| void |
gc_enabled |
(void) |
U
|
ZendEngine2/zend_builtin_functions.c |
| void |
gc_enable |
(void) |
U
|
ZendEngine2/zend_builtin_functions.c |
| void |
gc_disable |
(void) |
U
|
ZendEngine2/zend_builtin_functions.c |
| Exception |
Exception::__clone |
() |
U
|
ZendEngine2/zend_exceptions.c |
| string |
Exception::getFile |
() |
U
|
ZendEngine2/zend_exceptions.c |
| int |
Exception::getLine |
() |
U
|
ZendEngine2/zend_exceptions.c |
| string |
Exception::getMessage |
() |
U
|
ZendEngine2/zend_exceptions.c |
| int |
Exception::getCode |
() |
U
|
ZendEngine2/zend_exceptions.c |
| array |
Exception::getTrace |
() |
U
|
ZendEngine2/zend_exceptions.c |
| int |
ErrorException::getSeverity |
() |
U
|
ZendEngine2/zend_exceptions.c |
| string |
Exception::getTraceAsString |
() |
U
|
ZendEngine2/zend_exceptions.c |
| string |
Exception::__toString |
() |
U
|
ZendEngine2/zend_exceptions.c |
| string |
bcadd |
(string left_operand, string right_operand [, int scale]) |
U
|
php-src/ext/bcmath/bcmath.c |
| string |
bcsub |
(string left_operand, string right_operand [, int scale]) |
U
|
php-src/ext/bcmath/bcmath.c |
| string |
bcmul |
(string left_operand, string right_operand [, int scale]) |
U
|
php-src/ext/bcmath/bcmath.c |
| string |
bcdiv |
(string left_operand, string right_operand [, int scale]) |
U
|
php-src/ext/bcmath/bcmath.c |
| string |
bcmod |
(string left_operand, string right_operand) |
U
|
php-src/ext/bcmath/bcmath.c |
| string |
bcpowmod |
(string x, string y, string mod [, int scale]) |
U
|
php-src/ext/bcmath/bcmath.c |
| string |
bcpow |
(string x, string y [, int scale]) |
U
|
php-src/ext/bcmath/bcmath.c |
| string |
bcsqrt |
(string operand [, int scale]) |
U
|
php-src/ext/bcmath/bcmath.c |
| int |
bccomp |
(string left_operand, string right_operand [, int scale]) |
U
|
php-src/ext/bcmath/bcmath.c |
| bool |
bcscale |
(int scale) |
U
|
php-src/ext/bcmath/bcmath.c |
| string |
bzread |
(resource bz[, int length]) |
U
|
php-src/ext/bz2/bz2.c |
| resource |
bzopen |
(string|int file|fp, string mode) |
U
|
php-src/ext/bz2/bz2.c |
| int |
bzerrno |
(resource bz) |
U
|
php-src/ext/bz2/bz2.c |
| string |
bzerrstr |
(resource bz) |
U
|
php-src/ext/bz2/bz2.c |
| array |
bzerror |
(resource bz) |
U
|
php-src/ext/bz2/bz2.c |
| string |
bzcompress |
(string source [, int blocksize100k [, int workfactor]]) |
U
|
php-src/ext/bz2/bz2.c |
| string |
bzdecompress |
(string source [, int small]) |
U
|
php-src/ext/bz2/bz2.c |
| int |
unixtojd |
([int timestamp]) |
U
|
php-src/ext/calendar/cal_unix.c |
| int |
jdtounix |
(int jday) |
U
|
php-src/ext/calendar/cal_unix.c |
| array |
cal_info |
([int calendar]) |
U
|
php-src/ext/calendar/calendar.c |
| int |
cal_days_in_month |
(int calendar, int month, int year) |
U
|
php-src/ext/calendar/calendar.c |
| int |
cal_to_jd |
(int calendar, int month, int day, int year) |
U
|
php-src/ext/calendar/calendar.c |
| array |
cal_from_jd |
(int jd, int calendar) |
U
|
php-src/ext/calendar/calendar.c |
| string |
jdtogregorian |
(int juliandaycount) |
U
|
php-src/ext/calendar/calendar.c |
| int |
gregoriantojd |
(int month, int day, int year) |
U
|
php-src/ext/calendar/calendar.c |
| string |
jdtojulian |
(int juliandaycount) |
U
|
php-src/ext/calendar/calendar.c |
| int |
juliantojd |
(int month, int day, int year) |
U
|
php-src/ext/calendar/calendar.c |
| string |
jdtojewish |
(int juliandaycount [, bool hebrew [, int fl]]) |
U
|
php-src/ext/calendar/calendar.c |
| int |
jewishtojd |
(int month, int day, int year) |
U
|
php-src/ext/calendar/calendar.c |
| string |
jdtofrench |
(int juliandaycount) |
U
|
php-src/ext/calendar/calendar.c |
| int |
frenchtojd |
(int month, int day, int year) |
U
|
php-src/ext/calendar/calendar.c |
| mixed |
jddayofweek |
(int juliandaycount [, int mode]) |
U
|
php-src/ext/calendar/calendar.c |
| string |
jdmonthname |
(int juliandaycount, int mode) |
U
|
php-src/ext/calendar/calendar.c |
| int |
easter_date |
([int year]) |
U
|
php-src/ext/calendar/easter.c |
| int |
easter_days |
([int year, [int method]]) |
U
|
php-src/ext/calendar/easter.c |
| bool |
ctype_alnum |
(mixed c) |
U
|
php-src/ext/ctype/ctype.c |
| bool |
ctype_alpha |
(mixed c) |
U
|
php-src/ext/ctype/ctype.c |
| bool |
ctype_cntrl |
(mixed c) |
U
|
php-src/ext/ctype/ctype.c |
| bool |
ctype_digit |
(mixed c) |
U
|
php-src/ext/ctype/ctype.c |
| bool |
ctype_lower |
(mixed c) |
U
|
php-src/ext/ctype/ctype.c |
| bool |
ctype_graph |
(mixed c) |
U
|
php-src/ext/ctype/ctype.c |
| bool |
ctype_print |
(mixed c) |
U
|
php-src/ext/ctype/ctype.c |
| bool |
ctype_punct |
(mixed c) |
U
|
php-src/ext/ctype/ctype.c |
| bool |
ctype_space |
(mixed c) |
U
|
php-src/ext/ctype/ctype.c |
| bool |
ctype_upper |
(mixed c) |
U
|
php-src/ext/ctype/ctype.c |
| bool |
ctype_xdigit |
(mixed c) |
U
|
php-src/ext/ctype/ctype.c |
| array |
curl_version |
([int version]) |
U
|
php-src/ext/curl/interface.c |
| resource |
curl_init |
([string url]) |
U
|
php-src/ext/curl/interface.c |
| resource |
curl_copy_handle |
(resource ch) |
U
|
php-src/ext/curl/interface.c |
| bool |
curl_setopt |
(resource ch, int option, mixed value) |
U
|
php-src/ext/curl/interface.c |
| bool |
curl_setopt_array |
(resource ch, array options) |
U
|
php-src/ext/curl/interface.c |
| bool |
curl_exec |
(resource ch) |
U
|
php-src/ext/curl/interface.c |
| mixed |
curl_getinfo |
(resource ch [, int option]) |
U
|
php-src/ext/curl/interface.c |
| string |
curl_error |
(resource ch) |
U
|
php-src/ext/curl/interface.c |
| int |
curl_errno |
(resource ch) |
U
|
php-src/ext/curl/interface.c |
| void |
curl_close |
(resource ch) |
U
|
php-src/ext/curl/interface.c |
| resource |
curl_multi_init |
(void) |
U
|
php-src/ext/curl/multi.c |
| int |
curl_multi_add_handle |
(resource mh, resource ch) |
U
|
php-src/ext/curl/multi.c |
| int |
curl_multi_remove_handle |
(resource mh, resource ch) |
U
|
php-src/ext/curl/multi.c |
| int |
curl_multi_select |
(resource mh[, double timeout]) |
U
|
php-src/ext/curl/multi.c |
| int |
curl_multi_exec |
(resource mh, int &still_running) |
U
|
php-src/ext/curl/multi.c |
| string |
curl_multi_getcontent |
(resource ch) |
U
|
php-src/ext/curl/multi.c |
| array |
curl_multi_info_read |
(resource mh [, long msgs_in_queue]) |
U
|
php-src/ext/curl/multi.c |
| void |
curl_multi_close |
(resource mh) |
U
|
php-src/ext/curl/multi.c |
| string |
date |
(string format [, long timestamp]) |
U
|
php-src/ext/date/php_date.c |
| string |
gmdate |
(string format [, long timestamp]) |
U
|
php-src/ext/date/php_date.c |
| int |
idate |
(string format [, int timestamp]) |
U
|
php-src/ext/date/php_date.c |
| int |
strtotime |
(string time [, int now ]) |
U
|
php-src/ext/date/php_date.c |
| int |
mktime |
([int hour [, int min [, int sec [, int mon [, int day [, int year]]]]]]) |
U
|
php-src/ext/date/php_date.c |
| int |
gmmktime |
([int hour [, int min [, int sec [, int mon [, int day [, int year]]]]]]) |
U
|
php-src/ext/date/php_date.c |
| bool |
checkdate |
(int month, int day, int year) |
U
|
php-src/ext/date/php_date.c |
| string |
strftime |
(string format [, int timestamp]) |
U
|
php-src/ext/date/php_date.c |
| string |
gmstrftime |
(string format [, int timestamp]) |
U
|
php-src/ext/date/php_date.c |
| int |
time |
(void) |
U
|
php-src/ext/date/php_date.c |
| array |
localtime |
([int timestamp [, bool associative_array]]) |
U
|
php-src/ext/date/php_date.c |
| array |
getdate |
([int timestamp]) |
U
|
php-src/ext/date/php_date.c |
| DateTime |
date_create |
([string time[, DateTimeZone object]]) |
U
|
php-src/ext/date/php_date.c |
| array |
date_get_last_errors |
() |
U
|
php-src/ext/date/php_date.c |
| array |
date_parse |
(string date) |
U
|
php-src/ext/date/php_date.c |
| array |
date_parse_from_format |
(string format, string date) |
U
|
php-src/ext/date/php_date.c |
| string |
date_format |
(DateTime object, string format) |
U
|
php-src/ext/date/php_date.c |
| string |
date_format_locale |
(DateTime object, string format) |
U
|
php-src/ext/date/php_date.c |
| DateTime |
date_modify |
(DateTime object, string modify) |
U
|
php-src/ext/date/php_date.c |
| DateTime |
date_add |
(DateTime object, DateInterval interval) |
U
|
php-src/ext/date/php_date.c |
| DateTime |
date_sub |
(DateTime object, DateInterval interval) |
U
|
php-src/ext/date/php_date.c |
| DateTimeZone |
date_timezone_get |
(DateTime object) |
U
|
php-src/ext/date/php_date.c |
| DateTimeZone |
date_timezone_set |
(DateTime object, DateTimeZone object) |
U
|
php-src/ext/date/php_date.c |
| long |
date_offset_get |
(DateTime object) |
U
|
php-src/ext/date/php_date.c |
| DateTime |
date_time_set |
(DateTime object, long hour, long minute[, long second]) |
U
|
php-src/ext/date/php_date.c |
| DateTime |
date_date_set |
(DateTime object, long year, long month, long day) |
U
|
php-src/ext/date/php_date.c |
| DateTime |
date_isodate_set |
(DateTime object, long year, long week[, long day]) |
U
|
php-src/ext/date/php_date.c |
| DateTime |
date_timestamp_set |
(DateTime object, long unixTimestamp) |
U
|
php-src/ext/date/php_date.c |
| long |
date_timestamp_get |
(DateTime object) |
U
|
php-src/ext/date/php_date.c |
| DateInterval |
date_diff |
(DateTime object [, bool absolute]) |
U
|
php-src/ext/date/php_date.c |
| DateTimeZone |
timezone_open |
(string timezone) |
U
|
php-src/ext/date/php_date.c |
| string |
timezone_name_get |
(DateTimeZone object) |
U
|
php-src/ext/date/php_date.c |
| string |
timezone_name_from_abbr |
(string abbr[, long gmtOffset[, long isdst]]) |
U
|
php-src/ext/date/php_date.c |
| long |
timezone_offset_get |
(DateTimeZone object, DateTime object) |
U
|
php-src/ext/date/php_date.c |
| array |
timezone_transitions_get |
(DateTimeZone object [, long timestamp_begin [, long timestamp_end ]]) |
U
|
php-src/ext/date/php_date.c |
| string |
date_interval_format |
(DateInterval object, string format) |
U
|
php-src/ext/date/php_date.c |
| array |
timezone_identifiers_list |
([long what[, string country]]) |
U
|
php-src/ext/date/php_date.c |
| array |
timezone_abbreviations_list |
() |
U
|
php-src/ext/date/php_date.c |
| bool |
date_default_timezone_set |
(string timezone_identifier) |
U
|
php-src/ext/date/php_date.c |
| string |
date_default_timezone_get |
() |
U
|
php-src/ext/date/php_date.c |
| mixed |
date_sunrise |
(mixed time [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]]) |
U
|
php-src/ext/date/php_date.c |
| mixed |
date_sunset |
(mixed time [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]]) |
U
|
php-src/ext/date/php_date.c |
| array |
date_sun_info |
(long time, float latitude, float longitude) |
U
|
php-src/ext/date/php_date.c |
| void |
DOMAttr::__construct |
(string name, [string value]) |
U |
php-src/ext/dom/attr.c |
| boolean |
dom_attr_is_id |
() |
U
|
php-src/ext/dom/attr.c |
| void |
DOMCdataSection::__construct |
(string value) |
U |
php-src/ext/dom/cdatasection.c |
| string |
dom_characterdata_substring_data |
(int offset, int count) |
U
|
php-src/ext/dom/characterdata.c |
| void |
dom_characterdata_append_data |
(string arg) |
U
|
php-src/ext/dom/characterdata.c |
| void |
dom_characterdata_insert_data |
(int offset, string arg) |
U
|
php-src/ext/dom/characterdata.c |
| void |
dom_characterdata_delete_data |
(int offset, int count) |
U
|
php-src/ext/dom/characterdata.c |
| void |
dom_characterdata_replace_data |
(int offset, int count, string arg) |
U
|
php-src/ext/dom/characterdata.c |
| void |
DOMComment::__construct |
([string value]) |
U |
php-src/ext/dom/comment.c |
| DOMElement |
dom_document_create_element |
(string tagName [, string value]) |
U
|
php-src/ext/dom/document.c |
| DOMDocumentFragment |
dom_document_create_document_fragment |
() |
U
|
php-src/ext/dom/document.c |
| DOMText |
dom_document_create_text_node |
(string data) |
U
|
php-src/ext/dom/document.c |
| DOMComment |
dom_document_create_comment |
(string data) |
U
|
php-src/ext/dom/document.c |
| DOMCdataSection |
dom_document_create_cdatasection |
(string data) |
U
|
php-src/ext/dom/document.c |
| DOMProcessingInstruction |
dom_document_create_processing_instruction |
(string target, string data) |
U
|
php-src/ext/dom/document.c |
| DOMAttr |
dom_document_create_attribute |
(string name) |
U
|
php-src/ext/dom/document.c |
| DOMEntityReference |
dom_document_create_entity_reference |
(string name) |
U
|
php-src/ext/dom/document.c |
| DOMNodeList |
dom_document_get_elements_by_tag_name |
(string tagname) |
U
|
php-src/ext/dom/document.c |
| DOMNode |
dom_document_import_node |
(DOMNode importedNode, boolean deep) |
U
|
php-src/ext/dom/document.c |
| DOMElement |
dom_document_create_element_ns |
(string namespaceURI, string qualifiedName [,string value]) |
U
|
php-src/ext/dom/document.c |
| DOMAttr |
dom_document_create_attribute_ns |
(string namespaceURI, string qualifiedName) |
U
|
php-src/ext/dom/document.c |
| DOMNodeList |
dom_document_get_elements_by_tag_name_ns |
(string namespaceURI, string localName) |
U
|
php-src/ext/dom/document.c |
| DOMElement |
dom_document_get_element_by_id |
(string elementId) |
U
|
php-src/ext/dom/document.c |
| DOMNode |
dom_document_adopt_node |
(DOMNode source) |
U
|
php-src/ext/dom/document.c |
| void |
dom_document_normalize_document |
() |
U
|
php-src/ext/dom/document.c |
| DOMNode |
dom_document_rename_node |
(node n, string namespaceURI, string qualifiedName) |
U
|
php-src/ext/dom/document.c |
| void |
DOMDocument::__construct |
([string version], [string encoding]) |
U |
php-src/ext/dom/document.c |
| DOMNode |
dom_document_load |
(string source [, int options]) |
U
|
php-src/ext/dom/document.c |
| DOMNode |
dom_document_loadxml |
(string source [, int options]) |
U
|
php-src/ext/dom/document.c |
| int |
dom_document_save |
(string file) |
U
|
php-src/ext/dom/document.c |
| string |
dom_document_savexml |
([node n]) |
U
|
php-src/ext/dom/document.c |
| int |
dom_document_xinclude |
([int options]) |
U
|
php-src/ext/dom/document.c |
| boolean |
dom_document_validate |
() |
U
|
php-src/ext/dom/document.c |
| boolean |
dom_document_schema_validate_file |
(string filename) |
U |
php-src/ext/dom/document.c |
| boolean |
dom_document_schema_validate |
(string source) |
U |
php-src/ext/dom/document.c |
| boolean |
dom_document_relaxNG_validate_file |
(string filename) |
U |
php-src/ext/dom/document.c |
| boolean |
dom_document_relaxNG_validate_xml |
(string source) |
U |
php-src/ext/dom/document.c |
| DOMNode |
dom_document_load_html_file |
(string source) |
U
|
php-src/ext/dom/document.c |
| DOMNode |
dom_document_load_html |
(string source) |
U
|
php-src/ext/dom/document.c |
| int |
dom_document_save_html_file |
(string file) |
U
|
php-src/ext/dom/document.c |
| string |
dom_document_save_html |
() |
U
|
php-src/ext/dom/document.c |
| boolean |
DOMDocument::registerNodeClass |
(string baseclass, string extendedclass) |
U
|
php-src/ext/dom/document.c |
| void |
DOMDocumentFragment::__construct |
() |
U |
php-src/ext/dom/documentfragment.c |
| void |
DOMDocumentFragment::appendXML |
(string data) |
U |
php-src/ext/dom/documentfragment.c |
| dom_void |
dom_domconfiguration_set_parameter |
(string name, domuserdata value) |
U
|
php-src/ext/dom/domconfiguration.c |
| domdomuserdata |
dom_domconfiguration_get_parameter |
(string name) |
U
|
php-src/ext/dom/domconfiguration.c |
| boolean |
dom_domconfiguration_can_set_parameter |
(string name, domuserdata value) |
U
|
php-src/ext/dom/domconfiguration.c |
| dom_boolean |
dom_domerrorhandler_handle_error |
(domerror error) |
U
|
php-src/ext/dom/domerrorhandler.c |
| DOMDocumentType |
dom_domimplementation_create_document_type |
(string qualifiedName, string publicId, string systemId) |
U
|
php-src/ext/dom/domimplementation.c |
| DOMDocument |
dom_domimplementation_create_document |
(string namespaceURI, string qualifiedName, DOMDocumentType doctype) |
U
|
php-src/ext/dom/domimplementation.c |
| DOMNode |
dom_domimplementation_get_feature |
(string feature, string version) |
U
|
php-src/ext/dom/domimplementation.c |
| domdomimplementation |
dom_domimplementationlist_item |
(int index) |
U
|
php-src/ext/dom/domimplementationlist.c |
| domdomimplementation |
dom_domimplementationsource_get_domimplementation |
(string features) |
U
|
php-src/ext/dom/domimplementationsource.c |
| domimplementationlist |
dom_domimplementationsource_get_domimplementations |
(string features) |
U
|
php-src/ext/dom/domimplementationsource.c |
| domstring |
dom_domstringlist_item |
(int index) |
U
|
php-src/ext/dom/domstringlist.c |
| void |
DOMElement::__construct |
(string name, [string value], [string uri]) |
U |
php-src/ext/dom/element.c |
| string |
dom_element_get_attribute |
(string name) |
U
|
php-src/ext/dom/element.c |
| void |
dom_element_set_attribute |
(string name, string value) |
U
|
php-src/ext/dom/element.c |
| void |
dom_element_remove_attribute |
(string name) |
U
|
php-src/ext/dom/element.c |
| DOMAttr |
dom_element_get_attribute_node |
(string name) |
U
|
php-src/ext/dom/element.c |
| DOMAttr |
dom_element_set_attribute_node |
(DOMAttr newAttr) |
U
|
php-src/ext/dom/element.c |
| DOMAttr |
dom_element_remove_attribute_node |
(DOMAttr oldAttr) |
U
|
php-src/ext/dom/element.c |
| DOMNodeList |
dom_element_get_elements_by_tag_name |
(string name) |
U
|
php-src/ext/dom/element.c |
| string |
dom_element_get_attribute_ns |
(string namespaceURI, string localName) |
U
|
php-src/ext/dom/element.c |
| void |
dom_element_set_attribute_ns |
(string namespaceURI, string qualifiedName, string value) |
U
|
php-src/ext/dom/element.c |
| void |
dom_element_remove_attribute_ns |
(string namespaceURI, string localName) |
U
|
php-src/ext/dom/element.c |
| DOMAttr |
dom_element_get_attribute_node_ns |
(string namespaceURI, string localName) |
U
|
php-src/ext/dom/element.c |
| DOMAttr |
dom_element_set_attribute_node_ns |
(DOMAttr newAttr) |
U
|
php-src/ext/dom/element.c |
| DOMNodeList |
dom_element_get_elements_by_tag_name_ns |
(string namespaceURI, string localName) |
U
|
php-src/ext/dom/element.c |
| boolean |
dom_element_has_attribute |
(string name) |
U
|
php-src/ext/dom/element.c |
| boolean |
dom_element_has_attribute_ns |
(string namespaceURI, string localName) |
U
|
php-src/ext/dom/element.c |
| void |
dom_element_set_id_attribute |
(string name, boolean isId) |
U
|
php-src/ext/dom/element.c |
| void |
dom_element_set_id_attribute_ns |
(string namespaceURI, string localName, boolean isId) |
U
|
php-src/ext/dom/element.c |
| void |
dom_element_set_id_attribute_node |
(attr idAttr, boolean isId) |
U
|
php-src/ext/dom/element.c |
| void |
DOMEntityReference::__construct |
(string name) |
U |
php-src/ext/dom/entityreference.c |
| DOMNode |
dom_namednodemap_get_named_item |
(string name) |
U
|
php-src/ext/dom/namednodemap.c |
| DOMNode |
dom_namednodemap_set_named_item |
(DOMNode arg) |
U
|
php-src/ext/dom/namednodemap.c |
| DOMNode |
dom_namednodemap_remove_named_item |
(string name) |
U
|
php-src/ext/dom/namednodemap.c |
| DOMNode |
dom_namednodemap_item |
(int index) |
U
|
php-src/ext/dom/namednodemap.c |
| DOMNode |
dom_namednodemap_get_named_item_ns |
(string namespaceURI, string localName) |
U
|
php-src/ext/dom/namednodemap.c |
| DOMNode |
dom_namednodemap_set_named_item_ns |
(DOMNode arg) |
U
|
php-src/ext/dom/namednodemap.c |
| DOMNode |
dom_namednodemap_remove_named_item_ns |
(string namespaceURI, string localName) |
U
|
php-src/ext/dom/namednodemap.c |
| string |
dom_namelist_get_name |
(int index) |
U
|
php-src/ext/dom/namelist.c |
| string |
dom_namelist_get_namespace_uri |
(int index) |
U
|
php-src/ext/dom/namelist.c |
| domnode |
dom_node_insert_before |
(DomNode newChild, DomNode refChild) |
U
|
php-src/ext/dom/node.c |
| DomNode |
dom_node_replace_child |
(DomNode newChild, DomNode oldChild) |
U
|
php-src/ext/dom/node.c |
| DomNode |
dom_node_remove_child |
(DomNode oldChild) |
U
|
php-src/ext/dom/node.c |
| DomNode |
dom_node_append_child |
(DomNode newChild) |
U
|
php-src/ext/dom/node.c |
| boolean |
dom_node_has_child_nodes |
() |
U
|
php-src/ext/dom/node.c |
| DomNode |
dom_node_clone_node |
(boolean deep) |
U
|
php-src/ext/dom/node.c |
| void |
dom_node_normalize |
() |
U
|
php-src/ext/dom/node.c |
| boolean |
dom_node_has_attributes |
() |
U
|
php-src/ext/dom/node.c |
| short |
dom_node_compare_document_position |
(DomNode other) |
U
|
php-src/ext/dom/node.c |
| boolean |
dom_node_is_same_node |
(DomNode other) |
U
|
php-src/ext/dom/node.c |
| string |
dom_node_lookup_prefix |
(string namespaceURI) |
U
|
php-src/ext/dom/node.c |
| boolean |
dom_node_is_default_namespace |
(string namespaceURI) |
U
|
php-src/ext/dom/node.c |
| string |
dom_node_lookup_namespace_uri |
(string prefix) |
U
|
php-src/ext/dom/node.c |
| boolean |
dom_node_is_equal_node |
(DomNode arg) |
U
|
php-src/ext/dom/node.c |
| DomNode |
dom_node_get_feature |
(string feature, string version) |
U
|
php-src/ext/dom/node.c |
| DomUserData |
dom_node_set_user_data |
(string key, DomUserData data, userdatahandler handler) |
U
|
php-src/ext/dom/node.c |
| DomUserData |
dom_node_get_user_data |
(string key) |
U
|
php-src/ext/dom/node.c |
| string |
DOMNode::C14N |
([bool exclusive [, bool with_comments [, array xpath [, array ns_prefixes]]]]) |
U
|
php-src/ext/dom/node.c |
| int |
DOMNode::C14NFile |
(string uri [, bool exclusive [, bool with_comments [, array xpath [, array ns_prefixes]]]]) |
U
|
php-src/ext/dom/node.c |
| int |
DOMNode::getNodePath |
() |
U
|
php-src/ext/dom/node.c |
| DOMNode |
dom_nodelist_item |
(int index) |
U
|
php-src/ext/dom/nodelist.c |
| somNode |
dom_import_simplexml |
(sxeobject node) |
U
|
php-src/ext/dom/php_dom.c |
| void |
DOMProcessingInstruction::__construct |
(string name, [string value]) |
U |
php-src/ext/dom/processinginstruction.c |
| int |
dom_string_extend_find_offset16 |
(int offset32) |
U
|
php-src/ext/dom/string_extend.c |
| int |
dom_string_extend_find_offset32 |
(int offset16) |
U
|
php-src/ext/dom/string_extend.c |
| void |
DOMText::__construct |
([string value]) |
U |
php-src/ext/dom/text.c |
| DOMText |
dom_text_split_text |
(int offset) |
U
|
php-src/ext/dom/text.c |
| boolean |
dom_text_is_whitespace_in_element_content |
() |
U
|
php-src/ext/dom/text.c |
| DOMText |
dom_text_replace_whole_text |
(string content) |
U
|
php-src/ext/dom/text.c |
| dom_void |
dom_userdatahandler_handle |
(short operation, string key, domobject data, node src, node dst) |
U
|
php-src/ext/dom/userdatahandler.c |
| void |
DOMXPath::__construct |
(DOMDocument doc) |
U |
php-src/ext/dom/xpath.c |
| boolean |
dom_xpath_register_ns |
(string prefix, string uri) |
U |
php-src/ext/dom/xpath.c |
| DOMNodeList |
dom_xpath_query |
(string expr [,DOMNode context]) |
U |
php-src/ext/dom/xpath.c |
| mixed |
dom_xpath_evaluate |
(string expr [,DOMNode context]) |
U |
php-src/ext/dom/xpath.c |
| void |
dom_xpath_register_php_functions |
() |
U |
php-src/ext/dom/xpath.c |
| string |
exif_tagname |
(long index) |
U
|
php-src/ext/exif/exif.c |
| string |
exif_thumbnail |
(string filename [, &width, &height [, &imagetype]]) |
U
|
php-src/ext/exif/exif.c |
| int |
exif_imagetype |
(string imagefile) |
U
|
php-src/ext/exif/exif.c |
| array |
gd_info |
() |
U
|
php-src/ext/gd/gd.c |
| int |
imageloadfont |
(string filename) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagesetstyle |
(resource im, array styles) |
U
|
php-src/ext/gd/gd.c |
| resource |
imagecreatetruecolor |
(int x_size, int y_size) |
U
|
php-src/ext/gd/gd.c |
| bool |
imageistruecolor |
(resource im) |
U
|
php-src/ext/gd/gd.c |
| void |
imagetruecolortopalette |
(resource im, bool ditherFlag, int colorsWanted) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagecolormatch |
(resource im1, resource im2) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagesetthickness |
(resource im, int thickness) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagefilledellipse |
(resource im, int cx, int cy, int w, int h, int color) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagefilledarc |
(resource im, int cx, int cy, int w, int h, int s, int e, int col, int style) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagealphablending |
(resource im, bool on) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagesavealpha |
(resource im, bool on) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagelayereffect |
(resource im, int effect) |
U
|
php-src/ext/gd/gd.c |
| int |
imagecolorallocatealpha |
(resource im, int red, int green, int blue, int alpha) |
U
|
php-src/ext/gd/gd.c |
| int |
imagecolorresolvealpha |
(resource im, int red, int green, int blue, int alpha) |
U
|
php-src/ext/gd/gd.c |
| int |
imagecolorclosestalpha |
(resource im, int red, int green, int blue, int alpha) |
U
|
php-src/ext/gd/gd.c |
| int |
imagecolorexactalpha |
(resource im, int red, int green, int blue, int alpha) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagecopyresampled |
(resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h) |
U
|
php-src/ext/gd/gd.c |
| resource |
imagerotate |
(resource src_im, float angle, int bgdcolor [, int ignoretransparent]) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagesettile |
(resource image, resource tile) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagesetbrush |
(resource image, resource brush) |
U
|
php-src/ext/gd/gd.c |
| resource |
imagecreate |
(int x_size, int y_size) |
U
|
php-src/ext/gd/gd.c |
| int |
imagetypes |
(void) |
U
|
php-src/ext/gd/gd.c |
| resource |
imagecreatefromstring |
(string image) |
U
|
php-src/ext/gd/gd.c |
| resource |
imagecreatefromgif |
(string filename) |
U
|
php-src/ext/gd/gd.c |
| resource |
imagecreatefromjpeg |
(string filename) |
U
|
php-src/ext/gd/gd.c |
| resource |
imagecreatefrompng |
(string filename) |
U
|
php-src/ext/gd/gd.c |
| resource |
imagecreatefromxbm |
(string filename) |
U
|
php-src/ext/gd/gd.c |
| resource |
imagecreatefromxpm |
(string filename) |
U
|
php-src/ext/gd/gd.c |
| resource |
imagecreatefromwbmp |
(string filename) |
U
|
php-src/ext/gd/gd.c |
| resource |
imagecreatefromgd |
(string filename) |
U
|
php-src/ext/gd/gd.c |
| resource |
imagecreatefromgd2 |
(string filename) |
U
|
php-src/ext/gd/gd.c |
| resource |
imagecreatefromgd2part |
(string filename, int srcX, int srcY, int width, int height) |
U
|
php-src/ext/gd/gd.c |
| int |
imagexbm |
(int im, string filename [, int foreground]) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagegif |
(resource im [, string filename]) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagepng |
(resource im [, string filename [, int quality]]) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagejpeg |
(resource im [, string filename [, int quality]]) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagewbmp |
(resource im [, string filename, [, int foreground]]) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagegd |
(resource im [, string filename]) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagegd2 |
(resource im [, string filename [, int chunk_size [, int type]]]) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagedestroy |
(resource im) |
U
|
php-src/ext/gd/gd.c |
| int |
imagecolorallocate |
(resource im, int red, int green, int blue) |
U
|
php-src/ext/gd/gd.c |
| void |
imagepalettecopy |
(resource dst, resource src) |
U
|
php-src/ext/gd/gd.c |
| int |
imagecolorat |
(resource im, int x, int y) |
U
|
php-src/ext/gd/gd.c |
| int |
imagecolorclosest |
(resource im, int red, int green, int blue) |
U
|
php-src/ext/gd/gd.c |
| int |
imagecolorclosesthwb |
(resource im, int red, int green, int blue) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagecolordeallocate |
(resource im, int index) |
U
|
php-src/ext/gd/gd.c |
| int |
imagecolorresolve |
(resource im, int red, int green, int blue) |
U
|
php-src/ext/gd/gd.c |
| int |
imagecolorexact |
(resource im, int red, int green, int blue) |
U
|
php-src/ext/gd/gd.c |
| void |
imagecolorset |
(resource im, int col, int red, int green, int blue) |
U
|
php-src/ext/gd/gd.c |
| array |
imagecolorsforindex |
(resource im, int col) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagegammacorrect |
(resource im, float inputgamma, float outputgamma) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagesetpixel |
(resource im, int x, int y, int col) |
U
|
php-src/ext/gd/gd.c |
| bool |
imageline |
(resource im, int x1, int y1, int x2, int y2, int col) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagedashedline |
(resource im, int x1, int y1, int x2, int y2, int col) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagerectangle |
(resource im, int x1, int y1, int x2, int y2, int col) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagefilledrectangle |
(resource im, int x1, int y1, int x2, int y2, int col) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagearc |
(resource im, int cx, int cy, int w, int h, int s, int e, int col) |
U
|
php-src/ext/gd/gd.c |
| bool |
imageellipse |
(resource im, int cx, int cy, int w, int h, int color) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagefilltoborder |
(resource im, int x, int y, int border, int col) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagefill |
(resource im, int x, int y, int col) |
U
|
php-src/ext/gd/gd.c |
| int |
imagecolorstotal |
(resource im) |
U
|
php-src/ext/gd/gd.c |
| int |
imagecolortransparent |
(resource im [, int col]) |
U
|
php-src/ext/gd/gd.c |
| int |
imageinterlace |
(resource im [, int interlace]) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagepolygon |
(resource im, array point, int num_points, int col) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagefilledpolygon |
(resource im, array point, int num_points, int col) |
U
|
php-src/ext/gd/gd.c |
| int |
imagefontwidth |
(int font) |
U
|
php-src/ext/gd/gd.c |
| int |
imagefontheight |
(int font) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagechar |
(resource im, int font, int x, int y, string c, int col) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagecharup |
(resource im, int font, int x, int y, string c, int col) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagestring |
(resource im, int font, int x, int y, string str, int col) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagestringup |
(resource im, int font, int x, int y, string str, int col) |
U
|
php-src/ext/gd/gd.c |
| bool |
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) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagecopymerge |
(resource src_im, resource dst_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagecopymergegray |
(resource src_im, resource dst_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagecopyresized |
(resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h) |
U
|
php-src/ext/gd/gd.c |
| int |
imagesx |
(resource im) |
U
|
php-src/ext/gd/gd.c |
| int |
imagesy |
(resource im) |
U
|
php-src/ext/gd/gd.c |
| array |
imageftbbox |
(float size, float angle, string font_file, string text [, array extrainfo]) |
U
|
php-src/ext/gd/gd.c |
| array |
imagefttext |
(resource im, float size, float angle, int x, int y, int col, string font_file, string text [, array extrainfo]) |
U
|
php-src/ext/gd/gd.c |
| array |
imagettfbbox |
(float size, float angle, string font_file, string text) |
U
|
php-src/ext/gd/gd.c |
| array |
imagettftext |
(resource im, float size, float angle, int x, int y, int col, string font_file, string text) |
U
|
php-src/ext/gd/gd.c |
| resource |
imagepsloadfont |
(string pathname) |
U
|
php-src/ext/gd/gd.c |
| int |
imagepscopyfont |
(int font_index) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagepsfreefont |
(resource font_index) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagepsencodefont |
(resource font_index, string filename) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagepsextendfont |
(resource font_index, float extend) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagepsslantfont |
(resource font_index, float slant) |
U
|
php-src/ext/gd/gd.c |
| bool |
image2wbmp |
(resource im [, string filename [, int threshold]]) |
U
|
php-src/ext/gd/gd.c |
| bool |
jpeg2wbmp |
(string f_org, string f_dest, int d_height, int d_width, int threshold) |
U
|
php-src/ext/gd/gd.c |
| bool |
png2wbmp |
(string f_org, string f_dest, int d_height, int d_width, int threshold) |
U
|
php-src/ext/gd/gd.c |
| bool |
imagefilter |
(resource src_im, int filtertype, [args] ) |
U
|
php-src/ext/gd/gd.c |
| resource |
imageconvolution |
(resource src_im, array matrix3x3, double div, double offset) |
U
|
php-src/ext/gd/gd.c |
| string |
textdomain |
(string domain) |
U
|
php-src/ext/gettext/gettext.c |
| binary |
gettext |
(string msgid) |
U
|
php-src/ext/gettext/gettext.c |
| binary |
dgettext |
(string domain_name, string msgid) |
U
|
php-src/ext/gettext/gettext.c |
| binary |
dcgettext |
(string domain_name, string msgid, int category) |
U
|
php-src/ext/gettext/gettext.c |
| string |
bindtextdomain |
(string domain_name, string dir) |
U
|
php-src/ext/gettext/gettext.c |
| binary |
ngettext |
(string msgid1, string msgid2, int count) |
U
|
php-src/ext/gettext/gettext.c |
| binary |
dngettext |
(string domain, string msgid1, string msgid2, int count) |
U
|
php-src/ext/gettext/gettext.c |
| binary |
dcngettext |
(string domain, string msgid1, string msgid2, int count, int category) |
U
|
php-src/ext/gettext/gettext.c |
| string |
bind_textdomain_codeset |
(string domain, string codeset) |
U
|
php-src/ext/gettext/gettext.c |
| resource |
gmp_init |
(mixed number [, int base]) |
U
|
php-src/ext/gmp/gmp.c |
| int |
gmp_intval |
(resource gmpnumber) |
U
|
php-src/ext/gmp/gmp.c |
| string |
gmp_strval |
(resource gmpnumber [, int base]) |
U
|
php-src/ext/gmp/gmp.c |
| resource |
gmp_add |
(resource a, resource b) |
U
|
php-src/ext/gmp/gmp.c |
| resource |
gmp_sub |
(resource a, resource b) |
U
|
php-src/ext/gmp/gmp.c |
| resource |
gmp_mul |
(resource a, resource b) |
U
|
php-src/ext/gmp/gmp.c |
| array |
gmp_div_qr |
(resource a, resource b [, int round]) |
U
|
php-src/ext/gmp/gmp.c |
| resource |
gmp_div_r |
(resource a, resource b [, int round]) |
U
|
php-src/ext/gmp/gmp.c |
| resource |
gmp_div_q |
(resource a, resource b [, int round]) |
U
|
php-src/ext/gmp/gmp.c |
| resource |
gmp_mod |
(resource a, resource b) |
U
|
php-src/ext/gmp/gmp.c |
| resource |
gmp_divexact |
(resource a, resource b) |
U
|
php-src/ext/gmp/gmp.c |
| resource |
gmp_neg |
(resource a) |
U
|
php-src/ext/gmp/gmp.c |
| resource |
gmp_abs |
(resource a) |
U
|
php-src/ext/gmp/gmp.c |
| resource |
gmp_fact |
(int a) |
U
|
php-src/ext/gmp/gmp.c |
| resource |
gmp_pow |
(resource base, int exp) |
U
|
php-src/ext/gmp/gmp.c |
| resource |
gmp_powm |
(resource base, resource exp, resource mod) |
U
|
php-src/ext/gmp/gmp.c |
| resource |
gmp_sqrt |
(resource a) |
U
|
php-src/ext/gmp/gmp.c |
| array |
gmp_sqrtrem |
(resource a) |
U
|
php-src/ext/gmp/gmp.c |
| bool |
gmp_perfect_square |
(resource a) |
U
|
php-src/ext/gmp/gmp.c |
| int |
gmp_prob_prime |
(resource a[, int reps]) |
U
|
php-src/ext/gmp/gmp.c |
| resource |
gmp_gcd |
(resource a, resource b) |
U
|
php-src/ext/gmp/gmp.c |
| array |
gmp_gcdext |
(resource a, resource b) |
U
|
php-src/ext/gmp/gmp.c |
| resource |
gmp_invert |
(resource a, resource b) |
U
|
php-src/ext/gmp/gmp.c |
| int |
gmp_jacobi |
(resource a, resource b) |
U
|
php-src/ext/gmp/gmp.c |
| int |
gmp_legendre |
(resource a, resource b) |
U
|
php-src/ext/gmp/gmp.c |
| int |
gmp_cmp |
(resource a, resource b) |
U
|
php-src/ext/gmp/gmp.c |
| int |
gmp_sign |
(resource a) |
U
|
php-src/ext/gmp/gmp.c |
| resource |
gmp_random |
([int limiter]) |
U
|
php-src/ext/gmp/gmp.c |
| resource |
gmp_and |
(resource a, resource b) |
U
|
php-src/ext/gmp/gmp.c |
| resource |
gmp_or |
(resource a, resource b) |
U
|
php-src/ext/gmp/gmp.c |
| resource |
gmp_com |
(resource a) |
U
|
php-src/ext/gmp/gmp.c |
| resource |
gmp_nextprime |
(resource a) |
U
|
php-src/ext/gmp/gmp.c |
| resource |
gmp_xor |
(resource a, resource b) |
U
|
php-src/ext/gmp/gmp.c |
| void |
gmp_setbit |
(resource &a, int index[, bool set_clear]) |
U
|
php-src/ext/gmp/gmp.c |
| void |
gmp_clrbit |
(resource &a, int index) |
U
|
php-src/ext/gmp/gmp.c |
| bool |
gmp_testbit |
(resource a, int index) |
U
|
php-src/ext/gmp/gmp.c |
| int |
gmp_popcount |
(resource a) |
U
|
php-src/ext/gmp/gmp.c |
| int |
gmp_hamdist |
(resource a, resource b) |
U
|
php-src/ext/gmp/gmp.c |
| int |
gmp_scan0 |
(resource a, int start) |
U
|
php-src/ext/gmp/gmp.c |
| int |
gmp_scan1 |
(resource a, int start) |
U
|
php-src/ext/gmp/gmp.c |
| string |
hash |
(string algo, string data[, bool raw_output = false]) |
U
|
php-src/ext/hash/hash.c |
| string |
hash_file |
(string algo, string filename[, bool raw_output = false]) |
U
|
php-src/ext/hash/hash.c |
| string |
hash_hmac |
(string algo, string data, string key[, bool raw_output = false]) |
U
|
php-src/ext/hash/hash.c |
| string |
hash_hmac_file |
(string algo, string filename, string key[, bool raw_output = false]) |
U
|
php-src/ext/hash/hash.c |
| resource |
hash_init |
(string algo[, int options, string key]) |
U
|
php-src/ext/hash/hash.c |
| bool |
hash_update |
(resource context, string data) |
U
|
php-src/ext/hash/hash.c |
| int |
hash_update_stream |
(resource context, resource handle[, integer length]) |
U
|
php-src/ext/hash/hash.c |
| bool |
hash_update_file |
(resource context, string filename[, resource context]) |
U
|
php-src/ext/hash/hash.c |
| string |
hash_final |
(resource context[, bool raw_output=false]) |
U
|
php-src/ext/hash/hash.c |
| resource |
hash_copy |
(resource context) |
U
|
php-src/ext/hash/hash.c |
| array |
hash_algos |
(void) |
U
|
php-src/ext/hash/hash.c |
| binary |
mhash |
(int hash, binary data [, binary key]) |
U
|
php-src/ext/hash/hash.c |
| string |
mhash_get_hash_name |
(int hash) |
U
|
php-src/ext/hash/hash.c |
| int |
mhash_count |
(void) |
U
|
php-src/ext/hash/hash.c |
| int |
mhash_get_block_size |
(int hash) |
U
|
php-src/ext/hash/hash.c |
| int |
iconv_strlen |
(string str [, string charset]) |
U
|
php-src/ext/iconv/iconv.c |
| string |
iconv_substr |
(string str, int offset, [int length, string charset]) |
U
|
php-src/ext/iconv/iconv.c |
| int |
iconv_strpos |
(string haystack, string needle [, int offset [, string charset]]) |
U
|
php-src/ext/iconv/iconv.c |
| string |
iconv |
(string in_charset, string out_charset, string str) |
U
|
php-src/ext/iconv/iconv.c |
| resource |
ldap_connect |
([string host [, int port [, string wallet [, string wallet_passwd [, int authmode]]]]]) |
U
|
php-src/ext/ldap/ldap.c |
| bool |
ldap_bind |
(resource link [, string dn [, string password]]) |
U
|
php-src/ext/ldap/ldap.c |
| bool |
ldap_sasl_bind |
(resource link [, string binddn [, string password [, string sasl_mech [, string sasl_realm [, string sasl_authc_id [, string sasl_authz_id [, string props]]]]]]]) |
U
|
php-src/ext/ldap/ldap.c |
| bool |
ldap_unbind |
(resource link) |
U
|
php-src/ext/ldap/ldap.c |
| resource |
ldap_read |
(resource link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]]) |
U
|
php-src/ext/ldap/ldap.c |
| resource |
ldap_list |
(resource link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]]) |
U
|
php-src/ext/ldap/ldap.c |
| resource |
ldap_search |
(resource link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]]) |
U
|
php-src/ext/ldap/ldap.c |
| bool |
ldap_free_result |
(resource result) |
U
|
php-src/ext/ldap/ldap.c |
| int |
ldap_count_entries |
(resource link, resource result) |
U
|
php-src/ext/ldap/ldap.c |
| resource |
ldap_first_entry |
(resource link, resource result) |
U
|
php-src/ext/ldap/ldap.c |
| resource |
ldap_next_entry |
(resource link, resource result_entry) |
U
|
php-src/ext/ldap/ldap.c |
| array |
ldap_get_entries |
(resource link, resource result) |
U
|
php-src/ext/ldap/ldap.c |
| string |
ldap_first_attribute |
(resource link, resource result_entry) |
U
|
php-src/ext/ldap/ldap.c |
| string |
ldap_next_attribute |
(resource link, resource result_entry) |
U
|
php-src/ext/ldap/ldap.c |
| array |
ldap_get_attributes |
(resource link, resource result_entry) |
U
|
php-src/ext/ldap/ldap.c |
| array |
ldap_get_values_len |
(resource link, resource result_entry, string attribute) |
U
|
php-src/ext/ldap/ldap.c |
| string |
ldap_get_dn |
(resource link, resource result_entry) |
U
|
php-src/ext/ldap/ldap.c |
| array |
ldap_explode_dn |
(string dn, int with_attrib) |
U
|
php-src/ext/ldap/ldap.c |
| string |
ldap_dn2ufn |
(string dn) |
U
|
php-src/ext/ldap/ldap.c |
| bool |
ldap_add |
(resource link, string dn, array entry) |
U
|
php-src/ext/ldap/ldap.c |
| bool |
ldap_mod_replace |
(resource link, string dn, array entry) |
U
|
php-src/ext/ldap/ldap.c |
| bool |
ldap_mod_add |
(resource link, string dn, array entry) |
U
|
php-src/ext/ldap/ldap.c |
| bool |
ldap_mod_del |
(resource link, string dn, array entry) |
U
|
php-src/ext/ldap/ldap.c |
| bool |
ldap_delete |
(resource link, string dn) |
U
|
php-src/ext/ldap/ldap.c |
| int |
ldap_errno |
(resource link) |
U
|
php-src/ext/ldap/ldap.c |
| string |
ldap_err2str |
(int errno) |
U
|
php-src/ext/ldap/ldap.c |
| string |
ldap_error |
(resource link) |
U
|
php-src/ext/ldap/ldap.c |
| bool |
ldap_compare |
(resource link, string dn, string attr, string value) |
U
|
php-src/ext/ldap/ldap.c |
| bool |
ldap_sort |
(resource link, resource result, string sortfilter) |
U
|
php-src/ext/ldap/ldap.c |
| bool |
ldap_get_option |
(resource link, int option, mixed retval) |
U
|
php-src/ext/ldap/ldap.c |
| bool |
ldap_set_option |
(resource link, int option, mixed newval) |
U
|
php-src/ext/ldap/ldap.c |
| bool |
ldap_parse_result |
(resource link, resource result, int errcode, string matcheddn, string errmsg, array referrals) |
U
|
php-src/ext/ldap/ldap.c |
| resource |
ldap_first_reference |
(resource link, resource result) |
U
|
php-src/ext/ldap/ldap.c |
| resource |
ldap_next_reference |
(resource link, resource reference_entry) |
U
|
php-src/ext/ldap/ldap.c |
| bool |
ldap_parse_reference |
(resource link, resource reference_entry, array referrals) |
U
|
php-src/ext/ldap/ldap.c |
| bool |
ldap_start_tls |
(resource link) |
U
|
php-src/ext/ldap/ldap.c |
| bool |
ldap_set_rebind_proc |
(resource link, string callback) |
U
|
php-src/ext/ldap/ldap.c |
| string |
ldap_t61_to_8859 |
(string value) |
U
|
php-src/ext/ldap/ldap.c |
| string |
ldap_8859_to_t61 |
(string value) |
U
|
php-src/ext/ldap/ldap.c |
| void |
libxml_set_streams_context |
(resource streams_context) |
U
|
php-src/ext/libxml/libxml.c |
| bool |
libxml_use_internal_errors |
([boolean use_errors]) |
U
|
php-src/ext/libxml/libxml.c |
| void |
libxml_clear_errors |
() |
U
|
php-src/ext/libxml/libxml.c |
| resource |
mcrypt_module_open |
(string cipher, string cipher_directory, string mode, string mode_directory) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| int |
mcrypt_generic_init |
(resource td, binary key, binary iv) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| binary |
mcrypt_generic |
(resource td, binary data) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| binary |
mdecrypt_generic |
(resource td, binary data) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| array |
mcrypt_enc_get_supported_key_sizes |
(resource td) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| int |
mcrypt_enc_self_test |
(resource td) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| bool |
mcrypt_module_close |
(resource td) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| bool |
mcrypt_generic_deinit |
(resource td) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| bool |
mcrypt_enc_is_block_algorithm_mode |
(resource td) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| bool |
mcrypt_enc_is_block_algorithm |
(resource td) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| bool |
mcrypt_enc_is_block_mode |
(resource td) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| int |
mcrypt_enc_get_block_size |
(resource td) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| int |
mcrypt_enc_get_key_size |
(resource td) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| int |
mcrypt_enc_get_iv_size |
(resource td) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| string |
mcrypt_enc_get_algorithms_name |
(resource td) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| string |
mcrypt_enc_get_modes_name |
(resource td) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| bool |
mcrypt_module_self_test |
(string algorithm [, string lib_dir]) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| bool |
mcrypt_module_is_block_algorithm_mode |
(string mode [, string lib_dir]) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| bool |
mcrypt_module_is_block_algorithm |
(string algorithm [, string lib_dir]) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| bool |
mcrypt_module_is_block_mode |
(string mode [, string lib_dir]) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| int |
mcrypt_module_get_algo_block_size |
(string algorithm [, string lib_dir]) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| int |
mcrypt_module_get_algo_key_size |
(string algorithm [, string lib_dir]) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| array |
mcrypt_module_get_supported_key_sizes |
(string algorithm [, string lib_dir]) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| array |
mcrypt_list_algorithms |
([string lib_dir]) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| array |
mcrypt_list_modes |
([string lib_dir]) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| int |
mcrypt_get_key_size |
(string cipher, string module) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| int |
mcrypt_get_block_size |
(string cipher, string module) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| int |
mcrypt_get_iv_size |
(string cipher, string module) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| string |
mcrypt_get_cipher_name |
(string cipher) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| string |
mcrypt_encrypt |
(string cipher, string key, string data, string mode, string iv) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| string |
mcrypt_decrypt |
(string cipher, string key, string data, string mode, string iv) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| string |
mcrypt_ecb |
(int cipher, string key, string data, int mode, string iv) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| string |
mcrypt_cbc |
(int cipher, string key, string data, int mode, string iv) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| string |
mcrypt_cfb |
(int cipher, string key, string data, int mode, string iv) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| string |
mcrypt_ofb |
(int cipher, string key, string data, int mode, string iv) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| binary |
mcrypt_create_iv |
(int size, int source) |
U
|
php-src/ext/mcrypt/mcrypt.c |
| resource |
mysql_connect |
([string hostname[:port][:/path/to/socket] [, string username [, string password [, bool new [, int flags]]]]]) |
U
|
php-src/ext/mysql/php_mysql.c |
| resource |
mysql_pconnect |
([string hostname[:port][:/path/to/socket] [, string username [, string password [, int flags]]]]) |
U
|
php-src/ext/mysql/php_mysql.c |
| bool |
mysql_close |
([int link_identifier]) |
U
|
php-src/ext/mysql/php_mysql.c |
| bool |
mysql_select_db |
(string database_name [, int link_identifier]) |
U
|
php-src/ext/mysql/php_mysql.c |
| string |
mysql_get_client_info |
(void) |
U
|
php-src/ext/mysql/php_mysql.c |
| string |
mysql_get_host_info |
([int link_identifier]) |
U
|
php-src/ext/mysql/php_mysql.c |
| int |
mysql_get_proto_info |
([int link_identifier]) |
U
|
php-src/ext/mysql/php_mysql.c |
| string |
mysql_get_server_info |
([int link_identifier]) |
U
|
php-src/ext/mysql/php_mysql.c |
| string |
mysql_info |
([int link_identifier]) |
U
|
php-src/ext/mysql/php_mysql.c |
| int |
mysql_thread_id |
([int link_identifier]) |
U
|
php-src/ext/mysql/php_mysql.c |
| string |
mysql_stat |
([int link_identifier]) |
U
|
php-src/ext/mysql/php_mysql.c |
| string |
mysql_client_encoding |
([int link_identifier]) |
U
|
php-src/ext/mysql/php_mysql.c |
| bool |
mysql_set_charset |
(string csname [, int link_identifier]) |
U
|
php-src/ext/mysql/php_mysql.c |
| bool |
mysql_create_db |
(string database_name [, int link_identifier]) |
U
|
php-src/ext/mysql/php_mysql.c |
| bool |
mysql_drop_db |
(string database_name [, int link_identifier]) |
U
|
php-src/ext/mysql/php_mysql.c |
| resource |
mysql_query |
(string query [, int link_identifier]) |
U
|
php-src/ext/mysql/php_mysql.c |
| resource |
mysql_unbuffered_query |
(string query [, int link_identifier]) |
U
|
php-src/ext/mysql/php_mysql.c |
| resource |
mysql_db_query |
(string database_name, string query [, int link_identifier]) |
U
|
php-src/ext/mysql/php_mysql.c |
| resource |
mysql_list_dbs |
([int link_identifier]) |
U
|
php-src/ext/mysql/php_mysql.c |
| resource |
mysql_list_tables |
(string database_name [, int link_identifier]) |
U
|
php-src/ext/mysql/php_mysql.c |
| resource |
mysql_list_fields |
(string database_name, string table_name [, int link_identifier]) |
U
|
php-src/ext/mysql/php_mysql.c |
| resource |
mysql_list_processes |
([int link_identifier]) |
U
|
php-src/ext/mysql/php_mysql.c |
| string |
mysql_error |
([int link_identifier]) |
U
|
php-src/ext/mysql/php_mysql.c |
| string |
mysql_escape_string |
(string to_be_escaped) |
U
|
php-src/ext/mysql/php_mysql.c |
| string |
mysql_real_escape_string |
(string to_be_escaped [, int link_identifier]) |
U
|
php-src/ext/mysql/php_mysql.c |
| int |
mysql_insert_id |
([int link_identifier]) |
U
|
php-src/ext/mysql/php_mysql.c |
| mixed |
mysql_result |
(resource result, int row [, mixed field]) |
U
|
php-src/ext/mysql/php_mysql.c |
| int |
mysql_num_rows |
(resource result) |
U
|
php-src/ext/mysql/php_mysql.c |
| int |
mysql_num_fields |
(resource result) |
U
|
php-src/ext/mysql/php_mysql.c |
| array |
mysql_fetch_row |
(resource result) |
U
|
php-src/ext/mysql/php_mysql.c |
| array |
mysql_fetch_array |
(resource result [, int result_type]) |
U
|
php-src/ext/mysql/php_mysql.c |
| array |
mysql_fetch_assoc |
(resource result) |
U
|
php-src/ext/mysql/php_mysql.c |
| bool |
mysql_data_seek |
(resource result, int row_number) |
U
|
php-src/ext/mysql/php_mysql.c |
| array |
mysql_fetch_lengths |
(resource result) |
U
|
php-src/ext/mysql/php_mysql.c |
| object |
mysql_fetch_field |
(resource result [, int field_offset]) |
U
|
php-src/ext/mysql/php_mysql.c |
| bool |
mysql_field_seek |
(resource result, int field_offset) |
U
|
php-src/ext/mysql/php_mysql.c |
| string |
mysql_field_table |
(resource result, int field_offset) |
U
|
php-src/ext/mysql/php_mysql.c |
| int |
mysql_field_len |
(resource result, int field_offset) |
U
|
php-src/ext/mysql/php_mysql.c |
| string |
mysql_field_type |
(resource result, int field_offset) |
U
|
php-src/ext/mysql/php_mysql.c |
| string |
mysql_field_flags |
(resource result, int field_offset) |
U
|
php-src/ext/mysql/php_mysql.c |
| bool |
mysql_free_result |
(resource result) |
U
|
php-src/ext/mysql/php_mysql.c |
| bool |
mysql_ping |
([int link_identifier]) |
U
|
php-src/ext/mysql/php_mysql.c |
| mixed |
mysqli_affected_rows |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_autocommit |
(object link, bool mode) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_stmt_bind_param |
(object stmt, string types, mixed variable [,mixed,....]) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_stmt_bind_result |
(object stmt, mixed var, [,mixed, ...]) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_change_user |
(object link, string user, string password, string database) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| string |
mysqli_character_set_name |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_close |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_commit |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_data_seek |
(object result, int offset) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| void |
mysqli_debug |
(string debug) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_dump_debug_info |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| int |
mysqli_errno |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| string |
mysqli_error |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_stmt_execute |
(object stmt) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| mixed |
mysqli_stmt_fetch |
(object stmt) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| mixed |
mysqli_fetch_field |
(object result) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| mixed |
mysqli_fetch_fields |
(object result) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| mixed |
mysqli_fetch_field_direct |
(object result, int offset) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| mixed |
mysqli_fetch_lengths |
(object result) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| array |
mysqli_fetch_row |
(object result) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| int |
mysqli_field_count |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| int |
mysqli_field_seek |
(object result, int fieldnr) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| int |
mysqli_field_tell |
(object result) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| void |
mysqli_free_result |
(object result) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| string |
mysqli_get_client_info |
(void) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| int |
mysqli_get_client_version |
(void) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| string |
mysqli_get_host_info |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| int |
mysqli_get_proto_info |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| string |
mysqli_get_server_info |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| int |
mysqli_get_server_version |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| string |
mysqli_info |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| resource |
mysqli_init |
(void) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| mixed |
mysqli_insert_id |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_kill |
(object link, int processid) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| void |
mysqli_set_local_infile_default |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_set_local_infile_handler |
(object link, callback read_func) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_more_results |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_next_result |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| int |
mysqli_num_fields |
(object result) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| mixed |
mysqli_num_rows |
(object result) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_options |
(object link, int flags, mixed values) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_ping |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| mixed |
mysqli_prepare |
(object link, string query) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_real_connect |
(object link [,string hostname [,string username [,string passwd [,string dbname [,int port [,string socket [,int flags]]]]]]]) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_real_query |
(object link, string query) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| string |
mysqli_real_escape_string |
(object link, string escapestr) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_rollback |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_stmt_send_long_data |
(object stmt, int param_nr, string data) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| mixed |
mysqli_stmt_affected_rows |
(object stmt) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_stmt_close |
(object stmt) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| void |
mysqli_stmt_data_seek |
(object stmt, int offset) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| int |
mysqli_stmt_field_count |
(object stmt) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| void |
mysqli_stmt_free_result |
(object stmt) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| mixed |
mysqli_stmt_insert_id |
(object stmt) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| int |
mysqli_stmt_param_count |
(object stmt) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_stmt_reset |
(object stmt) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| mixed |
mysqli_stmt_num_rows |
(object stmt) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_select_db |
(object link, string dbname) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| string |
mysqli_sqlstate |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_ssl_set |
(object link ,string key ,string cert ,string ca ,string capath ,string cipher]) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| mixed |
mysqli_stat |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| int |
mysqli_stmt_attr_set |
(object stmt, long attr, long mode) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| int |
mysqli_stmt_attr_get |
(object stmt, long attr) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| int |
mysqli_stmt_errno |
(object stmt) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| string |
mysqli_stmt_error |
(object stmt) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| mixed |
mysqli_stmt_init |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_stmt_prepare |
(object stmt, string query) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| mixed |
mysqli_stmt_result_metadata |
(object stmt) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_stmt_store_result |
(stmt) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| string |
mysqli_stmt_sqlstate |
(object stmt) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| object |
mysqli_store_result |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| int |
mysqli_thread_id |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| bool |
mysqli_thread_safe |
(void) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| mixed |
mysqli_use_result |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| int |
mysqli_warning_count |
(object link) |
U
|
php-src/ext/mysqli/mysqli_api.c |
| int |
mysqli_connect_errno |
(void) |
U
|
php-src/ext/mysqli/mysqli_nonapi.c |
| string |
mysqli_connect_error |
(void) |
U
|
php-src/ext/mysqli/mysqli_nonapi.c |
| mixed |
mysqli_fetch_array |
(object result [,int resulttype]) |
U
|
php-src/ext/mysqli/mysqli_nonapi.c |
| mixed |
mysqli_fetch_assoc |
(object result) |
U
|
php-src/ext/mysqli/mysqli_nonapi.c |
| mixed |
mysqli_fetch_all |
(object result [,int resulttype]) |
U
|
php-src/ext/mysqli/mysqli_nonapi.c |
| array |
mysqli_cache_stats |
(void) |
U
|
php-src/ext/mysqli/mysqli_nonapi.c |
| mixed |
mysqli_fetch_object |
(object result [, string class_name [, NULL|array ctor_params]]) |
U
|
php-src/ext/mysqli/mysqli_nonapi.c |
| bool |
mysqli_multi_query |
(object link, string query) |
U
|
php-src/ext/mysqli/mysqli_nonapi.c |
| mixed |
mysqli_query |
(object link, string query [,int resultmode]) |
U |
php-src/ext/mysqli/mysqli_nonapi.c |
| int |
mysqli_poll |
(array read, array write, array error, long sec [, long usec]) |
U
|
php-src/ext/mysqli/mysqli_nonapi.c |
| int |
mysqli_reap_async_query |
(object link) |
U
|
php-src/ext/mysqli/mysqli_nonapi.c |
| object |
mysqli_stmt_get_result |
(object link) |
U
|
php-src/ext/mysqli/mysqli_nonapi.c |
| object |
mysqli_get_warnings |
(object link) |
U |
php-src/ext/mysqli/mysqli_nonapi.c |
| object |
mysqli_stmt_get_warnings |
(object link) |
U |
php-src/ext/mysqli/mysqli_nonapi.c |
| bool |
mysqli_set_charset |
(object link, string csname) |
U
|
php-src/ext/mysqli/mysqli_nonapi.c |
| object |
mysqli_get_charset |
(object link) |
U
|
php-src/ext/mysqli/mysqli_nonapi.c |
| bool |
mysqli_report |
(int flags) |
U
|
php-src/ext/mysqli/mysqli_report.c |
| bool |
oci_define_by_name |
(resource stmt, string name, mixed &var [, int type]) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_bind_by_name |
(resource stmt, string name, mixed &var, [, int maxlength [, int type]]) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_bind_array_by_name |
(resource stmt, string name, array &var, int max_table_length [, int max_item_length [, int type ]]) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_free_descriptor |
() |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_lob_save |
( string data [, int offset ]) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_lob_import |
( string filename ) |
U
|
php-src/ext/oci8/oci8_interface.c |
| string |
oci_lob_load |
() |
U
|
php-src/ext/oci8/oci8_interface.c |
| string |
oci_lob_read |
( int length ) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_lob_eof |
() |
U
|
php-src/ext/oci8/oci8_interface.c |
| int |
oci_lob_tell |
() |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_lob_rewind |
() |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_lob_seek |
( int offset [, int whence ]) |
U
|
php-src/ext/oci8/oci8_interface.c |
| int |
oci_lob_size |
() |
U
|
php-src/ext/oci8/oci8_interface.c |
| int |
oci_lob_write |
( string string [, int length ]) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_lob_append |
( object lob ) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_lob_truncate |
( [ int length ]) |
U
|
php-src/ext/oci8/oci8_interface.c |
| int |
oci_lob_erase |
( [ int offset [, int length ] ] ) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_lob_flush |
( [ int flag ] ) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
ocisetbufferinglob |
( boolean flag ) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
ocigetbufferinglob |
() |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_lob_copy |
( object lob_to, object lob_from [, int length ] ) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_lob_is_equal |
( object lob1, object lob2 ) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_lob_export |
([string filename [, int start [, int length]]]) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_lob_write_temporary |
(string var [, int lob_type]) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_lob_close |
() |
U
|
php-src/ext/oci8/oci8_interface.c |
| object |
oci_new_descriptor |
(resource connection [, int type]) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_rollback |
(resource connection) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_commit |
(resource connection) |
U
|
php-src/ext/oci8/oci8_interface.c |
| string |
oci_field_name |
(resource stmt, int col) |
U
|
php-src/ext/oci8/oci8_interface.c |
| int |
oci_field_size |
(resource stmt, int col) |
U
|
php-src/ext/oci8/oci8_interface.c |
| int |
oci_field_scale |
(resource stmt, int col) |
U
|
php-src/ext/oci8/oci8_interface.c |
| int |
oci_field_precision |
(resource stmt, int col) |
U
|
php-src/ext/oci8/oci8_interface.c |
| mixed |
oci_field_type |
(resource stmt, int col) |
U
|
php-src/ext/oci8/oci8_interface.c |
| int |
oci_field_type_raw |
(resource stmt, int col) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_field_is_null |
(resource stmt, int col) |
U
|
php-src/ext/oci8/oci8_interface.c |
| void |
oci_internal_debug |
(int onoff) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_execute |
(resource stmt [, int mode]) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_cancel |
(resource stmt) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_fetch |
(resource stmt) |
U
|
php-src/ext/oci8/oci8_interface.c |
| int |
ocifetchinto |
(resource stmt, array &output [, int mode]) |
U
|
php-src/ext/oci8/oci8_interface.c |
| int |
oci_fetch_all |
(resource stmt, array &output[, int skip[, int maxrows[, int flags]]]) |
U
|
php-src/ext/oci8/oci8_interface.c |
| object |
oci_fetch_object |
( resource stmt ) |
U
|
php-src/ext/oci8/oci8_interface.c |
| array |
oci_fetch_row |
( resource stmt ) |
U
|
php-src/ext/oci8/oci8_interface.c |
| array |
oci_fetch_assoc |
( resource stmt ) |
U
|
php-src/ext/oci8/oci8_interface.c |
| array |
oci_fetch_array |
( resource stmt [, int mode ]) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_free_statement |
(resource stmt) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_close |
(resource connection) |
U
|
php-src/ext/oci8/oci8_interface.c |
| resource |
oci_new_connect |
(string user, string pass [, string db]) |
U
|
php-src/ext/oci8/oci8_interface.c |
| resource |
oci_connect |
(string user, string pass [, string db [, string charset [, int session_mode ]]) |
U
|
php-src/ext/oci8/oci8_interface.c |
| resource |
oci_pconnect |
(string user, string pass [, string db [, string charset ]]) |
U
|
php-src/ext/oci8/oci8_interface.c |
| array |
oci_error |
([resource stmt|connection|global]) |
U
|
php-src/ext/oci8/oci8_interface.c |
| int |
oci_num_fields |
(resource stmt) |
U
|
php-src/ext/oci8/oci8_interface.c |
| resource |
oci_parse |
(resource connection, string query) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_set_prefetch |
(resource stmt, int prefetch_rows) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_password_change |
(resource connection, string username, string old_password, string new_password) |
U
|
php-src/ext/oci8/oci8_interface.c |
| resource |
oci_new_cursor |
(resource connection) |
U
|
php-src/ext/oci8/oci8_interface.c |
| string |
oci_result |
(resource stmt, mixed column) |
U
|
php-src/ext/oci8/oci8_interface.c |
| string |
oci_server_version |
(resource connection) |
U
|
php-src/ext/oci8/oci8_interface.c |
| string |
oci_statement_type |
(resource stmt) |
U
|
php-src/ext/oci8/oci8_interface.c |
| int |
oci_num_rows |
(resource stmt) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_free_collection |
() |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_collection_append |
(string value) |
U
|
php-src/ext/oci8/oci8_interface.c |
| string |
oci_collection_element_get |
(int ndx) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_collection_assign |
(object from) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_collection_element_assign |
(int index, string val) |
U
|
php-src/ext/oci8/oci8_interface.c |
| int |
oci_collection_size |
() |
U
|
php-src/ext/oci8/oci8_interface.c |
| int |
oci_collection_max |
() |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
oci_collection_trim |
(int num) |
U
|
php-src/ext/oci8/oci8_interface.c |
| object |
oci_new_collection |
(resource connection, string tdo [, string schema]) |
U
|
php-src/ext/oci8/oci8_interface.c |
| bool |
openssl_x509_export_to_file |
(mixed x509, string outfilename [, bool notext = true]) |
U
|
php-src/ext/openssl/openssl.c |
| bool |
openssl_x509_export |
(mixed x509, string &out [, bool notext = true]) |
U
|
php-src/ext/openssl/openssl.c |
| bool |
openssl_x509_check_private_key |
(mixed cert, mixed key) |
U
|
php-src/ext/openssl/openssl.c |
| array |
openssl_x509_parse |
(mixed x509 [, bool shortnames=true]) |
U
|
php-src/ext/openssl/openssl.c |
| int |
openssl_x509_checkpurpose |
(mixed x509cert, int purpose [, array cainfo [, string untrustedfile]]) |
U
|
php-src/ext/openssl/openssl.c |
| resource |
openssl_x509_read |
(mixed cert) |
U
|
php-src/ext/openssl/openssl.c |
| void |
openssl_x509_free |
(resource x509) |
U
|
php-src/ext/openssl/openssl.c |
| bool |
openssl_pkcs12_export_to_file |
(mixed x509, string filename, mixed priv_key, string pass[, array args]) |
U
|
php-src/ext/openssl/openssl.c |
| bool |
openssl_pkcs12_export |
(mixed x509, string &out, mixed priv_key, string pass[, array args]) |
U
|
php-src/ext/openssl/openssl.c |
| bool |
openssl_pkcs12_read |
(string PKCS12, array &certs, string pass) |
U
|
php-src/ext/openssl/openssl.c |
| bool |
openssl_csr_export_to_file |
(resource csr, string outfilename [, bool notext=true]) |
U
|
php-src/ext/openssl/openssl.c |
| bool |
openssl_csr_export |
(resource csr, string &out [, bool notext=true]) |
U
|
php-src/ext/openssl/openssl.c |
| resource |
openssl_csr_sign |
(mixed csr, mixed x509, mixed priv_key, long days [, array config_args [, long serial]]) |
U
|
php-src/ext/openssl/openssl.c |
| bool |
openssl_csr_new |
(array dn, resource &privkey [, array configargs [, array extraattribs]]) |
U
|
php-src/ext/openssl/openssl.c |
| mixed |
openssl_csr_get_subject |
(mixed csr) |
U
|
php-src/ext/openssl/openssl.c |
| mixed |
openssl_csr_get_public_key |
(mixed csr) |
U
|
php-src/ext/openssl/openssl.c |
| resource |
openssl_pkey_new |
([array configargs]) |
U
|
php-src/ext/openssl/openssl.c |
| bool |
openssl_pkey_export_to_file |
(mixed key, string outfilename [, string passphrase [, array config_args]]) |
U
|
php-src/ext/openssl/openssl.c |
| bool |
openssl_pkey_export |
(mixed key, &mixed out [, string passphrase [, array config_args]]) |
U
|
php-src/ext/openssl/openssl.c |
| int |
openssl_pkey_get_public |
(mixed cert) |
U
|
php-src/ext/openssl/openssl.c |
| void |
openssl_pkey_free |
(resource key) |
U
|
php-src/ext/openssl/openssl.c |
| int |
openssl_pkey_get_private |
(string key [, string passphrase]) |
U
|
php-src/ext/openssl/openssl.c |
| resource |
openssl_pkey_get_details |
(resource key) |
U
|
php-src/ext/openssl/openssl.c |
| bool |
openssl_pkcs7_verify |
(string filename, long flags [, string signerscerts [, array cainfo [, string extracerts [, string content]]]]) |
U
|
php-src/ext/openssl/openssl.c |
| bool |
openssl_pkcs7_encrypt |
(string infile, string outfile, mixed recipcerts, array headers [, long flags [, long cipher]]) |
U
|
php-src/ext/openssl/openssl.c |
| bool |
openssl_pkcs7_sign |
(string infile, string outfile, mixed signcert, mixed signkey, array headers [, long flags [, string extracertsfilename]]) |
U
|
php-src/ext/openssl/openssl.c |
| bool |
openssl_pkcs7_decrypt |
(string infilename, string outfilename, mixed recipcert [, mixed recipkey]) |
U
|
php-src/ext/openssl/openssl.c |
| bool |
openssl_private_encrypt |
(string data, string &crypted, mixed key [, int padding]) |
U
|
php-src/ext/openssl/openssl.c |
| bool |
openssl_private_decrypt |
(string data, string &decrypted, mixed key [, int padding]) |
U
|
php-src/ext/openssl/openssl.c |
| bool |
openssl_public_encrypt |
(string data, string &crypted, mixed key [, int padding]) |
U
|
php-src/ext/openssl/openssl.c |
| bool |
openssl_public_decrypt |
(string data, string &crypted, resource key [, int padding]) |
U
|
php-src/ext/openssl/openssl.c |
| mixed |
openssl_error_string |
(void) |
U
|
php-src/ext/openssl/openssl.c |
| bool |
openssl_sign |
(string data, &string signature, mixed key[, mixed method]) |
U
|
php-src/ext/openssl/openssl.c |
| int |
openssl_verify |
(string data, string signature, mixed key[, mixed method]) |
U
|
php-src/ext/openssl/openssl.c |
| int |
openssl_seal |
(string data, &string sealdata, &array ekeys, array pubkeys[, string method]) |
U
|
php-src/ext/openssl/openssl.c |
| bool |
openssl_open |
(string data, &string opendata, string ekey, mixed privkey[, string method]) |
U
|
php-src/ext/openssl/openssl.c |
| array |
openssl_get_md_methods |
([bool aliases = false]) |
U
|
php-src/ext/openssl/openssl.c |
| array |
openssl_get_cipher_methods |
([bool aliases = false]) |
U
|
php-src/ext/openssl/openssl.c |
| string |
openssl_digest |
(string data, string method [, bool raw_output=false]) |
U
|
php-src/ext/openssl/openssl.c |
| string |
openssl_encrypt |
(string data, string method, string password [, bool raw_output=false]) |
U
|
php-src/ext/openssl/openssl.c |
| string |
openssl_decrypt |
(string data, string method, string password [, bool raw_input=false]) |
U
|
php-src/ext/openssl/openssl.c |
| string |
openssl_dh_compute_key |
(string pub_key, resource dh_key) |
U
|
php-src/ext/openssl/openssl.c |
| string |
openssl_random_pseudo_bytes |
(integer length [, &bool returned_strong_result]) |
U
|
php-src/ext/openssl/openssl.c |
| int |
pcntl_fork |
(void) |
U
|
php-src/ext/pcntl/pcntl.c |
| int |
pcntl_alarm |
(int seconds) |
U
|
php-src/ext/pcntl/pcntl.c |
| int |
pcntl_waitpid |
(int pid, int &status, int options) |
U
|
php-src/ext/pcntl/pcntl.c |
| int |
pcntl_wait |
(int &status) |
U
|
php-src/ext/pcntl/pcntl.c |
| bool |
pcntl_wifexited |
(int status) |
U
|
php-src/ext/pcntl/pcntl.c |
| bool |
pcntl_wifstopped |
(int status) |
U
|
php-src/ext/pcntl/pcntl.c |
| bool |
pcntl_wifsignaled |
(int status) |
U
|
php-src/ext/pcntl/pcntl.c |
| int |
pcntl_wexitstatus |
(int status) |
U
|
php-src/ext/pcntl/pcntl.c |
| int |
pcntl_wtermsig |
(int status) |
U
|
php-src/ext/pcntl/pcntl.c |
| int |
pcntl_wstopsig |
(int status) |
U
|
php-src/ext/pcntl/pcntl.c |
| bool |
pcntl_signal |
(int signo, callback handle [, bool restart_syscalls]) |
U
|
php-src/ext/pcntl/pcntl.c |
| int |
pcntl_getpriority |
([int pid [, int process_identifier]]) |
U
|
php-src/ext/pcntl/pcntl.c |
| bool |
pcntl_setpriority |
(int priority [, int pid [, int process_identifier]]) |
U
|
php-src/ext/pcntl/pcntl.c |
| int |
preg_match |
(string pattern, string subject [, array &subpatterns [, int flags [, int offset]]]) |
U
|
php-src/ext/pcre/php_pcre.c |
| int |
preg_match_all |
(string pattern, string subject, array &subpatterns [, int flags [, int offset]]) |
U
|
php-src/ext/pcre/php_pcre.c |
| mixed |
preg_replace |
(mixed regex, mixed replace, mixed subject [, int limit [, int &count]]) |
U
|
php-src/ext/pcre/php_pcre.c |
| mixed |
preg_replace_callback |
(mixed regex, mixed callback, mixed subject [, int limit [, int &count]]) |
U
|
php-src/ext/pcre/php_pcre.c |
| mixed |
preg_filter |
(mixed regex, mixed replace, mixed subject [, int limit [, int &count]]) |
U
|
php-src/ext/pcre/php_pcre.c |
| array |
preg_split |
(string pattern, string subject [, int limit [, int flags]]) |
U
|
php-src/ext/pcre/php_pcre.c |
| string |
preg_quote |
(string str [, string delim_char]) |
U
|
php-src/ext/pcre/php_pcre.c |
| array |
preg_grep |
(string regex, array input [, int flags]) |
U
|
php-src/ext/pcre/php_pcre.c |
| bool |
posix_kill |
(int pid, int sig) |
U
|
php-src/ext/posix/posix.c |
| int |
posix_getpid |
(void) |
U
|
php-src/ext/posix/posix.c |
| int |
posix_getppid |
(void) |
U
|
php-src/ext/posix/posix.c |
| int |
posix_getuid |
(void) |
U
|
php-src/ext/posix/posix.c |
| int |
posix_getgid |
(void) |
U
|
php-src/ext/posix/posix.c |
| int |
posix_geteuid |
(void) |
U
|
php-src/ext/posix/posix.c |
| int |
posix_getegid |
(void) |
U
|
php-src/ext/posix/posix.c |
| bool |
posix_setuid |
(int uid) |
U
|
php-src/ext/posix/posix.c |
| bool |
posix_setgid |
(int uid) |
U
|
php-src/ext/posix/posix.c |
| bool |
posix_seteuid |
(int uid) |
U
|
php-src/ext/posix/posix.c |
| bool |
posix_setegid |
(int uid) |
U
|
php-src/ext/posix/posix.c |
| array |
posix_getgroups |
(void) |
U
|
php-src/ext/posix/posix.c |
| int |
posix_getpgrp |
(void) |
U
|
php-src/ext/posix/posix.c |
| int |
posix_setsid |
(void) |
U
|
php-src/ext/posix/posix.c |
| bool |
posix_setpgid |
(int pid, int pgid) |
U
|
php-src/ext/posix/posix.c |
| int |
posix_getpgid |
(void) |
U
|
php-src/ext/posix/posix.c |
| int |
posix_getsid |
(void) |
U
|
php-src/ext/posix/posix.c |
| bool |
posix_isatty |
(int fd) |
U
|
php-src/ext/posix/posix.c |
| int |
posix_get_last_error |
(void) |
U
|
php-src/ext/posix/posix.c |
| public static mixed |
Reflection::export |
(Reflector r [, bool return]) |
U
|
php-src/ext/reflection/php_reflection.c |
| public static array |
Reflection::getModifierNames |
(int modifiers) |
U
|
php-src/ext/reflection/php_reflection.c |
| public static mixed |
ReflectionFunction::export |
(string name [, bool return]) |
U
|
php-src/ext/reflection/php_reflection.c |
| public void |
ReflectionFunction::__construct |
(string name) |
U
|
php-src/ext/reflection/php_reflection.c |
| public string |
ReflectionFunction::__toString |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public string |
ReflectionFunction::getName |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionFunction::isClosure |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionFunction::getClosureThis |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionFunction::isInternal |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionFunction::isUserDefined |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionFunction::isDisabled |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public string |
ReflectionFunction::getFileName |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public int |
ReflectionFunction::getStartLine |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public int |
ReflectionFunction::getEndLine |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public string |
ReflectionFunction::getDocComment |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public array |
ReflectionFunction::getStaticVariables |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public mixed |
ReflectionFunction::invoke |
([mixed* args]) |
U
|
php-src/ext/reflection/php_reflection.c |
| public mixed |
ReflectionFunction::invokeArgs |
(array args) |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionFunction::returnsReference |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionFunction::getNumberOfParameters |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionFunction::getNumberOfRequiredParameters |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public ReflectionParameter[] |
ReflectionFunction::getParameters |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public ReflectionExtension|NULL |
ReflectionFunction::getExtension |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public string|false |
ReflectionFunction::getExtensionName |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public static mixed |
ReflectionParameter::export |
(mixed function, mixed parameter [, bool return]) |
throws ReflectionException U
|
php-src/ext/reflection/php_reflection.c |
| public void |
ReflectionParameter::__construct |
(mixed function, mixed parameter) |
U
|
php-src/ext/reflection/php_reflection.c |
| public string |
ReflectionParameter::__toString |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public string |
ReflectionParameter::getName |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public ReflectionFunction |
ReflectionParameter::getDeclaringFunction |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public ReflectionClass|NULL |
ReflectionParameter::getDeclaringClass |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public ReflectionClass|NULL |
ReflectionParameter::getClass |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionParameter::isArray |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionParameter::allowsNull |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionParameter::isPassedByReference |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionParameter::getPosition |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionParameter::isOptional |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionParameter::isDefaultValueAvailable |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionParameter::getDefaultValue |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public static mixed |
ReflectionMethod::export |
(mixed class, string name [, bool return]) |
throws ReflectionException U
|
php-src/ext/reflection/php_reflection.c |
| public void |
ReflectionMethod::__construct |
(mixed class_or_method [, string name]) |
U
|
php-src/ext/reflection/php_reflection.c |
| public string |
ReflectionMethod::__toString |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public mixed |
ReflectionMethod::invoke |
(mixed object, mixed* args) |
U
|
php-src/ext/reflection/php_reflection.c |
| public mixed |
ReflectionMethod::invokeArgs |
(mixed object, array args) |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionMethod::isFinal |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionMethod::isAbstract |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionMethod::isPublic |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionMethod::isPrivate |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionMethod::isProtected |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionMethod::isStatic |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionFunction::isDeprecated |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public string |
ReflectionFunction::getNamespaceName |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public string |
ReflectionFunction::getShortName |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionMethod::isConstructor |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionMethod::isDestructor |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public int |
ReflectionMethod::getModifiers |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public ReflectionClass |
ReflectionMethod::getDeclaringClass |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public ReflectionClass |
ReflectionMethod::getPrototype |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public static mixed |
ReflectionClass::export |
(mixed argument [, bool return]) |
throws ReflectionException U
|
php-src/ext/reflection/php_reflection.c |
| public void |
ReflectionClass::__construct |
(mixed argument) |
throws ReflectionException U
|
php-src/ext/reflection/php_reflection.c |
| public array |
ReflectionClass::getStaticProperties |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public mixed |
ReflectionClass::getStaticPropertyValue |
(string name [, mixed default]) |
U
|
php-src/ext/reflection/php_reflection.c |
| public void |
ReflectionClass::setStaticPropertyValue |
($name, $value) |
U
|
php-src/ext/reflection/php_reflection.c |
| public array |
ReflectionClass::getDefaultProperties |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public string |
ReflectionClass::__toString |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public string |
ReflectionClass::getName |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionClass::isInternal |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionClass::isUserDefined |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public string |
ReflectionClass::getFileName |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public int |
ReflectionClass::getStartLine |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public int |
ReflectionClass::getEndLine |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public string |
ReflectionClass::getDocComment |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public ReflectionMethod |
ReflectionClass::getConstructor |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionClass::hasMethod |
(string name) |
U
|
php-src/ext/reflection/php_reflection.c |
| public ReflectionMethod |
ReflectionClass::getMethod |
(string name) |
throws ReflectionException U
|
php-src/ext/reflection/php_reflection.c |
| public ReflectionMethod[] |
ReflectionClass::getMethods |
([long $filter]) |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionClass::hasProperty |
(string name) |
U
|
php-src/ext/reflection/php_reflection.c |
| public ReflectionProperty |
ReflectionClass::getProperty |
(string name) |
throws ReflectionException U
|
php-src/ext/reflection/php_reflection.c |
| public ReflectionProperty[] |
ReflectionClass::getProperties |
([long $filter]) |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionClass::hasConstant |
(string name) |
U
|
php-src/ext/reflection/php_reflection.c |
| public array |
ReflectionClass::getConstants |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public mixed |
ReflectionClass::getConstant |
(string name) |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionClass::isInstantiable |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionClass::isInterface |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionClass::isFinal |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionClass::isAbstract |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public int |
ReflectionClass::getModifiers |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionClass::isInstance |
(stdclass object) |
U
|
php-src/ext/reflection/php_reflection.c |
| public stdclass |
ReflectionClass::newInstance |
(mixed* args, ...) |
U
|
php-src/ext/reflection/php_reflection.c |
| public stdclass |
ReflectionClass::newInstanceArgs |
([array args]) |
U
|
php-src/ext/reflection/php_reflection.c |
| public ReflectionClass[] |
ReflectionClass::getInterfaces |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public String[] |
ReflectionClass::getInterfaceNames |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public ReflectionClass |
ReflectionClass::getParentClass |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionClass::isSubclassOf |
(string|ReflectionClass class) |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionClass::implementsInterface |
(string|ReflectionClass interface_name) |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionClass::isIterateable |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public ReflectionExtension|NULL |
ReflectionClass::getExtension |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public string|false |
ReflectionClass::getExtensionName |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public static mixed |
ReflectionObject::export |
(mixed argument [, bool return]) |
throws ReflectionException U
|
php-src/ext/reflection/php_reflection.c |
| public void |
ReflectionObject::__construct |
(mixed argument) |
throws ReflectionException U
|
php-src/ext/reflection/php_reflection.c |
| public static mixed |
ReflectionProperty::export |
(mixed class, string name [, bool return]) |
throws ReflectionException U
|
php-src/ext/reflection/php_reflection.c |
| public void |
ReflectionProperty::__construct |
(mixed class, string name) |
U
|
php-src/ext/reflection/php_reflection.c |
| public string |
ReflectionProperty::__toString |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public string |
ReflectionProperty::getName |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionProperty::isPublic |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionProperty::isPrivate |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionProperty::isProtected |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionProperty::isStatic |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public bool |
ReflectionProperty::isDefault |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public mixed |
ReflectionProperty::getDefaultValue |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public int |
ReflectionProperty::getModifiers |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public mixed |
ReflectionProperty::getValue |
([stdclass object]) |
U
|
php-src/ext/reflection/php_reflection.c |
| public void |
ReflectionProperty::setValue |
([stdclass object,] mixed value) |
U
|
php-src/ext/reflection/php_reflection.c |
| public ReflectionClass |
ReflectionProperty::getDeclaringClass |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public string |
ReflectionProperty::getDocComment |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public int |
ReflectionProperty::setAccessible |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public static mixed |
ReflectionExtension::export |
(string name [, bool return]) |
throws ReflectionException U
|
php-src/ext/reflection/php_reflection.c |
| public void |
ReflectionExtension::__construct |
(string name) |
U
|
php-src/ext/reflection/php_reflection.c |
| public string |
ReflectionExtension::__toString |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public string |
ReflectionExtension::getName |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public string |
ReflectionExtension::getVersion |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public ReflectionFunction[] |
ReflectionExtension::getFunctions |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public array |
ReflectionExtension::getConstants |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public array |
ReflectionExtension::getINIEntries |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public ReflectionClass[] |
ReflectionExtension::getClasses |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public array |
ReflectionExtension::getClassNames |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public array |
ReflectionExtension::getDependencies |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| public void |
ReflectionExtension::info |
() |
U
|
php-src/ext/reflection/php_reflection.c |
| void |
session_set_cookie_params |
(int lifetime [, string path [, string domain [, bool secure[, bool httponly]]]]) |
U
|
php-src/ext/session/session.c |
| array |
session_get_cookie_params |
(void) |
U
|
php-src/ext/session/session.c |
| string |
session_name |
([string newname]) |
U
|
php-src/ext/session/session.c |
| string |
session_module_name |
([string newname]) |
U
|
php-src/ext/session/session.c |
| void |
session_set_save_handler |
(string open, string close, string read, string write, string destroy, string gc) |
U
|
php-src/ext/session/session.c |
| string |
session_save_path |
([string newname]) |
U
|
php-src/ext/session/session.c |
| string |
session_id |
([string newid]) |
U
|
php-src/ext/session/session.c |
| bool |
session_regenerate_id |
([bool delete_old_session]) |
U
|
php-src/ext/session/session.c |
| string |
session_cache_limiter |
([string new_cache_limiter]) |
U
|
php-src/ext/session/session.c |
| int |
session_cache_expire |
([int new_cache_expire]) |
U
|
php-src/ext/session/session.c |
| string |
session_encode |
(void) |
U
|
php-src/ext/session/session.c |
| bool |
session_decode |
(string data) |
U
|
php-src/ext/session/session.c |
| bool |
session_start |
(void) |
U
|
php-src/ext/session/session.c |
| bool |
session_destroy |
(void) |
U
|
php-src/ext/session/session.c |
| void |
session_unset |
(void) |
U
|
php-src/ext/session/session.c |
| void |
session_write_close |
(void) |
U
|
php-src/ext/session/session.c |
| int |
shmop_open |
(int key, string flags, int mode, int size) |
U
|
php-src/ext/shmop/shmop.c |
| string |
shmop_read |
(int shmid, int start, int count) |
U
|
php-src/ext/shmop/shmop.c |
| void |
shmop_close |
(int shmid) |
U
|
php-src/ext/shmop/shmop.c |
| int |
shmop_size |
(int shmid) |
U
|
php-src/ext/shmop/shmop.c |
| int |
shmop_write |
(int shmid, string data, int offset) |
U
|
php-src/ext/shmop/shmop.c |
| bool |
shmop_delete |
(int shmid) |
U
|
php-src/ext/shmop/shmop.c |
| array |
SimpleXMLElement::xpath |
(string path) |
U
|
php-src/ext/simplexml/simplexml.c |
| bool |
SimpleXMLElement::registerXPathNamespace |
(string prefix, string ns) |
U
|
php-src/ext/simplexml/simplexml.c |
| string |
SimpleXMLElement::asXML |
([string filename]) |
U
|
php-src/ext/simplexml/simplexml.c |
| object |
SimpleXMLElement::children |
([string ns [, bool is_prefix]]) |
U
|
php-src/ext/simplexml/simplexml.c |
| object |
SimpleXMLElement::getName |
() |
U
|
php-src/ext/simplexml/simplexml.c |
| array |
SimpleXMLElement::attributes |
([string ns [, bool is_prefix]]) |
U
|
php-src/ext/simplexml/simplexml.c |
| void |
SimpleXMLElement::addChild |
(string qName [, string value [, string ns]]) |
U
|
php-src/ext/simplexml/simplexml.c |
| void |
SimpleXMLElement::addAttribute |
(string qName, string value [,string ns]) |
U
|
php-src/ext/simplexml/simplexml.c |
| object |
SimpleXMLElement::__toString |
() |
U
|
php-src/ext/simplexml/simplexml.c |
| simplemxml_element |
simplexml_load_file |
(string filename [, string class_name [, int options [, string ns [, bool is_prefix]]]]) |
U
|
php-src/ext/simplexml/simplexml.c |
| simplemxml_element |
simplexml_load_string |
(string data [, string class_name [, int options [, string ns [, bool is_prefix]]]]) |
U
|
php-src/ext/simplexml/simplexml.c |
| simplemxml_element |
simplexml_import_dom |
(domNode node [, string class_name]) |
U
|
php-src/ext/simplexml/simplexml.c |
| void |
SimpleXMLIterator::rewind |
() |
U
|
php-src/ext/simplexml/sxe.c |
| bool |
SimpleXMLIterator::valid |
() |
U
|
php-src/ext/simplexml/sxe.c |
| SimpleXMLIterator |
SimpleXMLIterator::current |
() |
U
|
php-src/ext/simplexml/sxe.c |
| string |
SimpleXMLIterator::key |
() |
U
|
php-src/ext/simplexml/sxe.c |
| void |
SimpleXMLIterator::next |
() |
U
|
php-src/ext/simplexml/sxe.c |
| bool |
SimpleXMLIterator::hasChildren |
() |
U
|
php-src/ext/simplexml/sxe.c |
| SimpleXMLIterator |
SimpleXMLIterator::getChildren |
() |
U
|
php-src/ext/simplexml/sxe.c |
| object |
SoapParam::SoapParam |
( mixed data, string name) |
U
|
php-src/ext/soap/soap.c |
| object |
SoapHeader::SoapHeader |
( string namespace, string name [, mixed data [, bool mustUnderstand [, mixed actor]]]) |
U
|
php-src/ext/soap/soap.c |
| object |
SoapFault::SoapFault |
( string faultcode, string faultstring [, string faultactor [, mixed detail [, string faultname [, mixed headerfault]]]]) |
U
|
php-src/ext/soap/soap.c |
| object |
SoapFault::__toString |
() |
U
|
php-src/ext/soap/soap.c |
| object |
SoapVar::SoapVar |
( mixed data, int encoding [, string type_name [, string type_namespace [, string node_name [, string node_namespace]]]]) |
U
|
php-src/ext/soap/soap.c |
| object |
SoapServer::SoapServer |
( mixed wsdl [, array options]) |
U
|
php-src/ext/soap/soap.c |
| object |
SoapServer::setPersistence |
( int mode ) |
U
|
php-src/ext/soap/soap.c |
| void |
SoapServer::setClass |
(string class_name [, mixed args]) |
U
|
php-src/ext/soap/soap.c |
| array |
SoapServer::getFunctions |
(void) |
U
|
php-src/ext/soap/soap.c |
| void |
SoapServer::addFunction |
(mixed functions) |
U
|
php-src/ext/soap/soap.c |
| void |
SoapServer::handle |
( [string soap_request]) |
U
|
php-src/ext/soap/soap.c |
| bool |
use_soap_error_handler |
( [bool on] ) |
U
|
php-src/ext/soap/soap.c |
| bool |
is_soap_fault |
( mixed object ) |
U
|
php-src/ext/soap/soap.c |
| object |
SoapClient::SoapClient |
( mixed wsdl [, array options]) |
U
|
php-src/ext/soap/soap.c |
| mixed |
SoapClient::__call |
( string function_name, array arguments [, array options [, array input_headers [, array output_headers]]]) |
U
|
php-src/ext/soap/soap.c |
| array |
SoapClient::__getFunctions |
( void ) |
U
|
php-src/ext/soap/soap.c |
| array |
SoapClient::__getTypes |
( void ) |
U
|
php-src/ext/soap/soap.c |
| string |
SoapClient::__getLastRequest |
( void ) |
U
|
php-src/ext/soap/soap.c |
| object |
SoapClient::__getLastResponse |
( void ) |
U
|
php-src/ext/soap/soap.c |
| string |
SoapClient::__getLastRequestHeaders |
(void) |
U
|
php-src/ext/soap/soap.c |
| string |
SoapClient::__getLastResponseHeaders |
(void) |
U
|
php-src/ext/soap/soap.c |
| string |
SoapClient::__doRequest |
() |
U
|
php-src/ext/soap/soap.c |
| void |
SoapClient::__setCookie |
(string name [, strung value]) |
U
|
php-src/ext/soap/soap.c |
| array |
SoapClient::__getCookies |
() |
U
|
php-src/ext/soap/soap.c |
| void |
SoapClient::__setSoapHeaders |
(array SoapHeaders) |
U
|
php-src/ext/soap/soap.c |
| string |
SoapClient::__setLocation |
([string new_location]) |
U
|
php-src/ext/soap/soap.c |
| int |
socket_select |
(array &read_fds, array &write_fds, array &except_fds, int tv_sec[, int tv_usec]) |
U
|
php-src/ext/sockets/sockets.c |
| resource |
socket_create_listen |
(int port[, int backlog]) |
U
|
php-src/ext/sockets/sockets.c |
| resource |
socket_accept |
(resource socket) |
U
|
php-src/ext/sockets/sockets.c |
| bool |
socket_set_nonblock |
(resource socket) |
U
|
php-src/ext/sockets/sockets.c |
| bool |
socket_set_block |
(resource socket) |
U
|
php-src/ext/sockets/sockets.c |
| bool |
socket_listen |
(resource socket[, int backlog]) |
U
|
php-src/ext/sockets/sockets.c |
| void |
socket_close |
(resource socket) |
U
|
php-src/ext/sockets/sockets.c |
| string |
socket_read |
(resource socket, int length [, int type]) |
U
|
php-src/ext/sockets/sockets.c |
| resource |
socket_create |
(int domain, int type, int protocol) |
U
|
php-src/ext/sockets/sockets.c |
| mixed |
socket_get_option |
(resource socket, int level, int optname) |
U
|
php-src/ext/sockets/sockets.c |
| bool |
socket_create_pair |
(int domain, int type, int protocol, array &fd) |
U
|
php-src/ext/sockets/sockets.c |
| bool |
socket_shutdown |
(resource socket[, int how]) |
U
|
php-src/ext/sockets/sockets.c |
| int |
socket_last_error |
([resource socket]) |
U
|
php-src/ext/sockets/sockets.c |
| void |
socket_clear_error |
([resource socket]) |
U
|
php-src/ext/sockets/sockets.c |
| array |
class_parents |
(object instance [, boolean autoload = true]) |
U
|
php-src/ext/spl/php_spl.c |
| array |
class_implements |
(mixed what [, bool autoload ]) |
U
|
php-src/ext/spl/php_spl.c |
| array |
spl_classes |
() |
U
|
php-src/ext/spl/php_spl.c |
| void |
spl_autoload |
(string class_name [, string file_extensions]) |
U
|
php-src/ext/spl/php_spl.c |
| string |
spl_autoload_extensions |
([string file_extensions]) |
U
|
php-src/ext/spl/php_spl.c |
| void |
spl_autoload_call |
(string class_name) |
U
|
php-src/ext/spl/php_spl.c |
| bool |
spl_autoload_register |
([mixed autoload_function = "spl_autoload" [, throw = true [, prepend = false]]]) |
U
|
php-src/ext/spl/php_spl.c |
| bool |
spl_autoload_unregister |
(mixed autoload_function) |
U
|
php-src/ext/spl/php_spl.c |
| false|array |
spl_autoload_functions |
() |
U
|
php-src/ext/spl/php_spl.c |
| string |
spl_object_hash |
(object obj) |
U
|
php-src/ext/spl/php_spl.c |
| bool |
ArrayObject::offsetExists |
(mixed $index) |
U
|
php-src/ext/spl/spl_array.c |
| mixed |
ArrayObject::offsetGet |
(mixed $index) |
U
|
php-src/ext/spl/spl_array.c |
| void |
ArrayObject::offsetSet |
(mixed $index, mixed $newval) |
U
|
php-src/ext/spl/spl_array.c |
| void |
ArrayObject::append |
(mixed $newval) |
U
|
php-src/ext/spl/spl_array.c |
| void |
ArrayObject::offsetUnset |
(mixed $index) |
U
|
php-src/ext/spl/spl_array.c |
| array |
ArrayObject::getArrayCopy |
() |
U
|
php-src/ext/spl/spl_array.c |
| void |
ArrayObject::__construct |
(array|object ar = array() [, int flags = 0 [, string iterator_class = "ArrayIterator"]]) |
U
|
php-src/ext/spl/spl_array.c |
| void |
ArrayObject::setIteratorClass |
(string iterator_class) |
U
|
php-src/ext/spl/spl_array.c |
| string |
ArrayObject::getIteratorClass |
() |
U
|
php-src/ext/spl/spl_array.c |
| int |
ArrayObject::getFlags |
() |
U
|
php-src/ext/spl/spl_array.c |
| void |
ArrayObject::setFlags |
(int flags) |
U
|
php-src/ext/spl/spl_array.c |
| Array|Object |
ArrayObject::exchangeArray |
(Array|Object ar = array()) |
U
|
php-src/ext/spl/spl_array.c |
| ArrayIterator |
ArrayObject::getIterator |
() |
U
|
php-src/ext/spl/spl_array.c |
| void |
ArrayIterator::rewind |
() |
U
|
php-src/ext/spl/spl_array.c |
| void |
ArrayIterator::seek |
(int $position) |
U
|
php-src/ext/spl/spl_array.c |
| int |
ArrayObject::count |
() |
U
|
php-src/ext/spl/spl_array.c |
| int |
ArrayObject::asort |
() |
U
|
php-src/ext/spl/spl_array.c |
| int |
ArrayObject::ksort |
() |
U
|
php-src/ext/spl/spl_array.c |
| int |
ArrayObject::uasort |
(callback cmp_function) |
U
|
php-src/ext/spl/spl_array.c |
| int |
ArrayObject::uksort |
(callback cmp_function) |
U
|
php-src/ext/spl/spl_array.c |
| int |
ArrayObject::natsort |
() |
U
|
php-src/ext/spl/spl_array.c |
| int |
ArrayObject::natcasesort |
() |
U
|
php-src/ext/spl/spl_array.c |
| mixed|NULL |
ArrayIterator::current |
() |
U
|
php-src/ext/spl/spl_array.c |
| mixed|NULL |
ArrayIterator::key |
() |
U
|
php-src/ext/spl/spl_array.c |
| void |
ArrayIterator::next |
() |
U
|
php-src/ext/spl/spl_array.c |
| bool |
ArrayIterator::valid |
() |
U
|
php-src/ext/spl/spl_array.c |
| bool |
RecursiveArrayIterator::hasChildren |
() |
U
|
php-src/ext/spl/spl_array.c |
| object |
RecursiveArrayIterator::getChildren |
() |
U
|
php-src/ext/spl/spl_array.c |
| void |
DirectoryIterator::__construct |
(string path) |
U
|
php-src/ext/spl/spl_directory.c |
| void |
DirectoryIterator::rewind |
() |
U
|
php-src/ext/spl/spl_directory.c |
| string |
DirectoryIterator::key |
() |
U
|
php-src/ext/spl/spl_directory.c |
| DirectoryIterator |
DirectoryIterator::current |
() |
U
|
php-src/ext/spl/spl_directory.c |
| void |
DirectoryIterator::next |
() |
U
|
php-src/ext/spl/spl_directory.c |
| string |
DirectoryIterator::valid |
() |
U
|
php-src/ext/spl/spl_directory.c |
| string |
SplFileInfo::getPath |
() |
U
|
php-src/ext/spl/spl_directory.c |
| string |
SplFileInfo::getFilename |
() |
U
|
php-src/ext/spl/spl_directory.c |
| string |
DirectoryIterator::getFilename |
() |
U
|
php-src/ext/spl/spl_directory.c |
| string |
SplFileInfo::getBasename |
([string $suffix]) |
U
|
php-src/ext/spl/spl_directory.c |
| string |
DirectoryIterator::getBasename |
([string $suffix]) |
U
|
php-src/ext/spl/spl_directory.c |
| string |
SplFileInfo::getPathname |
() |
U
|
php-src/ext/spl/spl_directory.c |
| string |
FilesystemIterator::key |
() |
U
|
php-src/ext/spl/spl_directory.c |
| string |
FilesystemIterator::current |
() |
U
|
php-src/ext/spl/spl_directory.c |
| bool |
DirectoryIterator::isDot |
() |
U
|
php-src/ext/spl/spl_directory.c |
| void |
SplFileInfo::__construct |
(string file_name) |
U
|
php-src/ext/spl/spl_directory.c |
| int |
SplFileInfo::getPerms |
() |
U
|
php-src/ext/spl/spl_directory.c |
| int |
SplFileInfo::getInode |
() |
U
|
php-src/ext/spl/spl_directory.c |
| int |
SplFileInfo::getSize |
() |
U
|
php-src/ext/spl/spl_directory.c |
| int |
SplFileInfo::getOwner |
() |
U
|
php-src/ext/spl/spl_directory.c |
| int |
SplFileInfo::getGroup |
() |
U
|
php-src/ext/spl/spl_directory.c |
| int |
SplFileInfo::getATime |
() |
U
|
php-src/ext/spl/spl_directory.c |
| int |
SplFileInfo::getMTime |
() |
U
|
php-src/ext/spl/spl_directory.c |
| int |
SplFileInfo::getCTime |
() |
U
|
php-src/ext/spl/spl_directory.c |
| string |
SplFileInfo::getType |
() |
U
|
php-src/ext/spl/spl_directory.c |
| bool |
SplFileInfo::isWritable |
() |
U
|
php-src/ext/spl/spl_directory.c |
| bool |
SplFileInfo::isReadable |
() |
U
|
php-src/ext/spl/spl_directory.c |
| bool |
SplFileInfo::isExecutable |
() |
U
|
php-src/ext/spl/spl_directory.c |
| bool |
SplFileInfo::isFile |
() |
U
|
php-src/ext/spl/spl_directory.c |
| bool |
SplFileInfo::isDir |
() |
U
|
php-src/ext/spl/spl_directory.c |
| bool |
SplFileInfo::isLink |
() |
U
|
php-src/ext/spl/spl_directory.c |
| string |
SplFileInfo::getLinkTarget |
() |
U
|
php-src/ext/spl/spl_directory.c |
| string |
SplFileInfo::getRealPath |
() |
U
|
php-src/ext/spl/spl_directory.c |
| SplFileObject |
SplFileInfo::openFile |
([string mode = 'r' [, bool use_include_path [, resource context]]]) |
U
|
php-src/ext/spl/spl_directory.c |
| void |
SplFileInfo::setFileClass |
([string class_name]) |
U
|
php-src/ext/spl/spl_directory.c |
| void |
SplFileInfo::setInfoClass |
([string class_name]) |
U
|
php-src/ext/spl/spl_directory.c |
| SplFileInfo |
SplFileInfo::getFileInfo |
([string $class_name]) |
U
|
php-src/ext/spl/spl_directory.c |
| SplFileInfo |
SplFileInfo::getPathInfo |
([string $class_name]) |
U
|
php-src/ext/spl/spl_directory.c |
| void |
FilesystemIterator::rewind |
() |
U
|
php-src/ext/spl/spl_directory.c |
| int |
FilesystemIterator::getFlags |
() |
U
|
php-src/ext/spl/spl_directory.c |
| void |
FilesystemIterator::setFlags |
(long $flags) |
U
|
php-src/ext/spl/spl_directory.c |
| bool |
RecursiveDirectoryIterator::hasChildren |
([bool $allow_links = false]) |
U
|
php-src/ext/spl/spl_directory.c |
| RecursiveDirectoryIterator |
DirectoryIterator::getChildren |
() |
U
|
php-src/ext/spl/spl_directory.c |
| void |
RecursiveDirectoryIterator::getSubPath |
() |
U
|
php-src/ext/spl/spl_directory.c |
| void |
RecursiveDirectoryIterator::getSubPathname |
() |
U
|
php-src/ext/spl/spl_directory.c |
| int |
GlobIterator::__construct |
(string path [, int flags]) |
U
|
php-src/ext/spl/spl_directory.c |
| int |
GlobIterator::cont |
() |
U
|
php-src/ext/spl/spl_directory.c |
| void |
SplFileObject::__construct |
(string filename [, string mode = 'r' [, bool use_include_path [, resource context]]]]) |
U
|
php-src/ext/spl/spl_directory.c |
| void |
SplTempFileObject::__construct |
([int max_memory]) |
U
|
php-src/ext/spl/spl_directory.c |
| void |
SplFileObject::rewind |
() |
U
|
php-src/ext/spl/spl_directory.c |
| void |
SplFileObject::eof |
() |
U
|
php-src/ext/spl/spl_directory.c |
| void |
SplFileObject::valid |
() |
U
|
php-src/ext/spl/spl_directory.c |
| string |
SplFileObject::fgets |
() |
U
|
php-src/ext/spl/spl_directory.c |
| string |
SplFileObject::current |
() |
U
|
php-src/ext/spl/spl_directory.c |
| int |
SplFileObject::key |
() |
U
|
php-src/ext/spl/spl_directory.c |
| void |
SplFileObject::next |
() |
U
|
php-src/ext/spl/spl_directory.c |
| void |
SplFileObject::setFlags |
(int flags) |
U
|
php-src/ext/spl/spl_directory.c |
| int |
SplFileObject::getFlags |
() |
U
|
php-src/ext/spl/spl_directory.c |
| void |
SplFileObject::setMaxLineLen |
(int max_len) |
U
|
php-src/ext/spl/spl_directory.c |
| int |
SplFileObject::getMaxLineLen |
() |
U
|
php-src/ext/spl/spl_directory.c |
| bool |
SplFileObject::hasChildren |
() |
U
|
php-src/ext/spl/spl_directory.c |
| bool |
SplFileObject::getChildren |
() |
U
|
php-src/ext/spl/spl_directory.c |
| array |
SplFileObject::fgetcsv |
([string delimiter [, string enclosure]]) |
U
|
php-src/ext/spl/spl_directory.c |
| array |
SplFileObject::getCsvControl |
() |
U
|
php-src/ext/spl/spl_directory.c |
| bool |
SplFileObject::fflush |
() |
U
|
php-src/ext/spl/spl_directory.c |
| int |
SplFileObject::ftell |
() |
U
|
php-src/ext/spl/spl_directory.c |
| int |
SplFileObject::fseek |
(int pos [, int whence = SEEK_SET]) |
U
|
php-src/ext/spl/spl_directory.c |
| int |
SplFileObject::fgetc |
() |
U
|
php-src/ext/spl/spl_directory.c |
| string |
SplFileObject::fgetss |
([string allowable_tags]) |
U
|
php-src/ext/spl/spl_directory.c |
| int |
SplFileObject::fpassthru |
() |
U
|
php-src/ext/spl/spl_directory.c |
| bool |
SplFileObject::fscanf |
(string format [, string ...]) |
U
|
php-src/ext/spl/spl_directory.c |
| mixed |
SplFileObject::fwrite |
(string str [, int length]) |
U
|
php-src/ext/spl/spl_directory.c |
| bool |
SplFileObject::ftruncate |
(int size) |
U
|
php-src/ext/spl/spl_directory.c |
| bool |
SplDoublyLinkedList::push |
(mixed $value) |
U
|
php-src/ext/spl/spl_dllist.c |
| bool |
SplDoublyLinkedList::unshift |
(mixed $value) |
U
|
php-src/ext/spl/spl_dllist.c |
| mixed |
SplDoublyLinkedList::pop |
() |
U
|
php-src/ext/spl/spl_dllist.c |
| mixed |
SplDoublyLinkedList::shift |
() |
U
|
php-src/ext/spl/spl_dllist.c |
| mixed |
SplDoublyLinkedList::top |
() |
U
|
php-src/ext/spl/spl_dllist.c |
| mixed |
SplDoublyLinkedList::bottom |
() |
U
|
php-src/ext/spl/spl_dllist.c |
| int |
SplDoublyLinkedList::count |
() |
U
|
php-src/ext/spl/spl_dllist.c |
| int |
SplDoublyLinkedList::isEmpty |
() |
U
|
php-src/ext/spl/spl_dllist.c |
| int |
SplDoublyLinkedList::setIteratorMode |
($flags) |
U
|
php-src/ext/spl/spl_dllist.c |
| int |
SplDoublyLinkedList::getIteratorMode |
() |
U
|
php-src/ext/spl/spl_dllist.c |
| bool |
SplDoublyLinkedList::offsetExists |
(mixed $index) |
U
|
php-src/ext/spl/spl_dllist.c |
| mixed |
SplDoublyLinkedList::offsetGet |
(mixed $index) |
U
|
php-src/ext/spl/spl_dllist.c |
| void |
SplDoublyLinkedList::offsetSet |
(mixed $index, mixed $newval) |
U
|
php-src/ext/spl/spl_dllist.c |
| void |
SplDoublyLinkedList::offsetUnset |
(mixed $index) |
U
|
php-src/ext/spl/spl_dllist.c |
| int |
SplDoublyLinkedList::key |
() |
U
|
php-src/ext/spl/spl_dllist.c |
| void |
SplDoublyLinkedList::prev |
() |
U
|
php-src/ext/spl/spl_dllist.c |
| void |
SplDoublyLinkedList::next |
() |
U
|
php-src/ext/spl/spl_dllist.c |
| bool |
SplDoublyLinkedList::valid |
() |
U
|
php-src/ext/spl/spl_dllist.c |
| void |
SplDoublyLinkedList::rewind |
() |
U
|
php-src/ext/spl/spl_dllist.c |
| mixed|NULL |
SplDoublyLinkedList::current |
() |
U
|
php-src/ext/spl/spl_dllist.c |
| bool |
SplFixedArray::offsetExists |
(mixed $index) |
U
|
php-src/ext/spl/spl_fixedarray.c |
| mixed |
SplFixedArray::offsetGet |
(mixed $index) |
U
|
php-src/ext/spl/spl_fixedarray.c |
| void |
SplFixedArray::offsetSet |
(mixed $index, mixed $newval) |
U
|
php-src/ext/spl/spl_fixedarray.c |
| void |
SplFixedArray::offsetUnset |
(mixed $index) |
U
|
php-src/ext/spl/spl_fixedarray.c |
| int |
SplFixedArray::key |
() |
U
|
php-src/ext/spl/spl_fixedarray.c |
| void |
SplFixedArray::next |
() |
U
|
php-src/ext/spl/spl_fixedarray.c |
| bool |
SplFixedArray::valid |
() |
U
|
php-src/ext/spl/spl_fixedarray.c |
| void |
SplFixedArray::rewind |
() |
U
|
php-src/ext/spl/spl_fixedarray.c |
| mixed|NULL |
SplFixedArray::current |
() |
U
|
php-src/ext/spl/spl_fixedarray.c |
| int |
SplHeap::count |
() |
U
|
php-src/ext/spl/spl_heap.c |
| int |
SplHeap::isEmpty |
() |
U
|
php-src/ext/spl/spl_heap.c |
| bool |
SplHeap::insert |
(mixed $value) |
U
|
php-src/ext/spl/spl_heap.c |
| mixed |
SplHeap::extract |
() |
U
|
php-src/ext/spl/spl_heap.c |
| bool |
SplPriorityQueue::insert |
(mixed $value, mixed $priority) |
U
|
php-src/ext/spl/spl_heap.c |
| mixed |
SplPriorityQueue::extract |
() |
U
|
php-src/ext/spl/spl_heap.c |
| mixed |
SplPriorityQueue::top |
() |
U
|
php-src/ext/spl/spl_heap.c |
| int |
SplPriorityQueue::setExtractFlags |
($flags) |
U
|
php-src/ext/spl/spl_heap.c |
| int |
SplPriorityQueue::getExtractFlags |
($flags) |
U
|
php-src/ext/spl/spl_heap.c |
| int |
SplHeap::recoverFromCorruption |
() |
U
|
php-src/ext/spl/spl_heap.c |
| bool |
SplPriorityQueue::compare |
(mixed $a, mixed $b) |
U
|
php-src/ext/spl/spl_heap.c |
| mixed |
SplHeap::top |
() |
U
|
php-src/ext/spl/spl_heap.c |
| bool |
SplMinHeap::compare |
(mixed $a, mixed $b) |
U
|
php-src/ext/spl/spl_heap.c |
| bool |
SplMaxHeap::compare |
(mixed $a, mixed $b) |
U
|
php-src/ext/spl/spl_heap.c |
| int |
SplHeap::key |
() |
U
|
php-src/ext/spl/spl_heap.c |
| void |
SplHeap::next |
() |
U
|
php-src/ext/spl/spl_heap.c |
| bool |
SplHeap::valid |
() |
U
|
php-src/ext/spl/spl_heap.c |
| void |
SplHeap::rewind |
() |
U
|
php-src/ext/spl/spl_heap.c |
| mixed|NULL |
SplHeap::current |
() |
U
|
php-src/ext/spl/spl_heap.c |
| mixed|NULL |
SplPriorityQueue::current |
() |
U
|
php-src/ext/spl/spl_heap.c |
| void |
RecursiveIteratorIterator::__construct |
(RecursiveIterator|IteratorAggregate it [, int mode = RIT_LEAVES_ONLY [, int flags = 0]]) |
throws InvalidArgumentException U
|
php-src/ext/spl/spl_iterators.c |
| void |
RecursiveIteratorIterator::rewind |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| bool |
RecursiveIteratorIterator::valid |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| mixed |
RecursiveIteratorIterator::key |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| mixed |
RecursiveIteratorIterator::current |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
RecursiveIteratorIterator::next |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| int |
RecursiveIteratorIterator::getDepth |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| RecursiveIterator |
RecursiveIteratorIterator::getSubIterator |
([int level]) |
U
|
php-src/ext/spl/spl_iterators.c |
| RecursiveIterator |
RecursiveIteratorIterator::getInnerIterator |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| RecursiveIterator |
RecursiveIteratorIterator::beginIteration |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| RecursiveIterator |
RecursiveIteratorIterator::endIteration |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| bool |
RecursiveIteratorIterator::callHasChildren |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| RecursiveIterator |
RecursiveIteratorIterator::callGetChildren |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
RecursiveIteratorIterator::beginChildren |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
RecursiveIteratorIterator::endChildren |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
RecursiveIteratorIterator::nextElement |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
RecursiveIteratorIterator::setMaxDepth |
([$max_depth = -1]) |
U
|
php-src/ext/spl/spl_iterators.c |
| int|false |
RecursiveIteratorIterator::getMaxDepth |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
RecursiveTreeIterator::__construct |
(RecursiveIterator|IteratorAggregate it [, int flags = RTIT_BYPASS_KEY [, int cit_flags = CIT_CATCH_GET_CHILD [, mode = RIT_SELF_FIRST ]]]) |
throws InvalidArgumentException U
|
php-src/ext/spl/spl_iterators.c |
| void |
RecursiveTreeIterator::setPrefixPart |
() |
throws OutOfRangeException
|
php-src/ext/spl/spl_iterators.c |
| string |
RecursiveTreeIterator::getPrefix |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| string |
RecursiveTreeIterator::getEntry |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| string |
RecursiveTreeIterator::getPostfix |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| mixed |
RecursiveTreeIterator::current |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| mixed |
RecursiveTreeIterator::key |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
FilterIterator::__construct |
(Iterator it) |
U
|
php-src/ext/spl/spl_iterators.c |
| Iterator |
FilterIterator::getInnerIterator |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| bool |
FilterIterator::valid |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| mixed |
FilterIterator::key |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| mixed |
FilterIterator::current |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
ParentIterator::next |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
FilterIterator::rewind |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
FilterIterator::next |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
RecursiveFilterIterator::__construct |
(RecursiveIterator it) |
U
|
php-src/ext/spl/spl_iterators.c |
| bool |
RecursiveFilterIterator::hasChildren |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| RecursiveFilterIterator |
RecursiveFilterIterator::getChildren |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
ParentIterator::__construct |
(RecursiveIterator it) |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
RegexIterator::__construct |
(Iterator it, string regex [, int mode [, int flags [, int preg_flags]]]) |
U
|
php-src/ext/spl/spl_iterators.c |
| bool |
RegexIterator::accept |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| bool |
RegexIterator::getMode |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| bool |
RegexIterator::setMode |
(int new_mode) |
U
|
php-src/ext/spl/spl_iterators.c |
| bool |
RegexIterator::getFlags |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| bool |
RegexIterator::setFlags |
(int new_flags) |
U
|
php-src/ext/spl/spl_iterators.c |
| bool |
RegexIterator::getFlags |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| bool |
RegexIterator::setPregFlags |
(int new_flags) |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
RecursiveRegexIterator::__construct |
(RecursiveIterator it, string regex [, int mode [, int flags [, int preg_flags]]]) |
U
|
php-src/ext/spl/spl_iterators.c |
| RecursiveRegexIterator |
RecursiveRegexIterator::getChildren |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
LimitIterator::rewind |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| bool |
LimitIterator::valid |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
LimitIterator::next |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
LimitIterator::seek |
(int position) |
U
|
php-src/ext/spl/spl_iterators.c |
| int |
LimitIterator::getPosition |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
CachingIterator::__construct |
(Iterator it [, flags = CIT_CALL_TOSTRING]) |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
CachingIterator::rewind |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| bool |
CachingIterator::valid |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
CachingIterator::next |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| bool |
CachingIterator::hasNext |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| string |
CachingIterator::__toString |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
CachingIterator::offsetSet |
(mixed index, mixed newval) |
U
|
php-src/ext/spl/spl_iterators.c |
| string |
CachingIterator::offsetGet |
(mixed index) |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
CachingIterator::offsetUnset |
(mixed index) |
U
|
php-src/ext/spl/spl_iterators.c |
| bool |
CachingIterator::offsetExists |
(mixed index) |
U
|
php-src/ext/spl/spl_iterators.c |
| bool |
CachingIterator::getCache |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| int |
CachingIterator::getFlags |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
CachingIterator::setFlags |
(int flags) |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
RecursiveCachingIterator::__construct |
(RecursiveIterator it [, flags = CIT_CALL_TOSTRING]) |
U
|
php-src/ext/spl/spl_iterators.c |
| bool |
RecursiveCachingIterator::hasChildren |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| RecursiveCachingIterator |
RecursiveCachingIterator::getChildren |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
IteratorIterator::__construct |
(Traversable it) |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
NoRewindIterator::__construct |
(Iterator it) |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
NoRewindIterator::rewind |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| bool |
NoRewindIterator::valid |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| mixed |
NoRewindIterator::key |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| mixed |
NoRewindIterator::current |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
NoRewindIterator::next |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
InfiniteIterator::__construct |
(Iterator it) |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
InfiniteIterator::next |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
EmptyIterator::rewind |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| false |
EmptyIterator::valid |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
EmptyIterator::key |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
EmptyIterator::current |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
EmptyIterator::next |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
AppendIterator::__construct |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
AppendIterator::append |
(Iterator it) |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
AppendIterator::rewind |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| bool |
AppendIterator::valid |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
AppendIterator::next |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| int |
AppendIterator::getIteratorIndex |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| ArrayIterator |
AppendIterator::getArrayIterator |
() |
U
|
php-src/ext/spl/spl_iterators.c |
| array |
iterator_to_array |
(Traversable it [, bool use_keys = true]) |
U
|
php-src/ext/spl/spl_iterators.c |
| int |
iterator_count |
(Traversable it) |
U
|
php-src/ext/spl/spl_iterators.c |
| int |
iterator_apply |
(Traversable it, mixed function [, mixed params]) |
U
|
php-src/ext/spl/spl_iterators.c |
| void |
SplObjectStorage::attach |
($obj, $inf = NULL) |
U
|
php-src/ext/spl/spl_observer.c |
| void |
SplObjectStorage::detach |
($obj) |
U
|
php-src/ext/spl/spl_observer.c |
| mixed |
SplObjectStorage::offsetGet |
($object) |
U
|
php-src/ext/spl/spl_observer.c |
| bool |
SplObjectStorage::contains |
($obj) |
U
|
php-src/ext/spl/spl_observer.c |
| int |
SplObjectStorage::count |
() |
U
|
php-src/ext/spl/spl_observer.c |
| void |
SplObjectStorage::rewind |
() |
U
|
php-src/ext/spl/spl_observer.c |
| bool |
SplObjectStorage::valid |
() |
U
|
php-src/ext/spl/spl_observer.c |
| mixed |
SplObjectStorage::key |
() |
U
|
php-src/ext/spl/spl_observer.c |
| mixed |
SplObjectStorage::current |
() |
U
|
php-src/ext/spl/spl_observer.c |
| mixed |
SplObjectStorage::getInfo |
() |
U
|
php-src/ext/spl/spl_observer.c |
| mixed |
SplObjectStorage::setInfo |
(mixed $inf) |
U
|
php-src/ext/spl/spl_observer.c |
| void |
SplObjectStorage::next |
() |
U
|
php-src/ext/spl/spl_observer.c |
| string |
SplObjectStorage::serialize |
() |
U
|
php-src/ext/spl/spl_observer.c |
| void |
SplObjectStorage::unserialize |
(string serialized) |
U
|
php-src/ext/spl/spl_observer.c |
| void |
MultipleIterator::__construct |
([int flags = MIT_NEED_ALL|MIT_KEYS_NUMERIC]) |
U
|
php-src/ext/spl/spl_observer.c |
| int |
MultipleIterator::getFlags |
() |
U
|
php-src/ext/spl/spl_observer.c |
| int |
MultipleIterator::setFlags |
(int flags) |
U
|
php-src/ext/spl/spl_observer.c |
| void |
attachIterator |
(Iterator iterator[, mixed info]) |
throws InvalidArgumentException U
|
php-src/ext/spl/spl_observer.c |
| void |
MultipleIterator::rewind |
() |
U
|
php-src/ext/spl/spl_observer.c |
| void |
MultipleIterator::next |
() |
U
|
php-src/ext/spl/spl_observer.c |
| bool |
MultipleIterator::valid |
() |
U
|
php-src/ext/spl/spl_observer.c |
| array |
current |
() |
throws RuntimeException throws InvalidArgumentException U
|
php-src/ext/spl/spl_observer.c |
| array |
MultipleIterator::key |
() |
U
|
php-src/ext/spl/spl_observer.c |
| resource |
sqlite_popen |
(string filename [, int mode [, string &error_message]]) |
U
|
php-src/ext/sqlite/sqlite.c |
| resource |
sqlite_open |
(string filename [, int mode [, string &error_message]]) |
U
|
php-src/ext/sqlite/sqlite.c |
| object |
sqlite_factory |
(string filename [, int mode [, string &error_message]]) |
U
|
php-src/ext/sqlite/sqlite.c |
| void |
sqlite_busy_timeout |
(resource db, int ms) |
U
|
php-src/ext/sqlite/sqlite.c |
| void |
sqlite_close |
(resource db) |
U
|
php-src/ext/sqlite/sqlite.c |
| resource |
sqlite_unbuffered_query |
(string query, resource db [ , int result_type [, string &error_message]]) |
U
|
php-src/ext/sqlite/sqlite.c |
| resource |
sqlite_fetch_column_types |
(string table_name, resource db [, int result_type]) |
U
|
php-src/ext/sqlite/sqlite.c |
| resource |
sqlite_query |
(string query, resource db [, int result_type [, string &error_message]]) |
U
|
php-src/ext/sqlite/sqlite.c |
| boolean |
sqlite_exec |
(string query, resource db[, string &error_message]) |
U
|
php-src/ext/sqlite/sqlite.c |
| array |
sqlite_fetch_all |
(resource result [, int result_type [, bool decode_binary]]) |
U
|
php-src/ext/sqlite/sqlite.c |
| array |
sqlite_fetch_array |
(resource result [, int result_type [, bool decode_binary]]) |
U
|
php-src/ext/sqlite/sqlite.c |
| object |
sqlite_fetch_object |
(resource result [, string class_name [, NULL|array ctor_params [, bool decode_binary]]]) |
U
|
php-src/ext/sqlite/sqlite.c |
| array |
sqlite_array_query |
(resource db, string query [ , int result_type [, bool decode_binary]]) |
U
|
php-src/ext/sqlite/sqlite.c |
| array |
sqlite_single_query |
(resource db, string query [, bool first_row_only [, bool decode_binary]]) |
U
|
php-src/ext/sqlite/sqlite.c |
| string |
sqlite_fetch_single |
(resource result [, bool decode_binary]) |
U
|
php-src/ext/sqlite/sqlite.c |
| array |
sqlite_current |
(resource result [, int result_type [, bool decode_binary]]) |
U
|
php-src/ext/sqlite/sqlite.c |
| mixed |
sqlite_column |
(resource result, mixed index_or_name [, bool decode_binary]) |
U
|
php-src/ext/sqlite/sqlite.c |
| string |
sqlite_libversion |
() |
U
|
php-src/ext/sqlite/sqlite.c |
| string |
sqlite_libencoding |
() |
U
|
php-src/ext/sqlite/sqlite.c |
| int |
sqlite_changes |
(resource db) |
U
|
php-src/ext/sqlite/sqlite.c |
| int |
sqlite_last_insert_rowid |
(resource db) |
U
|
php-src/ext/sqlite/sqlite.c |
| int |
sqlite_num_rows |
(resource result) |
U
|
php-src/ext/sqlite/sqlite.c |
| bool |
sqlite_valid |
(resource result) |
U
|
php-src/ext/sqlite/sqlite.c |
| bool |
sqlite_has_prev |
(resource result) |
U
|
php-src/ext/sqlite/sqlite.c |
| int |
sqlite_num_fields |
(resource result) |
U
|
php-src/ext/sqlite/sqlite.c |
| string |
sqlite_field_name |
(resource result, int field_index) |
U
|
php-src/ext/sqlite/sqlite.c |
| bool |
sqlite_seek |
(resource result, int row) |
U
|
php-src/ext/sqlite/sqlite.c |
| bool |
sqlite_rewind |
(resource result) |
U
|
php-src/ext/sqlite/sqlite.c |
| bool |
sqlite_next |
(resource result) |
U
|
php-src/ext/sqlite/sqlite.c |
| int |
sqlite_key |
(resource result) |
U
|
php-src/ext/sqlite/sqlite.c |
| bool |
sqlite_prev |
(resource result) |
U
|
php-src/ext/sqlite/sqlite.c |
| string |
sqlite_escape_string |
(string item) |
U
|
php-src/ext/sqlite/sqlite.c |
| int |
sqlite_last_error |
(resource db) |
U
|
php-src/ext/sqlite/sqlite.c |
| string |
sqlite_error_string |
(int error_code) |
U
|
php-src/ext/sqlite/sqlite.c |
| bool |
sqlite_create_aggregate |
(resource db, string funcname, mixed step_func, mixed finalize_func[, long num_args]) |
U
|
php-src/ext/sqlite/sqlite.c |
| bool |
sqlite_create_function |
(resource db, string funcname, mixed callback[, long num_args]) |
U
|
php-src/ext/sqlite/sqlite.c |
| string |
sqlite_udf_encode_binary |
(string data) |
U
|
php-src/ext/sqlite/sqlite.c |
| string |
sqlite_udf_decode_binary |
(string data) |
U
|
php-src/ext/sqlite/sqlite.c |
| bool |
krsort |
(array &array_arg [, int sort_flags]) |
U
|
php-src/ext/standard/array.c |
| bool |
ksort |
(array &array_arg [, int sort_flags]) |
U
|
php-src/ext/standard/array.c |
| int |
count |
(mixed var [, int mode]) |
U
|
php-src/ext/standard/array.c |
| void |
natsort |
(array &array_arg) |
U
|
php-src/ext/standard/array.c |
| void |
natcasesort |
(array &array_arg) |
U
|
php-src/ext/standard/array.c |
| bool |
asort |
(array &array_arg [, int sort_flags]) |
U
|
php-src/ext/standard/array.c |
| bool |
arsort |
(array &array_arg [, int sort_flags]) |
U
|
php-src/ext/standard/array.c |
| bool |
sort |
(array &array_arg [, int sort_flags]) |
U
|
php-src/ext/standard/array.c |
| bool |
rsort |
(array &array_arg [, int sort_flags]) |
U
|
php-src/ext/standard/array.c |
| bool |
usort |
(array array_arg, mixed comparator) |
U
|
php-src/ext/standard/array.c |
| bool |
uasort |
(array array_arg, mixed comparator) |
U
|
php-src/ext/standard/array.c |
| bool |
uksort |
(array array_arg, mixed comparator) |
U
|
php-src/ext/standard/array.c |
| mixed |
end |
(array array_arg) |
U
|
php-src/ext/standard/array.c |
| mixed |
prev |
(array array_arg) |
U
|
php-src/ext/standard/array.c |
| mixed |
next |
(array array_arg) |
U
|
php-src/ext/standard/array.c |
| mixed |
reset |
(array array_arg) |
U
|
php-src/ext/standard/array.c |
| mixed |
current |
(array array_arg) |
U
|
php-src/ext/standard/array.c |
| mixed |
key |
(array array_arg) |
U
|
php-src/ext/standard/array.c |
| mixed |
min |
(mixed arg1 [, mixed arg2 [, mixed ...]]) |
U
|
php-src/ext/standard/array.c |
| mixed |
max |
(mixed arg1 [, mixed arg2 [, mixed ...]]) |
U
|
php-src/ext/standard/array.c |
| bool |
array_walk |
(array input, mixed callback [, mixed userdata]) |
U
|
php-src/ext/standard/array.c |
| bool |
array_walk_recursive |
(array input, mixed callback [, mixed userdata]) |
U
|
php-src/ext/standard/array.c |
| bool |
in_array |
(mixed needle, array haystack [, bool strict]) |
U
|
php-src/ext/standard/array.c |
| mixed |
array_search |
(mixed needle, array haystack [, bool strict]) |
U
|
php-src/ext/standard/array.c |
| int |
extract |
(array var_array [, int extract_type [, string prefix]]) |
U
|
php-src/ext/standard/array.c |
| array |
compact |
(mixed var_names [, mixed ...]) |
U
|
php-src/ext/standard/array.c |
| array |
array_fill |
(int start_key, int num, mixed val) |
U
|
php-src/ext/standard/array.c |
| array |
array_fill_keys |
(array keys, mixed val) |
U
|
php-src/ext/standard/array.c |
| array |
range |
(mixed low, mixed high[, int step]) |
U
|
php-src/ext/standard/array.c |
| bool |
shuffle |
(array array_arg) |
U
|
php-src/ext/standard/array.c |
| int |
array_push |
(array stack, mixed var [, mixed ...]) |
U
|
php-src/ext/standard/array.c |
| mixed |
array_pop |
(array stack) |
U
|
php-src/ext/standard/array.c |
| mixed |
array_shift |
(array stack) |
U
|
php-src/ext/standard/array.c |
| int |
array_unshift |
(array stack, mixed var [, mixed ...]) |
U
|
php-src/ext/standard/array.c |
| array |
array_splice |
(array input, int offset [, int length [, array replacement]]) |
U
|
php-src/ext/standard/array.c |
| array |
array_slice |
(array input, int offset [, int length [, bool preserve_keys]]) |
U
|
php-src/ext/standard/array.c |
| array |
array_merge |
(array arr1, array arr2 [, array ...]) |
U
|
php-src/ext/standard/array.c |
| array |
array_merge_recursive |
(array arr1, array arr2 [, array ...]) |
U
|
php-src/ext/standard/array.c |
| array |
array_replace |
(array arr1, array arr2 [, array ...]) |
U
|
php-src/ext/standard/array.c |
| array |
array_replace_recursive |
(array arr1, array arr2 [, array ...]) |
U
|
php-src/ext/standard/array.c |
| array |
array_keys |
(array input [, mixed search_value[, bool strict]]) |
U
|
php-src/ext/standard/array.c |
| array |
array_values |
(array input) |
U
|
php-src/ext/standard/array.c |
| array |
array_count_values |
(array input) |
U
|
php-src/ext/standard/array.c |
| array |
array_reverse |
(array input [, bool preserve keys]) |
U
|
php-src/ext/standard/array.c |
| array |
array_pad |
(array input, int pad_size, mixed pad_value) |
U
|
php-src/ext/standard/array.c |
| array |
array_flip |
(array input) |
U
|
php-src/ext/standard/array.c |
| array |
array_change_key_case |
(array input [, int case=CASE_LOWER]) |
U
|
php-src/ext/standard/array.c |
| array |
array_unique |
(array input [, int sort_flags]) |
U
|
php-src/ext/standard/array.c |
| array |
array_intersect_key |
(array arr1, array arr2 [, array ...]) |
U
|
php-src/ext/standard/array.c |
| array |
array_intersect_ukey |
(array arr1, array arr2 [, array ...], callback key_compare_func) |
U
|
php-src/ext/standard/array.c |
| array |
array_intersect |
(array arr1, array arr2 [, array ...]) |
U
|
php-src/ext/standard/array.c |
| array |
array_uintersect |
(array arr1, array arr2 [, array ...], callback data_compare_func) |
U
|
php-src/ext/standard/array.c |
| array |
array_intersect_assoc |
(array arr1, array arr2 [, array ...]) |
U
|
php-src/ext/standard/array.c |
| array |
array_intersect_uassoc |
(array arr1, array arr2 [, array ...], callback key_compare_func) |
U
|
php-src/ext/standard/array.c |
| array |
array_uintersect_assoc |
(array arr1, array arr2 [, array ...], callback data_compare_func) |
U
|
php-src/ext/standard/array.c |
| array |
array_uintersect_uassoc |
(array arr1, array arr2 [, array ...], callback data_compare_func, callback key_compare_func) |
U
|
php-src/ext/standard/array.c |
| array |
array_diff_key |
(array arr1, array arr2 [, array ...]) |
U
|
php-src/ext/standard/array.c |
| array |
array_diff_ukey |
(array arr1, array arr2 [, array ...], callback key_comp_func) |
U
|
php-src/ext/standard/array.c |
| array |
array_diff |
(array arr1, array arr2 [, array ...]) |
U
|
php-src/ext/standard/array.c |
| array |
array_udiff |
(array arr1, array arr2 [, array ...], callback data_comp_func) |
U
|
php-src/ext/standard/array.c |
| array |
array_diff_assoc |
(array arr1, array arr2 [, array ...]) |
U
|
php-src/ext/standard/array.c |
| array |
array_diff_uassoc |
(array arr1, array arr2 [, array ...], callback key_comp_func) |
U
|
php-src/ext/standard/array.c |
| array |
array_udiff_assoc |
(array arr1, array arr2 [, array ...], callback data_comp_func) |
U
|
php-src/ext/standard/array.c |
| array |
array_udiff_uassoc |
(array arr1, array arr2 [, array ...], callback data_comp_func, callback key_comp_func) |
U
|
php-src/ext/standard/array.c |
| bool |
array_multisort |
(array ar1 [, SORT_ASC|SORT_DESC [, SORT_REGULAR|SORT_NUMERIC|SORT_STRING]] [, array ar2 [, SORT_ASC|SORT_DESC [, SORT_REGULAR|SORT_NUMERIC|SORT_STRING]], ...]) |
U
|
php-src/ext/standard/array.c |
| mixed |
array_rand |
(array input [, int num_req]) |
U
|
php-src/ext/standard/array.c |
| mixed |
array_sum |
(array input) |
U
|
php-src/ext/standard/array.c |
| mixed |
array_product |
(array input) |
U
|
php-src/ext/standard/array.c |
| mixed |
array_reduce |
(array input, mixed callback [, mixed initial]) |
U
|
php-src/ext/standard/array.c |
| array |
array_filter |
(array input [, mixed callback]) |
U
|
php-src/ext/standard/array.c |
| array |
array_map |
(mixed callback, array input1 [, array input2 ,...]) |
U
|
php-src/ext/standard/array.c |
| bool |
array_key_exists |
(mixed key, array search) |
U
|
php-src/ext/standard/array.c |
| array |
array_chunk |
(array input, int size [, bool preserve_keys]) |
U
|
php-src/ext/standard/array.c |
| array |
array_combine |
(array keys, array values) |
U
|
php-src/ext/standard/array.c |
| int |
assert |
(string|bool assertion) |
U
|
php-src/ext/standard/assert.c |
| mixed |
assert_options |
(int what [, mixed value]) |
U
|
php-src/ext/standard/assert.c |
| binary |
base64_encode |
(binary str) |
U
|
php-src/ext/standard/base64.c |
| binary |
base64_decode |
(binary str[, bool strict]) |
U
|
php-src/ext/standard/base64.c |
| mixed |
constant |
(string const_name) |
U
|
php-src/ext/standard/basic_functions.c |
| string |
inet_ntop |
(string in_addr) |
U
|
php-src/ext/standard/basic_functions.c |
| string |
inet_pton |
(string ip_address) |
U
|
php-src/ext/standard/basic_functions.c |
| int |
ip2long |
(string ip_address) |
U
|
php-src/ext/standard/basic_functions.c |
| string |
long2ip |
(int proper_address) |
U
|
php-src/ext/standard/basic_functions.c |
| string |
getenv |
(string varname) |
U
|
php-src/ext/standard/basic_functions.c |
| bool |
putenv |
(string setting) |
U
|
php-src/ext/standard/basic_functions.c |
| array |
getopt |
(string options [, array longopts]) |
U
|
php-src/ext/standard/basic_functions.c |
| void |
flush |
(void) |
U
|
php-src/ext/standard/basic_functions.c |
| void |
sleep |
(int seconds) |
U
|
php-src/ext/standard/basic_functions.c |
| void |
usleep |
(int micro_seconds) |
U
|
php-src/ext/standard/basic_functions.c |
| mixed |
time_nanosleep |
(long seconds, long nanoseconds) |
U
|
php-src/ext/standard/basic_functions.c |
| mixed |
time_sleep_until |
(float timestamp) |
U
|
php-src/ext/standard/basic_functions.c |
| string |
get_current_user |
(void) |
U
|
php-src/ext/standard/basic_functions.c |
| mixed |
get_cfg_var |
(string option_name) |
U
|
php-src/ext/standard/basic_functions.c |
| mixed |
get_magic_quotes_runtime |
(void) |
U
|
php-src/ext/standard/basic_functions.c |
| mixed |
get_magic_quotes_gpc |
(void) |
U
|
php-src/ext/standard/basic_functions.c |
| array |
error_get_last |
() |
U
|
php-src/ext/standard/basic_functions.c |
| mixed |
call_user_func |
(mixed function_name [, mixed parmeter] [, mixed ...]) |
U
|
php-src/ext/standard/basic_functions.c |
| mixed |
call_user_func_array |
(string function_name, array parameters) |
U
|
php-src/ext/standard/basic_functions.c |
| mixed |
call_user_method |
(string method_name, mixed object [, mixed parameter] [, mixed ...]) |
U
|
php-src/ext/standard/basic_functions.c |
| mixed |
call_user_method_array |
(string method_name, mixed object, array params) |
U
|
php-src/ext/standard/basic_functions.c |
| mixed |
forward_static_call |
(mixed function_name [, mixed parmeter] [, mixed ...]) |
U
|
php-src/ext/standard/basic_functions.c |
| mixed |
call_user_func_array |
(string function_name, array parameters) |
U
|
php-src/ext/standard/basic_functions.c |
| void |
register_shutdown_function |
(string function_name) |
U
|
php-src/ext/standard/basic_functions.c |
| bool |
highlight_file |
(string file_name [, bool return] ) |
U
|
php-src/ext/standard/basic_functions.c |
| string |
php_strip_whitespace |
(string file_name) |
U
|
php-src/ext/standard/basic_functions.c |
| bool |
highlight_string |
(string string [, bool return] ) |
U
|
php-src/ext/standard/basic_functions.c |
| string |
ini_get |
(string varname) |
U
|
php-src/ext/standard/basic_functions.c |
| array |
ini_get_all |
([string extension[, bool details = true]]) |
U
|
php-src/ext/standard/basic_functions.c |
| string |
ini_set |
(string varname, string newvalue) |
U
|
php-src/ext/standard/basic_functions.c |
| void |
ini_restore |
(string varname) |
U
|
php-src/ext/standard/basic_functions.c |
| string |
set_include_path |
(string new_include_path) |
U
|
php-src/ext/standard/basic_functions.c |
| string |
get_include_path |
() |
U
|
php-src/ext/standard/basic_functions.c |
| void |
restore_include_path |
() |
U
|
php-src/ext/standard/basic_functions.c |
| mixed |
print_r |
(mixed var [, bool return]) |
U
|
php-src/ext/standard/basic_functions.c |
| int |
connection_aborted |
(void) |
U
|
php-src/ext/standard/basic_functions.c |
| int |
connection_status |
(void) |
U
|
php-src/ext/standard/basic_functions.c |
| int |
ignore_user_abort |
([string value]) |
U
|
php-src/ext/standard/basic_functions.c |
| int |
getservbyname |
(string service, string protocol) |
U
|
php-src/ext/standard/basic_functions.c |
| string |
getservbyport |
(int port, string protocol) |
U
|
php-src/ext/standard/basic_functions.c |
| int |
getprotobyname |
(string name) |
U
|
php-src/ext/standard/basic_functions.c |
| string |
getprotobynumber |
(int proto) |
U
|
php-src/ext/standard/basic_functions.c |
| bool |
register_tick_function |
(string function_name [, mixed arg [, mixed ... ]]) |
U
|
php-src/ext/standard/basic_functions.c |
| void |
unregister_tick_function |
(string function_name) |
U
|
php-src/ext/standard/basic_functions.c |
| bool |
is_uploaded_file |
(string path) |
U
|
php-src/ext/standard/basic_functions.c |
| bool |
move_uploaded_file |
(string path, string new_path) |
U
|
php-src/ext/standard/basic_functions.c |
| array |
parse_ini_file |
(string filename [, bool process_sections [, int scanner_mode]]) |
U
|
php-src/ext/standard/basic_functions.c |
| array |
parse_ini_string |
(string ini_string [, bool process_sections [, int scanner_mode]]) |
U
|
php-src/ext/standard/basic_functions.c |
| bool |
import_request_variables |
(string types [, string prefix]) |
U
|
php-src/ext/standard/basic_functions.c |
| array |
sys_getloadavg |
() |
U
|
php-src/ext/standard/basic_functions.c |
| mixed |
get_browser |
([string browser_name [, bool return_array]]) |
U
|
php-src/ext/standard/browscap.c |
| string |
crc32 |
(string str) |
U
|
php-src/ext/standard/crc32.c |
| string |
crypt |
(string str [, string salt]) |
U
|
php-src/ext/standard/crypt.c |
| string |
convert_cyr_string |
(string str, string from, string to) |
U
|
php-src/ext/standard/cyr_convert.c |
| string |
strptime |
(string timestamp, string format) |
U
|
php-src/ext/standard/datetime.c |
| mixed |
opendir |
(string path[, resource context]) |
U
|
php-src/ext/standard/dir.c |
| object |
dir |
(string directory[, resource context]) |
U
|
php-src/ext/standard/dir.c |
| void |
closedir |
([resource dir_handle]) |
U
|
php-src/ext/standard/dir.c |
| bool |
chroot |
(string directory) |
U
|
php-src/ext/standard/dir.c |
| bool |
chdir |
(string directory) |
U
|
php-src/ext/standard/dir.c |
| mixed |
getcwd |
(void) |
U
|
php-src/ext/standard/dir.c |
| void |
rewinddir |
([resource dir_handle]) |
U
|
php-src/ext/standard/dir.c |
| string |
readdir |
([resource dir_handle]) |
U
|
php-src/ext/standard/dir.c |
| array |
glob |
(string pattern [, int flags]) |
U
|
php-src/ext/standard/dir.c |
| array |
scandir |
(string dir [, int sorting_order [, resource context]]) |
U
|
php-src/ext/standard/dir.c |
| int |
dl |
(string extension_filename) |
U
|
php-src/ext/standard/dl.c |
| string |
gethostbyaddr |
(string ip_address) |
U
|
php-src/ext/standard/dns.c |
| string |
gethostbyname |
(string hostname) |
U
|
php-src/ext/standard/dns.c |
| array |
gethostbynamel |
(string hostname) |
U
|
php-src/ext/standard/dns.c |
| bool |
dns_check_record |
(string host [, string type]) |
U
|
php-src/ext/standard/dns.c |
| array|false |
dns_get_record |
(string hostname [, int type[, array authns, array addtl]]) |
U
|
php-src/ext/standard/dns.c |
| bool |
dns_get_mx |
(string hostname, array mxhosts [, array weight]) |
U
|
php-src/ext/standard/dns.c |
| string |
exec |
(string command [, array &output [, int &return_value]]) |
U
|
php-src/ext/standard/exec.c |
| int |
system |
(string command [, int &return_value]) |
U
|
php-src/ext/standard/exec.c |
| void |
passthru |
(string command [, int &return_value]) |
U
|
php-src/ext/standard/exec.c |
| string |
escapeshellcmd |
(string command) |
U
|
php-src/ext/standard/exec.c |
| string |
escapeshellarg |
(string arg) |
U
|
php-src/ext/standard/exec.c |
| string |
shell_exec |
(string cmd) |
U
|
php-src/ext/standard/exec.c |
| bool |
proc_nice |
(int priority) |
U
|
php-src/ext/standard/exec.c |
| bool |
flock |
(resource fp, int operation [, int &wouldblock]) |
U
|
php-src/ext/standard/file.c |
| array |
get_meta_tags |
(string filename [, bool use_include_path]) |
U
|
php-src/ext/standard/file.c |
| string |
file_get_contents |
(string filename [, long flags [, resource context [, long offset [, long maxlen]]]]) |
U
|
php-src/ext/standard/file.c |
| int |
file_put_contents |
(string file, mixed data [, int flags [, resource context]]) |
U
|
php-src/ext/standard/file.c |
| array |
file |
(string filename [, int flags[, resource context]]) |
U
|
php-src/ext/standard/file.c |
| string |
tempnam |
(string dir, string prefix) |
U
|
php-src/ext/standard/file.c |
| resource |
tmpfile |
(void) |
U
|
php-src/ext/standard/file.c |
| resource |
fopen |
(string filename, string mode [, bool use_include_path [, resource context]]) |
U
|
php-src/ext/standard/file.c |
| bool |
fclose |
(resource fp) |
U
|
php-src/ext/standard/file.c |
| resource |
popen |
(string command, string mode) |
U
|
php-src/ext/standard/file.c |
| int |
pclose |
(resource fp) |
U
|
php-src/ext/standard/file.c |
| bool |
feof |
(resource fp) |
U
|
php-src/ext/standard/file.c |
| string |
fgets |
(resource fp[, int lengthish]) |
U
|
php-src/ext/standard/file.c |
| string |
fgetc |
(resource fp) |
U
|
php-src/ext/standard/file.c |
| string |
fgetss |
(resource fp [, int lengthish [, string allowable_tags]]) |
U
|
php-src/ext/standard/file.c |
| mixed |
fscanf |
(resource stream, string format [, string ...]) |
U
|
php-src/ext/standard/file.c |
| int |
fwrite |
(resource fp, string str [, int length]) |
U
|
php-src/ext/standard/file.c |
| bool |
fflush |
(resource fp) |
U
|
php-src/ext/standard/file.c |
| bool |
rewind |
(resource fp) |
U
|
php-src/ext/standard/file.c |
| int |
ftell |
(resource fp) |
U
|
php-src/ext/standard/file.c |
| int |
fseek |
(resource fp, int offset [, int whence]) |
U
|
php-src/ext/standard/file.c |
| bool |
mkdir |
(string pathname [, int mode [, bool recursive [, resource context]]]) |
U
|
php-src/ext/standard/file.c |
| bool |
rmdir |
(string dirname[, resource context]) |
U
|
php-src/ext/standard/file.c |
| int |
readfile |
(string filename [, int flags[, resource context]]) |
U
|
php-src/ext/standard/file.c |
| int |
umask |
([int mask]) |
U
|
php-src/ext/standard/file.c |
| int |
fpassthru |
(resource fp) |
U
|
php-src/ext/standard/file.c |
| bool |
rename |
(string old_name, string new_name[, resource context]) |
U
|
php-src/ext/standard/file.c |
| bool |
unlink |
(string filename[, context context]) |
U
|
php-src/ext/standard/file.c |
| bool |
ftruncate |
(resource fp, int size) |
U
|
php-src/ext/standard/file.c |
| array |
fstat |
(resource fp) |
U
|
php-src/ext/standard/file.c |
| bool |
copy |
(string source_file, string destination_file[, resource context]) |
U
|
php-src/ext/standard/file.c |
| string |
fread |
(resource fp, int length) |
U
|
php-src/ext/standard/file.c |
| array |
fgetcsv |
(resource fp [,int length [, string delimiter [, string enclosure[, string escape]]]]) |
U
|
php-src/ext/standard/file.c |
| string |
realpath |
(string path) |
U
|
php-src/ext/standard/file.c |
| bool |
fnmatch |
(string pattern, string filename [, int flags]) |
U
|
php-src/ext/standard/file.c |
| string |
sys_get_temp_dir |
() |
U
|
php-src/ext/standard/file.c |
| float |
disk_total_space |
(string path) |
U
|
php-src/ext/standard/filestat.c |
| float |
disk_free_space |
(string path) |
U
|
php-src/ext/standard/filestat.c |
| bool |
chgrp |
(string filename, mixed group) |
U
|
php-src/ext/standard/filestat.c |
| bool |
lchgrp |
(string filename, mixed group) |
U
|
php-src/ext/standard/filestat.c |
| bool |
chown |
(string filename, mixed user) |
U
|
php-src/ext/standard/filestat.c |
| bool |
lchown |
(string filename, mixed user) |
U
|
php-src/ext/standard/filestat.c |
| bool |
chmod |
(string filename, int mode) |
U
|
php-src/ext/standard/filestat.c |
| bool |
touch |
(string filename [, int time [, int atime]]) |
U
|
php-src/ext/standard/filestat.c |
| int |
fileperms |
(string filename) |
U
|
php-src/ext/standard/filestat.c |
| int |
fileinode |
(string filename) |
U
|
php-src/ext/standard/filestat.c |
| int |
filesize |
(string filename) |
U
|
php-src/ext/standard/filestat.c |
| int |
fileowner |
(string filename) |
U
|
php-src/ext/standard/filestat.c |
| int |
filegroup |
(string filename) |
U
|
php-src/ext/standard/filestat.c |
| int |
fileatime |
(string filename) |
U
|
php-src/ext/standard/filestat.c |
| int |
filemtime |
(string filename) |
U
|
php-src/ext/standard/filestat.c |
| int |
filectime |
(string filename) |
U
|
php-src/ext/standard/filestat.c |
| string |
filetype |
(string filename) |
U
|
php-src/ext/standard/filestat.c |
| bool |
is_writable |
(string filename) |
U
|
php-src/ext/standard/filestat.c |
| bool |
is_readable |
(string filename) |
U
|
php-src/ext/standard/filestat.c |
| bool |
is_executable |
(string filename) |
U
|
php-src/ext/standard/filestat.c |
| bool |
is_file |
(string filename) |
U
|
php-src/ext/standard/filestat.c |
| bool |
is_dir |
(string filename) |
U
|
php-src/ext/standard/filestat.c |
| bool |
is_link |
(string filename) |
U
|
php-src/ext/standard/filestat.c |
| bool |
file_exists |
(string filename) |
U
|
php-src/ext/standard/filestat.c |
| array |
lstat |
(string filename) |
U
|
php-src/ext/standard/filestat.c |
| array |
stat |
(string filename) |
U
|
php-src/ext/standard/filestat.c |
| string |
sprintf |
(string format [, mixed arg1 [, mixed ...]]) |
U
|
php-src/ext/standard/formatted_print.c |
| string |
vsprintf |
(string format, array args) |
U
|
php-src/ext/standard/formatted_print.c |
| int |
printf |
(string format [, mixed arg1 [, mixed ...]]) |
U
|
php-src/ext/standard/formatted_print.c |
| int |
vprintf |
(string format, array args) |
U
|
php-src/ext/standard/formatted_print.c |
| int |
fprintf |
(resource stream, string format [, mixed arg1 [, mixed ...]]) |
U
|
php-src/ext/standard/formatted_print.c |
| int |
vfprintf |
(resource stream, string format, array args) |
U
|
php-src/ext/standard/formatted_print.c |
| resource |
fsockopen |
(string hostname, int port [, int errno [, string errstr [, float timeout]]]) |
U
|
php-src/ext/standard/fsock.c |
| resource |
pfsockopen |
(string hostname, int port [, int errno [, string errstr [, float timeout]]]) |
U
|
php-src/ext/standard/fsock.c |
| int |
ftok |
(string pathname, string proj) |
U
|
php-src/ext/standard/ftok.c |
| void |
header |
(string header [, bool replace, [int http_response_code]]) |
U
|
php-src/ext/standard/head.c |
| void |
header_remove |
([string name]) |
U
|
php-src/ext/standard/head.c |
| bool |
setcookie |
(string name [, string value [, int expires [, string path [, string domain [, bool secure[, bool httponly]]]]]]) |
U
|
php-src/ext/standard/head.c |
| bool |
setrawcookie |
(string name [, string value [, int expires [, string path [, string domain [, bool secure[, bool httponly]]]]]]) |
U
|
php-src/ext/standard/head.c |
| bool |
headers_sent |
([string &$file [, int &$line]]) |
U
|
php-src/ext/standard/head.c |
| array |
headers_list |
(void) |
U
|
php-src/ext/standard/head.c |
| string |
htmlspecialchars_decode |
(string string [, int quote_style]) |
U
|
php-src/ext/standard/html.c |
| string |
html_entity_decode |
(string string [, int quote_style][, string charset]) |
U
|
php-src/ext/standard/html.c |
| array |
get_html_translation_table |
([int table [, int quote_style]]) |
U
|
php-src/ext/standard/html.c |
| string |
http_build_query |
(mixed formdata [, string prefix [, string arg_separator]]) |
U
|
php-src/ext/standard/http.c |
| string |
image_type_to_mime_type |
(int imagetype) |
U
|
php-src/ext/standard/image.c |
| string |
image_type_to_extension |
(int imagetype [, bool include_dot]) |
U
|
php-src/ext/standard/image.c |
| array |
getimagesize |
(string imagefile [, array info]) |
U
|
php-src/ext/standard/image.c |
| void |
phpinfo |
([int what]) |
U
|
php-src/ext/standard/info.c |
| string |
phpversion |
([string extension]) |
U
|
php-src/ext/standard/info.c |
| void |
phpcredits |
([int flag]) |
U
|
php-src/ext/standard/info.c |
| string |
php_logo_guid |
(void) |
U
|
php-src/ext/standard/info.c |
| string |
php_real_logo_guid |
(void) |
U
|
php-src/ext/standard/info.c |
| string |
php_egg_logo_guid |
(void) |
U
|
php-src/ext/standard/info.c |
| string |
zend_logo_guid |
(void) |
U
|
php-src/ext/standard/info.c |
| string |
php_sapi_name |
(void) |
U
|
php-src/ext/standard/info.c |
| string |
php_uname |
(void) |
U
|
php-src/ext/standard/info.c |
| string |
php_ini_scanned_files |
(void) |
U
|
php-src/ext/standard/info.c |
| array |
iptcembed |
(string iptcdata, string jpeg_file_name [, int spool]) |
U
|
php-src/ext/standard/iptc.c |
| array |
iptcparse |
(string iptcdata) |
U
|
php-src/ext/standard/iptc.c |
| float |
lcg_value |
() |
U
|
php-src/ext/standard/lcg.c |
| int |
levenshtein |
(string str1, string str2[, int cost_ins, int cost_rep, int cost_del]) |
U
|
php-src/ext/standard/levenshtein.c |
| string |
readlink |
(string filename) |
U
|
php-src/ext/standard/link.c |
| int |
linkinfo |
(string filename) |
U
|
php-src/ext/standard/link.c |
| int |
symlink |
(string target, string link) |
U
|
php-src/ext/standard/link.c |
| int |
link |
(string target, string link) |
U
|
php-src/ext/standard/link.c |
| int |
ezmlm_hash |
(string addr) |
U
|
php-src/ext/standard/mail.c |
| int |
abs |
(int number) |
U
|
php-src/ext/standard/math.c |
| float |
ceil |
(float number) |
U
|
php-src/ext/standard/math.c |
| float |
floor |
(float number) |
U
|
php-src/ext/standard/math.c |
| float |
round |
(float number [, int precision [, int mode]]) |
U
|
php-src/ext/standard/math.c |
| float |
sin |
(float number) |
U
|
php-src/ext/standard/math.c |
| float |
cos |
(float number) |
U
|
php-src/ext/standard/math.c |
| float |
tan |
(float number) |
U
|
php-src/ext/standard/math.c |
| float |
asin |
(float number) |
U
|
php-src/ext/standard/math.c |
| float |
acos |
(float number) |
U
|
php-src/ext/standard/math.c |
| float |
atan |
(float number) |
U
|
php-src/ext/standard/math.c |
| float |
atan2 |
(float y, float x) |
U
|
php-src/ext/standard/math.c |
| float |
sinh |
(float number) |
U
|
php-src/ext/standard/math.c |
| float |
cosh |
(float number) |
U
|
php-src/ext/standard/math.c |
| float |
tanh |
(float number) |
U
|
php-src/ext/standard/math.c |
| float |
asinh |
(float number) |
U
|
php-src/ext/standard/math.c |
| float |
acosh |
(float number) |
U
|
php-src/ext/standard/math.c |
| float |
atanh |
(float number) |
U
|
php-src/ext/standard/math.c |
| float |
pi |
(void) |
U
|
php-src/ext/standard/math.c |
| bool |
is_finite |
(float val) |
U
|
php-src/ext/standard/math.c |
| bool |
is_infinite |
(float val) |
U
|
php-src/ext/standard/math.c |
| bool |
is_nan |
(float val) |
U
|
php-src/ext/standard/math.c |
| number |
pow |
(number base, number exponent) |
U
|
php-src/ext/standard/math.c |
| float |
exp |
(float number) |
U
|
php-src/ext/standard/math.c |
| float |
expm1 |
(float number) |
U
|
php-src/ext/standard/math.c |
| float |
log1p |
(float number) |
U
|
php-src/ext/standard/math.c |
| float |
log |
(float number, [float base]) |
U
|
php-src/ext/standard/math.c |
| float |
log10 |
(float number) |
U
|
php-src/ext/standard/math.c |
| float |
sqrt |
(float number) |
U
|
php-src/ext/standard/math.c |
| float |
hypot |
(float num1, float num2) |
U
|
php-src/ext/standard/math.c |
| float |
deg2rad |
(float number) |
U
|
php-src/ext/standard/math.c |
| float |
rad2deg |
(float number) |
U
|
php-src/ext/standard/math.c |
| int |
bindec |
(string binary_number) |
U
|
php-src/ext/standard/math.c |
| int |
hexdec |
(string hexadecimal_number) |
U
|
php-src/ext/standard/math.c |
| int |
octdec |
(string octal_number) |
U
|
php-src/ext/standard/math.c |
| string |
decbin |
(int decimal_number) |
U
|
php-src/ext/standard/math.c |
| string |
decoct |
(int decimal_number) |
U
|
php-src/ext/standard/math.c |
| string |
dechex |
(int decimal_number) |
U
|
php-src/ext/standard/math.c |
| string |
base_convert |
(string number, int frombase, int tobase) |
U
|
php-src/ext/standard/math.c |
| string |
number_format |
(float number [, int num_decimal_places [, string dec_seperator, string thousands_seperator]]) |
U
|
php-src/ext/standard/math.c |
| float |
fmod |
(float x, float y) |
U
|
php-src/ext/standard/math.c |
| string |
md5 |
(string str, [ bool raw_output]) |
U
|
php-src/ext/standard/md5.c |
| string |
md5_file |
(string filename [, bool raw_output]) |
U
|
php-src/ext/standard/md5.c |
| string |
metaphone |
(string text[, int phones]) |
U
|
php-src/ext/standard/metaphone.c |
| mixed |
microtime |
([bool get_as_float]) |
U
|
php-src/ext/standard/microtime.c |
| array |
gettimeofday |
([bool get_as_float]) |
U
|
php-src/ext/standard/microtime.c |
| array |
getrusage |
([int who]) |
U
|
php-src/ext/standard/microtime.c |
| string |
pack |
(string format, mixed arg1 [, mixed arg2 [, mixed ...]]) |
U
|
php-src/ext/standard/pack.c |
| array |
unpack |
(string format, string input) |
U
|
php-src/ext/standard/pack.c |
| int |
getmyuid |
(void) |
U
|
php-src/ext/standard/pageinfo.c |
| int |
getmygid |
(void) |
U
|
php-src/ext/standard/pageinfo.c |
| int |
getmypid |
(void) |
U
|
php-src/ext/standard/pageinfo.c |
| int |
getmyinode |
(void) |
U
|
php-src/ext/standard/pageinfo.c |
| int |
getlastmod |
(void) |
U
|
php-src/ext/standard/pageinfo.c |
| bool |
proc_terminate |
(resource process [, long signal]) |
U
|
php-src/ext/standard/proc_open.c |
| int |
proc_close |
(resource process) |
U
|
php-src/ext/standard/proc_open.c |
| array |
proc_get_status |
(resource process) |
U
|
php-src/ext/standard/proc_open.c |
| resource |
proc_open |
(string command, array descriptorspec, array &pipes [, string cwd [, array env [, array other_options]]]) |
U
|
php-src/ext/standard/proc_open.c |
| binary |
quoted_printable_decode |
(string str) |
U
|
php-src/ext/standard/quot_print.c |
| string |
quoted_printable_encode |
(string str) |
U |
php-src/ext/standard/quot_print.c |
| void |
srand |
([int seed]) |
U
|
php-src/ext/standard/rand.c |
| void |
mt_srand |
([int seed]) |
U
|
php-src/ext/standard/rand.c |
| int |
rand |
([int min, int max]) |
U
|
php-src/ext/standard/rand.c |
| int |
mt_rand |
([int min, int max]) |
U
|
php-src/ext/standard/rand.c |
| int |
getrandmax |
(void) |
U
|
php-src/ext/standard/rand.c |
| int |
mt_getrandmax |
(void) |
U
|
php-src/ext/standard/rand.c |
| string |
sha1 |
(string str [, bool raw_output]) |
U
|
php-src/ext/standard/sha1.c |
| string |
sha1_file |
(string filename [, bool raw_output]) |
U
|
php-src/ext/standard/sha1.c |
| array |
stream_socket_pair |
(int domain, int type, int protocol) |
U
|
php-src/ext/standard/streamsfuncs.c |
| resource |
stream_socket_client |
(string remoteaddress [, long &errcode [, string &errstring [, double timeout [, long flags [, resource context]]]]]) |
U
|
php-src/ext/standard/streamsfuncs.c |
| resource |
stream_socket_server |
(string localaddress [, long &errcode [, string &errstring [, long flags [, resource context]]]]) |
U
|
php-src/ext/standard/streamsfuncs.c |
| resource |
stream_socket_accept |
(resource serverstream, [ double timeout [, string &peername ]]) |
U
|
php-src/ext/standard/streamsfuncs.c |
| string |
stream_socket_get_name |
(resource stream, bool want_peer) |
U
|
php-src/ext/standard/streamsfuncs.c |
| long |
stream_socket_sendto |
(resouce stream, string data [, long flags [, string target_addr]]) |
U
|
php-src/ext/standard/streamsfuncs.c |
| string |
stream_socket_recvfrom |
(resource stream, long amount [, long flags [, string &remote_addr]]) |
U
|
php-src/ext/standard/streamsfuncs.c |
| string |
stream_get_contents |
(resource source [, long maxlen [, long offset]]) |
U
|
php-src/ext/standard/streamsfuncs.c |
| long |
stream_copy_to_stream |
(resource source, resource dest [, long maxlen [, long pos]]) |
U
|
php-src/ext/standard/streamsfuncs.c |
| array |
stream_get_meta_data |
(resource fp) |
U
|
php-src/ext/standard/streamsfuncs.c |
| array |
stream_get_transports |
() |
U
|
php-src/ext/standard/streamsfuncs.c |
| array |
stream_get_wrappers |
() |
U
|
php-src/ext/standard/streamsfuncs.c |
| int |
stream_select |
(array &read_streams, array &write_streams, array &except_streams, int tv_sec[, int tv_usec]) |
U
|
php-src/ext/standard/streamsfuncs.c |
| array |
stream_context_get_options |
(resource context|resource stream) |
U
|
php-src/ext/standard/streamsfuncs.c |
| bool |
stream_context_set_option |
(resource context|resource stream, string wrappername, string optionname, mixed value) |
U
|
php-src/ext/standard/streamsfuncs.c |
| bool |
stream_context_set_params |
(resource context|resource stream, array options) |
U
|
php-src/ext/standard/streamsfuncs.c |
| array |
stream_context_get_params |
(resource context|resource stream) |
U
|
php-src/ext/standard/streamsfuncs.c |
| resource |
stream_context_get_default |
([array options]) |
U
|
php-src/ext/standard/streamsfuncs.c |
| resource |
stream_context_set_default |
(array options) |
U
|
php-src/ext/standard/streamsfuncs.c |
| resource |
stream_context_create |
([array options[, array params]]) |
U
|
php-src/ext/standard/streamsfuncs.c |
| resource |
stream_filter_prepend |
(resource stream, string filtername[, int read_write[, mixed filterparams]]) |
U
|
php-src/ext/standard/streamsfuncs.c |
| resource |
stream_filter_append |
(resource stream, string filtername[, int read_write[, mixed filterparams]]) |
U
|
php-src/ext/standard/streamsfuncs.c |
| bool |
stream_filter_remove |
(resource stream_filter) |
U
|
php-src/ext/standard/streamsfuncs.c |
| string |
stream_get_line |
(resource stream, int maxlen [, string ending]) |
U
|
php-src/ext/standard/streamsfuncs.c |
| bool |
stream_set_blocking |
(resource socket, int mode) |
U
|
php-src/ext/standard/streamsfuncs.c |
| bool |
stream_set_timeout |
(resource stream, int seconds [, int microseconds]) |
U
|
php-src/ext/standard/streamsfuncs.c |
| int |
stream_set_write_buffer |
(resource fp, int buffer) |
U
|
php-src/ext/standard/streamsfuncs.c |
| int |
stream_socket_enable_crypto |
(resource stream, bool enable [, int cryptokind [, resource sessionstream]]) |
U
|
php-src/ext/standard/streamsfuncs.c |
| bool |
stream_default_encoding |
(string encoding) |
U
|
php-src/ext/standard/streamsfuncs.c |
| void |
stream_encoding |
(resource stream[, string encoding]) |
U
|
php-src/ext/standard/streamsfuncs.c |
| string |
stream_resolve_include_path |
(string filename[, resource context]) |
U
|
php-src/ext/standard/streamsfuncs.c |
| bool |
stream_is_local |
(resource stream|string url) |
U
|
php-src/ext/standard/streamsfuncs.c |
| int |
stream_socket_shutdown |
(resourc |