From 469879e152cb5a59c315f5e8bb09e1c292e9e3cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20M=C3=AD=C5=A1ek?= Date: Sun, 13 Dec 2020 17:50:45 +0100 Subject: [PATCH] compatibility page updated, preview4 vs. php8 --- docs/compatibility-status.md | 2535 +++++++++++++++------------------- 1 file changed, 1081 insertions(+), 1454 deletions(-) diff --git a/docs/compatibility-status.md b/docs/compatibility-status.md index 2340091..4baeab0 100644 --- a/docs/compatibility-status.md +++ b/docs/compatibility-status.md @@ -1,43 +1,17 @@ -!!! tip "PeachPie 1.0.0-preview3 vs. PHP 7.4.1" +!!! tip "PeachPie 1.0.0-preview4 vs. PHP 8.0.0" The table lists PHP extensions that the project aims for and compares the public functions, classes, and constants. -??? tiny "[=86% "**Core** 268 / 312"]" +??? tiny "[=77% "**Core** 277 / 358"]" | PHP | PeachPie | | --- | --- | - | function func_get_arg($arg_num) | function func_get_arg($index) | - | function strlen($str) | function strlen($x) | - | function strncmp($str1,$str2,$len) | function strncmp($str1,$str2,$length) | - | function strncasecmp($str1,$str2,$len) | function strncasecmp($str1,$str2,$length) | - | function each($arr) | function each($array) | - | function error_reporting($new_error_level) | function error_reporting($level) | - | function define($constant_name,$value,$case_insensitive) | function define($name,$value,$caseInsensitive) | - | function defined($constant_name) | function defined($name) | - | function get_class($object) | function get_class($obj) | - | function get_parent_class($object) | function get_parent_class($classNameOrObject) | - | function method_exists($object,$method) | function method_exists($object,$methodName) | - | function property_exists($object_or_class,$property_name) | function property_exists($classNameOrObject,$propertyName) | - | function interface_exists($classname,$autoload) | function interface_exists($ifaceName,$autoload) | - | function function_exists($function_name) | function function_exists($name) | - | function class_alias($user_class_name,$alias_name,$autoload) | function class_alias($original,$alias,$autoload) | - | function is_subclass_of($object,$class_name,$allow_string) | function is_subclass_of($classNameOrObject,$baseClassName,$allow_string) | - | function is_a($object,$class_name,$allow_string) | function is_a($value,$class_name,$allow_string) | - | function get_mangled_object_vars($obj) | - function get_mangled_object_vars($obj) | - | function get_class_methods($class) | function get_class_methods($classNameOrObject) | - | function trigger_error($message,$error_type) | function trigger_error($error_msg,$error_type) | - | function user_error($message,$error_type) | function user_error($error_msg,$error_type) | - | function set_error_handler($error_handler,$error_types) | function set_error_handler($newHandler,$errorTypes) | - | function set_exception_handler($exception_handler) | function set_exception_handler($newHandler) | - | function get_defined_functions($exclude_disabled) | function get_defined_functions() | - | function get_resource_type($res) | function get_resource_type($resource) | + | function get_mangled_object_vars($object) | - function get_mangled_object_vars($object) | | function get_resources($type) | - function get_resources($type) | - | function extension_loaded($extension_name) | function extension_loaded($name) | - | function get_extension_funcs($extension_name) | function get_extension_funcs($extension) | | function gc_status() | - function gc_status() | - | function Closure::call($newthis,$parameters) | function Closure::call($newthis,$arguments) | - | function Closure::__invoke() | function Closure::__invoke($arguments) | - | function Generator::throw($exception) | function Generator::throw($ex) | + | class InternalIterator | - class InternalIterator | | class ClosedGeneratorException | - class ClosedGeneratorException | | function WeakReference::__construct() | - function WeakReference::__construct() | + | class WeakMap | - class WeakMap | + | class Attribute | - class Attribute | | const ZEND_THREAD_SAFE | - const ZEND_THREAD_SAFE | | const ZEND_DEBUG_BUILD | - const ZEND_DEBUG_BUILD | | const PHP_WINDOWS_EVENT_CTRL_C | - const PHP_WINDOWS_EVENT_CTRL_C | @@ -56,51 +30,69 @@ | const PHP_CONFIG_FILE_SCAN_DIR | - const PHP_CONFIG_FILE_SCAN_DIR | | const PHP_SHLIB_SUFFIX | - const PHP_SHLIB_SUFFIX | | const PHP_BINARY | - const PHP_BINARY | + | const PHP_OUTPUT_HANDLER_START | - const PHP_OUTPUT_HANDLER_START | | const PHP_OUTPUT_HANDLER_WRITE | - const PHP_OUTPUT_HANDLER_WRITE | | const PHP_OUTPUT_HANDLER_FLUSH | - const PHP_OUTPUT_HANDLER_FLUSH | | const PHP_OUTPUT_HANDLER_CLEAN | - const PHP_OUTPUT_HANDLER_CLEAN | | const PHP_OUTPUT_HANDLER_FINAL | - const PHP_OUTPUT_HANDLER_FINAL | + | const PHP_OUTPUT_HANDLER_CONT | - const PHP_OUTPUT_HANDLER_CONT | + | const PHP_OUTPUT_HANDLER_END | - const PHP_OUTPUT_HANDLER_END | | const PHP_OUTPUT_HANDLER_CLEANABLE | - const PHP_OUTPUT_HANDLER_CLEANABLE | | const PHP_OUTPUT_HANDLER_FLUSHABLE | - const PHP_OUTPUT_HANDLER_FLUSHABLE | | const PHP_OUTPUT_HANDLER_REMOVABLE | - const PHP_OUTPUT_HANDLER_REMOVABLE | | const PHP_OUTPUT_HANDLER_STDFLAGS | - const PHP_OUTPUT_HANDLER_STDFLAGS | | const PHP_OUTPUT_HANDLER_STARTED | - const PHP_OUTPUT_HANDLER_STARTED | | const PHP_OUTPUT_HANDLER_DISABLED | - const PHP_OUTPUT_HANDLER_DISABLED | + | const UPLOAD_ERR_OK | - const UPLOAD_ERR_OK | + | const UPLOAD_ERR_INI_SIZE | - const UPLOAD_ERR_INI_SIZE | + | const UPLOAD_ERR_FORM_SIZE | - const UPLOAD_ERR_FORM_SIZE | + | const UPLOAD_ERR_PARTIAL | - const UPLOAD_ERR_PARTIAL | + | const UPLOAD_ERR_NO_FILE | - const UPLOAD_ERR_NO_FILE | + | const UPLOAD_ERR_NO_TMP_DIR | - const UPLOAD_ERR_NO_TMP_DIR | + | const UPLOAD_ERR_CANT_WRITE | - const UPLOAD_ERR_CANT_WRITE | + | const UPLOAD_ERR_EXTENSION | - const UPLOAD_ERR_EXTENSION | | const PHP_CLI_PROCESS_TITLE | - const PHP_CLI_PROCESS_TITLE | + | const STDIN | - const STDIN | + | const STDOUT | - const STDOUT | + | const STDERR | - const STDERR | + | | + function each($arr) | + | | + function create_function($args,$code) | + | | + function Generator::__wakeup() | + | | + const PEACHPIE_VERSION | ??? tiny "[=0% "**bcmath** 0 / 10"]" | PHP | PeachPie | | --- | --- | - | function bcadd($left_operand,$right_operand,$scale) | - function bcadd($left_operand,$right_operand,$scale) | - | function bcsub($left_operand,$right_operand,$scale) | - function bcsub($left_operand,$right_operand,$scale) | - | function bcmul($left_operand,$right_operand,$scale) | - function bcmul($left_operand,$right_operand,$scale) | - | function bcdiv($left_operand,$right_operand,$scale) | - function bcdiv($left_operand,$right_operand,$scale) | - | function bcmod($left_operand,$right_operand,$scale) | - function bcmod($left_operand,$right_operand,$scale) | - | function bcpow($x,$y,$scale) | - function bcpow($x,$y,$scale) | - | function bcsqrt($operand,$scale) | - function bcsqrt($operand,$scale) | + | function bcadd($num1,$num2,$scale) | - function bcadd($num1,$num2,$scale) | + | function bcsub($num1,$num2,$scale) | - function bcsub($num1,$num2,$scale) | + | function bcmul($num1,$num2,$scale) | - function bcmul($num1,$num2,$scale) | + | function bcdiv($num1,$num2,$scale) | - function bcdiv($num1,$num2,$scale) | + | function bcmod($num1,$num2,$scale) | - function bcmod($num1,$num2,$scale) | + | function bcpowmod($num,$exponent,$modulus,$scale) | - function bcpowmod($num,$exponent,$modulus,$scale) | + | function bcpow($num,$exponent,$scale) | - function bcpow($num,$exponent,$scale) | + | function bcsqrt($num,$scale) | - function bcsqrt($num,$scale) | + | function bccomp($num1,$num2,$scale) | - function bccomp($num1,$num2,$scale) | | function bcscale($scale) | - function bcscale($scale) | - | function bccomp($left_operand,$right_operand,$scale) | - function bccomp($left_operand,$right_operand,$scale) | - | function bcpowmod($x,$y,$mod,$scale) | - function bcpowmod($x,$y,$mod,$scale) | ??? tiny "[=0% "**calendar** 0 / 39"]" | PHP | PeachPie | | --- | --- | - | function jdtogregorian($juliandaycount) | - function jdtogregorian($juliandaycount) | - | function gregoriantojd($month,$day,$year) | - function gregoriantojd($month,$day,$year) | - | function jdtojulian($juliandaycount) | - function jdtojulian($juliandaycount) | - | function juliantojd($month,$day,$year) | - function juliantojd($month,$day,$year) | - | function jdtojewish($juliandaycount,$hebrew,$fl) | - function jdtojewish($juliandaycount,$hebrew,$fl) | - | function jewishtojd($month,$day,$year) | - function jewishtojd($month,$day,$year) | - | function jdtofrench($juliandaycount) | - function jdtofrench($juliandaycount) | - | function frenchtojd($month,$day,$year) | - function frenchtojd($month,$day,$year) | - | function jddayofweek($juliandaycount,$mode) | - function jddayofweek($juliandaycount,$mode) | - | function jdmonthname($juliandaycount,$mode) | - function jdmonthname($juliandaycount,$mode) | - | function easter_date($year) | - function easter_date($year) | - | function easter_days($year,$method) | - function easter_days($year,$method) | - | function unixtojd($timestamp) | - function unixtojd($timestamp) | - | function jdtounix($jday) | - function jdtounix($jday) | - | function cal_to_jd($calendar,$month,$day,$year) | - function cal_to_jd($calendar,$month,$day,$year) | - | function cal_from_jd($jd,$calendar) | - function cal_from_jd($jd,$calendar) | | function cal_days_in_month($calendar,$month,$year) | - function cal_days_in_month($calendar,$month,$year) | + | function cal_from_jd($julian_day,$calendar) | - function cal_from_jd($julian_day,$calendar) | | function cal_info($calendar) | - function cal_info($calendar) | + | function cal_to_jd($calendar,$month,$day,$year) | - function cal_to_jd($calendar,$month,$day,$year) | + | function easter_date($year,$mode) | - function easter_date($year,$mode) | + | function easter_days($year,$mode) | - function easter_days($year,$mode) | + | function frenchtojd($month,$day,$year) | - function frenchtojd($month,$day,$year) | + | function gregoriantojd($month,$day,$year) | - function gregoriantojd($month,$day,$year) | + | function jddayofweek($julian_day,$mode) | - function jddayofweek($julian_day,$mode) | + | function jdmonthname($julian_day,$mode) | - function jdmonthname($julian_day,$mode) | + | function jdtofrench($julian_day) | - function jdtofrench($julian_day) | + | function jdtogregorian($julian_day) | - function jdtogregorian($julian_day) | + | function jdtojewish($julian_day,$hebrew,$flags) | - function jdtojewish($julian_day,$hebrew,$flags) | + | function jdtojulian($julian_day) | - function jdtojulian($julian_day) | + | function jdtounix($julian_day) | - function jdtounix($julian_day) | + | function jewishtojd($month,$day,$year) | - function jewishtojd($month,$day,$year) | + | function juliantojd($month,$day,$year) | - function juliantojd($month,$day,$year) | + | function unixtojd($timestamp) | - function unixtojd($timestamp) | | const CAL_GREGORIAN | - const CAL_GREGORIAN | | const CAL_JULIAN | - const CAL_JULIAN | | const CAL_JEWISH | - const CAL_JEWISH | @@ -123,59 +115,38 @@ | const CAL_JEWISH_ADD_ALAFIM | - const CAL_JEWISH_ADD_ALAFIM | | const CAL_JEWISH_ADD_GERESHAYIM | - const CAL_JEWISH_ADD_GERESHAYIM | ??? tiny "[=100% "**ctype** 11 / 11"]" -??? tiny "[=96% "**date** 182 / 189"]" +??? tiny "[=96% "**date** 184 / 192"]" | PHP | PeachPie | | --- | --- | - | function strtotime($time,$now) | function strtotime($time,$start) | - | function mktime($hour,$min,$sec,$mon,$day,$year) | function mktime($hour,$minute,$second,$month,$day,$year,$daylightSaving) | - | function gmmktime($hour,$min,$sec,$mon,$day,$year) | function gmmktime($hour,$minute,$second,$month,$day,$year,$dummy) | - | function localtime($timestamp,$associative_array) | function localtime($timestamp,$returnAssociative) | - | function date_create_from_format($format,$time,$object) | function date_create_from_format($format,$time,$timezone) | - | function date_create_immutable_from_format($format,$time,$object) | function date_create_immutable_from_format($format,$time,$timezone) | - | function date_parse($date) | function date_parse($time) | - | function date_format($object,$format) | function date_format($datetime,$format) | - | function date_modify($object,$modify) | function date_modify($datetime,$modify) | - | function date_timezone_get($object) | function date_timezone_get($dt) | - | function date_timezone_set($object,$timezone) | function date_timezone_set($dt,$timezone) | - | function date_offset_get($object) | function date_offset_get($datetime) | - | function date_diff($object,$object2,$absolute) | function date_diff($datetime1,$datetime2,$absolute) | - | function date_time_set($object,$hour,$minute,$second,$microseconds) | function date_time_set($object,$hour,$minute,$second) | - | function timezone_offset_get($object,$datetime) | function timezone_offset_get($timezone,$datetime) | - | function timezone_transitions_get($object,$timestamp_begin,$timestamp_end) | function timezone_transitions_get($timezone,$timestamp_begin,$timestamp_end) | - | function date_default_timezone_set($timezone_identifier) | function date_default_timezone_set($zoneName) | - | function date_sunrise($time,$format,$latitude,$longitude,$zenith,$gmt_offset) | function date_sunrise($timestamp,$format,$latitude,$longitude,$zenith,$offset) | - | function date_sunset($time,$format,$latitude,$longitude,$zenith,$gmt_offset) | function date_sunset($timestamp,$format,$latitude,$longitude,$zenith,$offset) | - | function date_sun_info($time,$latitude,$longitude) | - function date_sun_info($time,$latitude,$longitude) | - | function DateTimeInterface::diff($object,$absolute) | function DateTimeInterface::diff($datetime2,$absolute) | - | function DateTime::createFromImmutable($DateTimeImmutable) | function DateTime::createFromImmutable($datetime) | - | function DateTime::createFromFormat($format,$time,$object) | function DateTime::createFromFormat($format,$time,$timezone) | - | function DateTime::setTime($hour,$minute,$second,$microseconds) | function DateTime::setTime($hour,$minute,$second) | - | function DateTime::diff($object,$absolute) | function DateTime::diff($datetime2,$absolute) | - | function DateTimeImmutable::createFromFormat($format,$time,$object) | function DateTimeImmutable::createFromFormat($format,$time,$timezone) | - | function DateTimeImmutable::diff($object,$absolute) | function DateTimeImmutable::diff($datetime2,$absolute) | - | function DateTimeZone::__construct($timezone) | function DateTimeZone::__construct($timezone_name) | + | function date_sun_info($timestamp,$latitude,$longitude) | - function date_sun_info($timestamp,$latitude,$longitude) | | function DateTimeZone::__wakeup() | - function DateTimeZone::__wakeup() | | function DateTimeZone::__set_state($array) | - function DateTimeZone::__set_state($array) | - | function DateTimeZone::getOffset($object) | function DateTimeZone::getOffset($datetime) | | function DateInterval::__wakeup() | - function DateInterval::__wakeup() | | function DateInterval::__set_state($array) | - function DateInterval::__set_state($array) | - | function DatePeriod::__construct($start,$interval,$end) | function DatePeriod::__construct($start,$interval,$end,$options) | | function DatePeriod::__wakeup() | - function DatePeriod::__wakeup() | | function DatePeriod::__set_state($array) | - function DatePeriod::__set_state($array) | -??? tiny "[=100% "**filter** 65 / 65"]" + | function DatePeriod::getIterator() | - function DatePeriod::getIterator() | +??? tiny "[=98% "**filter** 60 / 61"]" | PHP | PeachPie | | --- | --- | - | function filter_var_array($data,$definition,$add_empty) | function filter_var_array($data,$definition) | -??? tiny "[=28% "**hash** 15 / 54"]" + | const FILTER_VALIDATE_BOOL | - const FILTER_VALIDATE_BOOL | + | | + const INPUT_SESSION | + | | + const INPUT_REQUEST | + | | + const FILTER_SANITIZE_MAGIC_QUOTES | + | | + const FILTER_FLAG_SCHEME_REQUIRED | + | | + const FILTER_FLAG_HOST_REQUIRED | +??? tiny "[=27% "**hash** 15 / 56"]" | PHP | PeachPie | | --- | --- | | function hash_hmac_algos() | - function hash_hmac_algos() | - | function hash_hkdf($ikm,$algo,$length,$string,$salt) | - function hash_hkdf($ikm,$algo,$length,$string,$salt) | - | function mhash_keygen_s2k($hash,$input_password,$salt,$bytes) | - function mhash_keygen_s2k($hash,$input_password,$salt,$bytes) | - | function mhash_get_block_size($hash) | - function mhash_get_block_size($hash) | - | function mhash_get_hash_name($hash) | - function mhash_get_hash_name($hash) | + | function hash_hkdf($algo,$key,$length,$info,$salt) | - function hash_hkdf($algo,$key,$length,$info,$salt) | + | function mhash_get_block_size($algo) | - function mhash_get_block_size($algo) | + | function mhash_get_hash_name($algo) | - function mhash_get_hash_name($algo) | + | function mhash_keygen_s2k($algo,$password,$salt,$length) | - function mhash_keygen_s2k($algo,$password,$salt,$length) | | function mhash_count() | - function mhash_count() | - | function mhash($hash,$data,$key) | - function mhash($hash,$data,$key) | + | function mhash($algo,$data,$key) | - function mhash($algo,$data,$key) | + | function HashContext::__serialize() | - function HashContext::__serialize() | + | function HashContext::__unserialize($data) | - function HashContext::__unserialize($data) | | const MHASH_CRC32 | - const MHASH_CRC32 | | const MHASH_MD5 | - const MHASH_MD5 | | const MHASH_SHA1 | - const MHASH_SHA1 | @@ -208,532 +179,151 @@ | const MHASH_FNV1A64 | - const MHASH_FNV1A64 | | const MHASH_JOAAT | - const MHASH_JOAAT | | const MHASH_CRC32C | - const MHASH_CRC32C | + | | + const HASH_DEFAULT | ??? tiny "[=100% "**iconv** 14 / 14"]" +??? tiny "[=93% "**json** 42 / 45"]" | PHP | PeachPie | | --- | --- | - | function iconv_mime_encode($field_name,$field_value,$preference) | function iconv_mime_encode($field_name,$field_value,$preferences) | - | function iconv_mime_decode($encoded_string,$mode,$charset) | function iconv_mime_decode($encoded_header,$mode,$charset) | - | function iconv_mime_decode_headers($headers,$mode,$charset) | function iconv_mime_decode_headers($encoded_headers,$mode,$charset) | -??? tiny "[=91% "**json** 41 / 45"]" - | PHP | PeachPie | - | --- | --- | - | const JSON_PARTIAL_OUTPUT_ON_ERROR | - const JSON_PARTIAL_OUTPUT_ON_ERROR | | const JSON_UNESCAPED_LINE_TERMINATORS | - const JSON_UNESCAPED_LINE_TERMINATORS | | const JSON_INVALID_UTF8_IGNORE | - const JSON_INVALID_UTF8_IGNORE | | const JSON_INVALID_UTF8_SUBSTITUTE | - const JSON_INVALID_UTF8_SUBSTITUTE | -??? tiny "[=100% "**SPL** 1096 / 1096"]" +??? tiny "[=100% "**SPL** 1089 / 1090"]" | PHP | PeachPie | | --- | --- | - | function spl_autoload($class_name,$file_extensions) | function spl_autoload($className) | - | function spl_autoload_extensions($file_extensions) | function spl_autoload_extensions($fileExtensions) | - | function spl_autoload_register($autoload_function,$throw,$prepend) | function spl_autoload_register($autoloadFunction,$throwError,$prepend) | - | function spl_autoload_unregister($autoload_function) | function spl_autoload_unregister($autoloadFunction) | - | function spl_autoload_call($class_name) | function spl_autoload_call($className) | - | function class_parents($instance,$autoload) | function class_parents($classNameOrObject,$useAutoload) | - | function class_implements($what,$autoload) | function class_implements($classNameOrObject,$useAutoload) | - | function class_uses($what,$autoload) | function class_uses($classNameOrObject,$useAutoload) | - | function IteratorIterator::__construct($iterator) | function IteratorIterator::__construct($iterator,$classname) | - | function FilterIterator::__construct($iterator) | function FilterIterator::__construct($iterator,$classname) | - | function RecursiveFilterIterator::__construct($iterator) | function RecursiveFilterIterator::__construct($iterator,$classname) | - | function ParentIterator::__construct($iterator) | function ParentIterator::__construct($iterator,$classname) | - | function CachingIterator::offsetGet($index) | function CachingIterator::offsetGet($offset) | - | function CachingIterator::offsetSet($index,$newval) | function CachingIterator::offsetSet($offset,$value) | - | function CachingIterator::offsetUnset($index) | function CachingIterator::offsetUnset($offset) | - | function CachingIterator::offsetExists($index) | function CachingIterator::offsetExists($offset) | - | function RecursiveCachingIterator::offsetGet($index) | function RecursiveCachingIterator::offsetGet($offset) | - | function RecursiveCachingIterator::offsetSet($index,$newval) | function RecursiveCachingIterator::offsetSet($offset,$value) | - | function RecursiveCachingIterator::offsetUnset($index) | function RecursiveCachingIterator::offsetUnset($offset) | - | function RecursiveCachingIterator::offsetExists($index) | function RecursiveCachingIterator::offsetExists($offset) | - | function NoRewindIterator::__construct($iterator) | function NoRewindIterator::__construct($iterator,$classname) | - | function InfiniteIterator::__construct($iterator) | function InfiniteIterator::__construct($iterator,$classname) | - | function RecursiveTreeIterator::__construct($iterator,$flags,$caching_it_flags,$mode) | function RecursiveTreeIterator::__construct($it,$flags,$cit_flags,$mode) | - | function RecursiveTreeIterator::setPrefixPart($part,$value) | function RecursiveTreeIterator::setPrefixPart($part,$prefix) | - | function ArrayObject::__unserialize($serialized) | function ArrayObject::__unserialize($array) | - | function ArrayObject::setIteratorClass($iteratorClass) | function ArrayObject::setIteratorClass($iterator_class) | - | function ArrayIterator::offsetSet($index,$newval) | function ArrayIterator::offsetSet($index,$value) | - | function ArrayIterator::unserialize($serialized) | function ArrayIterator::unserialize($data) | - | function ArrayIterator::__unserialize($serialized) | function ArrayIterator::__unserialize($array) | - | function RecursiveArrayIterator::offsetSet($index,$newval) | function RecursiveArrayIterator::offsetSet($index,$value) | - | function RecursiveArrayIterator::unserialize($serialized) | function RecursiveArrayIterator::unserialize($data) | - | function RecursiveArrayIterator::__unserialize($serialized) | function RecursiveArrayIterator::__unserialize($array) | - | function RecursiveDirectoryIterator::hasChildren($allow_links) | function RecursiveDirectoryIterator::hasChildren() | - | function SplFileObject::fputcsv($fields,$delimiter,$enclosure,$escape) | function SplFileObject::fputcsv($fields,$delimiter,$enclosure) | - | function SplFileObject::fseek($pos,$whence) | function SplFileObject::fseek($offset,$whence) | - | function SplFileObject::fscanf($format,$vars) | function SplFileObject::fscanf($format,$arg,$args) | - | function SplFileObject::fwrite($str,$length) | function SplFileObject::fwrite($data,$length) | - | function SplTempFileObject::fputcsv($fields,$delimiter,$enclosure,$escape) | function SplTempFileObject::fputcsv($fields,$delimiter,$enclosure) | - | function SplTempFileObject::fseek($pos,$whence) | function SplTempFileObject::fseek($offset,$whence) | - | function SplTempFileObject::fscanf($format,$vars) | function SplTempFileObject::fscanf($format,$arg,$args) | - | function SplTempFileObject::fwrite($str,$length) | function SplTempFileObject::fwrite($data,$length) | - | function SplDoublyLinkedList::offsetExists($index) | function SplDoublyLinkedList::offsetExists($offset) | - | function SplDoublyLinkedList::offsetGet($index) | function SplDoublyLinkedList::offsetGet($offset) | - | function SplDoublyLinkedList::offsetSet($index,$newval) | function SplDoublyLinkedList::offsetSet($offset,$value) | - | function SplDoublyLinkedList::offsetUnset($index) | function SplDoublyLinkedList::offsetUnset($offset) | - | function SplDoublyLinkedList::__unserialize($serialized) | function SplDoublyLinkedList::__unserialize($array) | - | function SplQueue::offsetExists($index) | function SplQueue::offsetExists($offset) | - | function SplQueue::offsetGet($index) | function SplQueue::offsetGet($offset) | - | function SplQueue::offsetSet($index,$newval) | function SplQueue::offsetSet($offset,$value) | - | function SplQueue::offsetUnset($index) | function SplQueue::offsetUnset($offset) | - | function SplQueue::__unserialize($serialized) | function SplQueue::__unserialize($array) | - | function SplStack::offsetExists($index) | function SplStack::offsetExists($offset) | - | function SplStack::offsetGet($index) | function SplStack::offsetGet($offset) | - | function SplStack::offsetSet($index,$newval) | function SplStack::offsetSet($offset,$value) | - | function SplStack::offsetUnset($index) | function SplStack::offsetUnset($offset) | - | function SplStack::__unserialize($serialized) | function SplStack::__unserialize($array) | - | function SplPriorityQueue::compare($value1,$value2) | function SplPriorityQueue::compare($priority1,$priority2) | - | function SplFixedArray::setSize($value) | function SplFixedArray::setSize($size) | - | function SplFixedArray::offsetExists($index) | function SplFixedArray::offsetExists($offset) | - | function SplFixedArray::offsetGet($index) | function SplFixedArray::offsetGet($offset) | - | function SplFixedArray::offsetSet($index,$newval) | function SplFixedArray::offsetSet($offset,$value) | - | function SplFixedArray::offsetUnset($index) | function SplFixedArray::offsetUnset($offset) | - | function SplObjectStorage::addAll($object) | function SplObjectStorage::addAll($storage) | - | function SplObjectStorage::removeAll($object) | function SplObjectStorage::removeAll($storage) | - | function SplObjectStorage::removeAllExcept($object) | function SplObjectStorage::removeAllExcept($storage) | - | function SplObjectStorage::setInfo($info) | function SplObjectStorage::setInfo($data) | - | function SplObjectStorage::__unserialize($serialized) | function SplObjectStorage::__unserialize($array) | - | function SplObjectStorage::offsetExists($object) | function SplObjectStorage::offsetExists($offset) | - | function SplObjectStorage::offsetSet($object,$data) | function SplObjectStorage::offsetSet($offset,$value) | - | function SplObjectStorage::offsetUnset($object) | function SplObjectStorage::offsetUnset($offset) | - | function SplObjectStorage::offsetGet($object) | function SplObjectStorage::offsetGet($offset) | - | function MultipleIterator::attachIterator($iterator,$infos) | function MultipleIterator::attachIterator($iter,$info) | - | function MultipleIterator::detachIterator($iterator) | function MultipleIterator::detachIterator($iter) | - | function MultipleIterator::containsIterator($iterator) | function MultipleIterator::containsIterator($iter) | -??? tiny "[=100% "**pcre** 29 / 29"]" + | function SplFixedArray::getIterator() | - function SplFixedArray::getIterator() | + | | + function SplFixedArray::rewind() | + | | + function SplFixedArray::next() | + | | + function SplFixedArray::valid() | + | | + function SplFixedArray::key() | + | | + function SplFixedArray::current() | + | | + function SplDoublyLinkedList::__construct() | + | | + function SplQueue::__construct() | + | | + function SplStack::__construct() | + | | + function SplPriorityQueue::__construct() | + | | + function SplHeap::__construct() | + | | + function SplMinHeap::__construct() | + | | + function SplMaxHeap::__construct() | + | | + function ArrayIterator::__set($prop,$value) | + | | + function ArrayIterator::__get($prop) | + | | + function RecursiveArrayIterator::__set($prop,$value) | + | | + function RecursiveArrayIterator::__get($prop) | + | | + function EmptyIterator::__construct() | + | | + function IteratorIterator::__call($name,$arguments) | + | | + function InfiniteIterator::__call($name,$arguments) | + | | + function NoRewindIterator::__call($name,$arguments) | + | | + function FilterIterator::__call($name,$arguments) | + | | + function CallbackFilterIterator::__call($name,$arguments) | + | | + function RecursiveCallbackFilterIterator::__call($name,$arguments) | + | | + function LimitIterator::__call($name,$arguments) | + | | + function AppendIterator::__call($name,$arguments) | + | | + function RecursiveFilterIterator::__call($name,$arguments) | + | | + function ParentIterator::__call($name,$arguments) | + | | + function CachingIterator::__call($name,$arguments) | + | | + function RecursiveCachingIterator::__call($name,$arguments) | + | | + function RegexIterator::__call($name,$arguments) | + | | + function RecursiveRegexIterator::__call($name,$arguments) | + | | + function ArrayObject::__set($prop,$value) | + | | + function ArrayObject::__get($prop) | + | | + const ArrayObject::DefaultIteratorClass | + | | + function RecursiveIteratorIterator::__call($name,$arguments) | + | | + function RecursiveTreeIterator::__call($name,$arguments) | + | | + const RecursiveTreeIterator::PREFIX_MAX | + | | + function SplFileObject::fgetss($allowable_tags) | + | | + function SplTempFileObject::fgetss($allowable_tags) | +??? tiny "[=100% "**pcre** 30 / 30"]" | PHP | PeachPie | | --- | --- | - | function preg_match($pattern,$subject,$subpatterns,$flags,$offset) | function preg_match($pattern,$subject,$matches,$flags,$offset) | - | function preg_match_all($pattern,$subject,$subpatterns,$flags,$offset) | function preg_match_all($pattern,$subject,$matches,$flags,$offset) | - | function preg_replace($regex,$replace,$subject,$limit,$count) | function preg_replace($pattern,$replacement,$subject,$limit,$count) | - | function preg_replace_callback($regex,$callback,$subject,$limit,$count,$flags) | function preg_replace_callback($pattern,$callback,$subject,$limit,$count) | - | function preg_replace_callback_array($pattern,$subject,$limit,$count,$flags) | function preg_replace_callback_array($patterns_and_callbacks,$subject,$limit,$count) | - | function preg_filter($regex,$replace,$subject,$limit,$count) | function preg_filter($pattern,$replacement,$subject,$limit,$count) | - | function preg_quote($str,$delim_char) | function preg_quote($str,$delimiter) | - | function preg_grep($regex,$input,$flags) | function preg_grep($pattern,$input,$flags) | + | | + const PREG_REPLACE_EVAL | ??? tiny "[=0% "**readline** 0 / 9"]" | PHP | PeachPie | | --- | --- | | function readline($prompt) | - function readline($prompt) | - | function readline_info($varname,$newvalue) | - function readline_info($varname,$newvalue) | + | function readline_info($var_name,$value) | - function readline_info($var_name,$value) | | function readline_add_history($prompt) | - function readline_add_history($prompt) | | function readline_clear_history() | - function readline_clear_history() | | function readline_list_history() | - function readline_list_history() | | function readline_read_history($filename) | - function readline_read_history($filename) | | function readline_write_history($filename) | - function readline_write_history($filename) | - | function readline_completion_function($funcname) | - function readline_completion_function($funcname) | + | function readline_completion_function($callback) | - function readline_completion_function($callback) | | const READLINE_LIB | - const READLINE_LIB | -??? tiny "[=97% "**Reflection** 331 / 342"]" +??? tiny "[=95% "**Reflection** 338 / 357"]" | PHP | PeachPie | | --- | --- | - | function ReflectionMethod::__construct($class_or_method,$name) | function ReflectionMethod::__construct($class_method,$name) | - | function ReflectionMethod::setAccessible($value) | function ReflectionMethod::setAccessible($accessible) | - | function ReflectionClass::__construct($argument) | function ReflectionClass::__construct($class) | - | function ReflectionClass::getStaticPropertyValue($name,$default) | function ReflectionClass::getStaticPropertyValue($name) | - | function ReflectionObject::__construct($argument) | function ReflectionObject::__construct($_instance) | - | function ReflectionObject::getStaticPropertyValue($name,$default) | function ReflectionObject::getStaticPropertyValue($name) | - | function ReflectionProperty::setValue($object,$value) | function ReflectionProperty::setValue($value,$value) | - | function ReflectionProperty::setAccessible($visible) | function ReflectionProperty::setAccessible($accessible) | + | function ReflectionParameter::isPromoted() | - function ReflectionParameter::isPromoted() | + | function ReflectionProperty::isPromoted() | - function ReflectionProperty::isPromoted() | | function ReflectionProperty::getType() | - function ReflectionProperty::getType() | | function ReflectionProperty::hasType() | - function ReflectionProperty::hasType() | + | function ReflectionProperty::hasDefaultValue() | - function ReflectionProperty::hasDefaultValue() | + | function ReflectionProperty::getDefaultValue() | - function ReflectionProperty::getDefaultValue() | + | const ReflectionClassConstant::IS_PUBLIC | - const ReflectionClassConstant::IS_PUBLIC | + | const ReflectionClassConstant::IS_PROTECTED | - const ReflectionClassConstant::IS_PROTECTED | + | const ReflectionClassConstant::IS_PRIVATE | - const ReflectionClassConstant::IS_PRIVATE | | class ReflectionZendExtension | - class ReflectionZendExtension | + | function ReflectionAttribute::getTarget() | - function ReflectionAttribute::getTarget() | + | function ReflectionAttribute::isRepeated() | - function ReflectionAttribute::isRepeated() | + | | + function Reflection::export($reflector,$return) | + | | + function ReflectionClass::export($argument,$return) | + | | + function ReflectionClassConstant::export($class,$name,$return) | + | | + function ReflectionExtension::export($name,$return) | + | | + function ReflectionFunction::export($name,$return) | + | | + function ReflectionMethod::export($class,$name,$return) | + | | + function ReflectionObject::export($argument,$return) | + | | + function ReflectionParameter::export($function,$parameter,$return) | + | | + function ReflectionProperty::export($class,$name,$return) | + | | + function ReflectionType::isBuiltin() | + | | + function ReflectionUnionType::isBuiltin() | ??? tiny "[=100% "**session** 46 / 46"]" | PHP | PeachPie | | --- | --- | - | function session_name($name) | function session_name($newName) | - | function session_module_name($module) | function session_module_name($newmodule) | - | function session_save_path($path) | function session_save_path() | - | function session_id($id) | function session_id($newid) | - | function session_regenerate_id($delete_old_session) | function session_regenerate_id() | - | function session_set_save_handler($open,$close,$read,$write,$destroy,$gc,$create_sid,$validate_sid,$update_timestamp) | function session_set_save_handler($sessionhandler,$register_shutdown,$read,$write,$destroy,$gc,$create_sid,$validate_sid,$update_timestamp) | - | function session_cache_expire($new_cache_expire) | function session_cache_expire() | - | function session_set_cookie_params($lifetime_or_options,$path,$domain,$secure,$httponly) | function session_set_cookie_params($lifetime,$path,$domain,$secure,$httponly) | - | function SessionHandlerInterface::read($key) | function SessionHandlerInterface::read($session_id) | - | function SessionHandlerInterface::write($key,$val) | function SessionHandlerInterface::write($session_id,$session_data) | - | function SessionHandlerInterface::destroy($key) | function SessionHandlerInterface::destroy($session_id) | - | function SessionHandler::read($key) | function SessionHandler::read($session_id) | - | function SessionHandler::write($key,$val) | function SessionHandler::write($session_id,$session_data) | - | function SessionHandler::destroy($key) | function SessionHandler::destroy($session_id) | -??? tiny "[=87% "**standard** 760 / 874"]" + | | + function SessionHandler::updateTimestamp($key,$val) | + | | + function SessionHandler::validateId($key) | +??? tiny "[=84% "**standard** 729 / 871"]" | PHP | PeachPie | | --- | --- | - | function constant($const_name) | function constant($name) | - | function bin2hex($data) | function bin2hex($str) | - | function usleep($micro_seconds) | function usleep($microseconds) | - | function wordwrap($str,$width,$break,$cut) | function wordwrap($str,$width,$lineBreak,$cut) | - | function htmlspecialchars($string,$quote_style,$encoding,$double_encode) | function htmlspecialchars($str,$quoteStyle,$charSet,$doubleEncode) | - | function htmlentities($string,$quote_style,$encoding,$double_encode) | function htmlentities($str,$quoteStyle,$charSet,$doubleEncode) | - | function html_entity_decode($string,$quote_style,$encoding) | function html_entity_decode($str,$quoteStyle,$charSet) | - | function htmlspecialchars_decode($string,$quote_style) | function htmlspecialchars_decode($str,$quoteStyle) | - | function get_html_translation_table($table,$quote_style,$encoding) | function get_html_translation_table($table,$quoteStyle) | - | function sha1($str,$raw_output) | function sha1($bytes,$rawOutput) | - | function sha1_file($filename,$raw_output) | function sha1_file($fileName,$rawOutput) | - | function md5($str,$raw_output) | function md5($bytes,$raw_output) | - | function md5_file($filename,$raw_output) | function md5_file($fileName,$rawOutput) | - | function crc32($str) | function crc32($bytes) | - | function iptcparse($iptcdata) | function iptcparse($iptcblock) | - | function getimagesize($imagefile,$info) | function getimagesize($filename,$imageinfo) | - | function getimagesizefromstring($imagefile,$info) | function getimagesizefromstring($bytes,$imageinfo) | - | function phpcredits($flag) | - function phpcredits($flag) | - | function strnatcmp($s1,$s2) | function strnatcmp($x,$y) | - | function strnatcasecmp($s1,$s2) | function strnatcasecmp($x,$y) | - | function strspn($str,$mask,$start,$len) | function strspn($str,$acceptedChars,$offset,$length) | - | function strcspn($str,$mask,$start,$len) | function strcspn($str,$acceptedChars,$offset,$length) | - | function strtok($str,$token) | function strtok($str,$delimiters) | - | function hebrev($str,$max_chars_per_line) | function hebrev($str,$maxCharactersPerLine) | - | function hebrevc($str,$max_chars_per_line) | function hebrevc($str,$maxCharactersPerLine) | - | function nl2br($str,$is_xhtml) | function nl2br($str,$isXHTML) | - | function strstr($haystack,$needle,$part) | function strstr($haystack,$needle,$beforeNeedle) | - | function stristr($haystack,$needle,$part) | function stristr($haystack,$needle,$beforeNeedle) | - | function str_word_count($str,$format,$charlist) | function str_word_count($str,$format,$addWordChars) | - | function str_split($str,$split_length) | function str_split($str,$splitLength) | - | function strpbrk($haystack,$char_list) | function strpbrk($haystack,$charList) | - | function substr_compare($main_str,$str,$offset,$length,$case_sensitivity) | function substr_compare($mainStr,$str,$offset,$length,$ignoreCase) | - | function substr($str,$start,$length) | function substr($str,$offset,$length) | - | function substr_replace($str,$replace,$start,$length) | function substr_replace($subject,$replacement,$offset,$length) | - | function strtr($str,$from,$to) | function strtr($str,$replacePairs,$to) | - | function addcslashes($str,$charlist) | function addcslashes($str,$mask) | - | function rtrim($str,$character_mask) | function rtrim($str,$whiteSpaceCharacters) | - | function str_replace($search,$replace,$subject,$replace_count) | function str_replace($search,$replace,$subject,$count) | - | function str_ireplace($search,$replace,$subject,$replace_count) | function str_ireplace($search,$replace,$subject,$count) | - | function str_repeat($input,$mult) | function str_repeat($str,$count) | - | function count_chars($input,$mode) | function count_chars($data,$mode) | - | function chunk_split($str,$chunklen,$ending) | function chunk_split($str,$chunkLength,$endOfChunk) | - | function trim($str,$character_mask) | function trim($str,$whiteSpaceCharacters) | - | function ltrim($str,$character_mask) | function ltrim($str,$whiteSpaceCharacters) | - | function strip_tags($str,$allowable_tags) | function strip_tags($str,$allowableTags) | - | function similar_text($str1,$str2,$percent) | function similar_text($first,$second,$percent) | - | function setlocale($category,$locales) | function setlocale($category,$locale,$moreLocales) | - | function levenshtein($str1,$str2,$cost_ins,$cost_rep,$cost_del) | function levenshtein($src,$dst,$insertCost,$replaceCost,$deleteCost) | - | function chr($codepoint) | function chr($bytevalue) | - | function ord($character) | function ord($string) | - | function parse_str($encoded_string,$result) | function parse_str($str,$result) | - | function str_getcsv($string,$delimiter,$enclosure,$escape) | function str_getcsv($input,$delimiter,$enclosure,$escape) | - | function str_pad($input,$pad_length,$pad_string,$pad_type) | function str_pad($str,$totalWidth,$paddingString,$paddingType) | - | function chop($str,$character_mask) | function chop($str,$whiteSpaceCharacters) | - | function strchr($haystack,$needle,$part) | function strchr($haystack,$needle) | - | function sprintf($format,$args) | function sprintf($format,$arguments) | - | function vsprintf($format,$args) | function vsprintf($format,$arguments) | - | function fprintf($stream,$format,$args) | function fprintf($handle,$format,$arguments) | - | function vfprintf($stream,$format,$args) | - function vfprintf($stream,$format,$args) | - | function sscanf($str,$format,$vars) | function sscanf($str,$format,$arg,$arguments) | - | function fscanf($stream,$format,$vars) | function fscanf($handle,$format,$arg,$arguments) | - | function http_build_query($formdata,$prefix,$arg_separator,$enc_type) | function http_build_query($formData,$numericPrefix,$argSeparator,$encType) | - | function readlink($filename) | function readlink($path) | - | function linkinfo($filename) | function linkinfo($path) | - | function unlink($filename,$context) | function unlink($path,$context) | - | function exec($command,$output,$return_value) | function exec($command,$output,$exitCode) | - | function system($command,$return_value) | function system($command,$exitCode) | - | function passthru($command,$return_value) | function passthru($command,$exitCode) | - | function shell_exec($cmd) | function shell_exec($command) | - | function proc_open($command,$descriptorspec,$pipes,$cwd,$env,$other_options) | function proc_open($command,$descriptors,$pipes,$workingDirectory,$envVariables,$options) | - | function srand($seed,$mode) | function srand($seed) | - | function getservbyname($service,$protocol) | - function getservbyname($service,$protocol) | - | function getservbyport($port,$protocol) | - function getservbyport($port,$protocol) | - | function getprotobynumber($proto) | function getprotobynumber($type) | - | function getmygid() | - function getmygid() | - | function getmyinode() | - function getmyinode() | - | function base64_decode($str,$strict) | function base64_decode($encoded_data,$strict) | - | function base64_encode($str) | function base64_encode($data_to_encode) | - | function password_hash($password,$algo,$options) | function password_hash($password,$algo,$opt) | - | function password_needs_rehash($hash,$algo,$options) | function password_needs_rehash($hash,$algo,$opt) | - | function password_algos() | - function password_algos() | - | function convert_uuencode($data) | - function convert_uuencode($data) | - | function convert_uudecode($data) | - function convert_uudecode($data) | - | function abs($number) | function abs($lx) | - | function ceil($number) | function ceil($x) | - | function floor($number) | function floor($x) | - | function round($number,$precision,$mode) | function round($x,$precision,$mode) | - | function sin($number) | function sin($x) | - | function cos($number) | function cos($x) | - | function tan($number) | function tan($x) | - | function asin($number) | function asin($x) | - | function acos($number) | function acos($x) | - | function atan($number) | function atan($x) | - | function atanh($number) | function atanh($x) | - | function sinh($number) | function sinh($x) | - | function cosh($number) | function cosh($x) | - | function tanh($number) | function tanh($x) | - | function asinh($number) | function asinh($x) | - | function acosh($number) | function acosh($x) | - | function expm1($number) | function expm1($x) | - | function log1p($number) | function log1p($x) | - | function is_finite($val) | function is_finite($x) | - | function is_nan($val) | function is_nan($x) | - | function is_infinite($val) | function is_infinite($x) | - | function pow($base,$exponent) | function pow($base,$exp) | - | function exp($number) | function exp($x) | - | function log($number,$base) | function log($x,$logBase) | - | function log10($number) | function log10($x) | - | function sqrt($number) | function sqrt($x) | - | function hypot($num1,$num2) | function hypot($x,$y) | - | function deg2rad($number) | function deg2rad($degrees) | - | function rad2deg($number) | function rad2deg($radians) | - | function bindec($binary_number) | function bindec($str) | - | function hexdec($hexadecimal_number) | function hexdec($str) | - | function octdec($octal_number) | function octdec($str) | - | function decbin($decimal_number) | function decbin($number) | - | function decoct($decimal_number) | function decoct($number) | - | function dechex($decimal_number) | function dechex($number) | - | function number_format($number,$num_decimal_places,$dec_separator,$thousands_separator) | function number_format($number,$decimals,$decimalPoint,$thousandsSeparator) | - | function inet_pton($ip_address) | function inet_pton($address) | - | function ip2long($ip_address) | function ip2long($ipAddress) | - | function long2ip($proper_address) | function long2ip($properAddress) | - | function getenv($varname,$local_only) | function getenv($name) | - | function getopt($options,$opts,$optind) | function getopt($options,$longopts) | - | function microtime($get_as_float) | function microtime($returnDouble) | - | function gettimeofday($get_as_float) | function gettimeofday($returnDouble) | - | function getrusage($who) | - function getrusage($who) | - | function convert_cyr_string($str,$from,$to) | function convert_cyr_string($bytes,$srcCharset,$dstCharset) | - | function get_cfg_var($option_name) | function get_cfg_var($option) | - | function call_user_func($function_name,$parameters) | function call_user_func($function,$args) | - | function call_user_func_array($function_name,$parameters) | function call_user_func_array($function,$args) | - | function forward_static_call($function_name,$parameters) | function forward_static_call($function,$args) | - | function forward_static_call_array($function_name,$parameters) | function forward_static_call_array($function,$args) | - | function serialize($var) | function serialize($value) | - | function unserialize($variable_representation,$allowed_classes) | function unserialize($str,$options) | - | function var_dump($vars) | function var_dump($variables) | - | function var_export($var,$return) | function var_export($variable,$returnString) | - | function debug_zval_dump($vars) | function debug_zval_dump($variables) | - | function print_r($var,$return) | function print_r($value,$returnString) | - | function register_shutdown_function($function_name,$parameters) | function register_shutdown_function($function,$arguments) | - | function register_tick_function($function_name,$parameters) | - function register_tick_function($function_name,$parameters) | - | function unregister_tick_function($function_name) | - function unregister_tick_function($function_name) | - | function highlight_file($file_name,$return) | function highlight_file($filename,$return) | - | function show_source($file_name,$return) | function show_source($filename,$return) | - | function highlight_string($string,$return) | function highlight_string($source,$return) | - | function php_strip_whitespace($file_name) | function php_strip_whitespace($filename) | - | function ini_get($varname) | function ini_get($option) | - | function ini_set($varname,$newvalue) | function ini_set($option,$value) | - | function ini_alter($varname,$newvalue) | function ini_alter($option,$value) | - | function ini_restore($varname) | function ini_restore($option) | - | function restore_include_path() | - function restore_include_path() | - | function setcookie($name,$value,$expires_or_options,$path,$domain,$secure,$httponly) | function setcookie($name,$value,$expire,$path,$domain,$secure,$httponly) | - | function setrawcookie($name,$value,$expires_or_options,$path,$domain,$secure,$httponly) | function setrawcookie($name,$value,$expire,$path,$domain,$secure,$httponly) | - | function header($header,$replace,$http_response_code) | function header($str,$replace,$http_response_code) | - | function parse_ini_file($filename,$process_sections,$scanner_mode) | function parse_ini_file($fileName,$processSections,$scanner_mode) | - | function parse_ini_string($ini_string,$process_sections,$scanner_mode) | function parse_ini_string($ini,$processSections,$scanner_mode) | - | function move_uploaded_file($path,$new_path) | function move_uploaded_file($path,$destination) | - | function gethostbyaddr($ip_address) | function gethostbyaddr($ipAddress) | - | function net_get_interfaces() | - function net_get_interfaces() | - | function dns_get_record($hostname,$type,$authns,$addtl,$raw) | function dns_get_record($host,$type,$authNS,$additional) | - | function intval($var,$base) | function intval($variable,$base) | - | function floatval($var) | function floatval($variable) | - | function doubleval($var) | function doubleval($variable) | - | function strval($var) | function strval($variable) | - | function boolval($var) | function boolval($variable) | - | function gettype($var) | function gettype($variable) | - | function settype($var,$type) | function settype($variable,$type) | - | function is_null($var) | function is_null($variable) | - | function is_resource($var) | function is_resource($variable) | - | function is_bool($var) | function is_bool($variable) | - | function is_int($var) | function is_int($variable) | - | function is_float($var) | function is_float($variable) | - | function is_integer($var) | function is_integer($variable) | - | function is_long($var) | function is_long($variable) | - | function is_double($var) | function is_double($variable) | - | function is_real($var) | function is_real($variable) | - | function is_numeric($value) | function is_numeric($variable) | - | function is_string($var) | function is_string($variable) | - | function is_array($var) | function is_array($variable) | - | function is_object($var) | function is_object($variable) | - | function is_scalar($value) | function is_scalar($variable) | - | function is_callable($var,$syntax_only,$callable_name) | function is_callable($variable,$syntaxOnly,$callableName) | - | function is_iterable($var) | function is_iterable($variable) | - | function is_countable($var) | function is_countable($value) | - | function pclose($fp) | function pclose($pipeHandle) | - | function readfile($filename,$flags,$context) | function readfile($path,$flags,$context) | - | function rewind($fp) | function rewind($handle) | - | function fclose($fp) | function fclose($handle) | - | function feof($fp) | function feof($handle) | - | function fgetc($fp) | function fgetc($handle) | - | function fgets($fp,$length) | function fgets($handle,$length) | - | function fgetss($fp,$length,$allowable_tags) | function fgetss($handle,$length,$allowableTags) | - | function fread($fp,$length) | function fread($handle,$length) | - | function fopen($filename,$mode,$use_include_path,$context) | function fopen($path,$mode,$flags,$context) | - | function fpassthru($fp) | function fpassthru($handle) | - | function ftruncate($fp,$size) | function ftruncate($handle,$size) | - | function fstat($fp) | function fstat($handle) | - | function fseek($fp,$offset,$whence) | function fseek($handle,$offset,$whence) | - | function ftell($fp) | function ftell($handle) | - | function fflush($fp) | function fflush($handle) | - | function fwrite($fp,$str,$length) | function fwrite($handle,$data,$length) | - | function fputs($fp,$str,$length) | function fputs($handle,$data,$length) | - | function rename($old_name,$new_name,$context) | function rename($oldpath,$newpath) | - | function copy($source_file,$destination_file,$context) | function copy($source,$dest) | - | function file($filename,$flags,$context) | function file($path,$flags,$context) | - | function file_get_contents($filename,$flags,$context,$offset,$maxlen) | function file_get_contents($path,$flags,$context,$offset,$maxLength) | - | function file_put_contents($filename,$data,$flags,$context) | function file_put_contents($path,$data,$flags,$context) | - | function stream_select($read_streams,$write_streams,$except_streams,$tv_sec,$tv_usec) | function stream_select($read,$write,$except,$tv_sec,$tv_usec) | - | function stream_context_create($options,$params) | function stream_context_create($data) | - | function stream_context_set_params($stream_or_context,$options) | function stream_context_set_params($stream_or_context,$parameters) | - | function stream_context_get_params($stream_or_context) | - function stream_context_get_params($stream_or_context) | - | function stream_context_set_option($stream_or_context,$wrappername,$optionname,$value) | function stream_context_set_option($stream_or_context,$options,$option,$data) | - | function stream_context_get_default($options) | - function stream_context_get_default($options) | - | function stream_context_set_default($options) | - function stream_context_set_default($options) | - | function stream_filter_prepend($stream,$filtername,$read_write,$filterparams) | function stream_filter_prepend($stream,$filter,$read_write,$parameters) | - | function stream_filter_append($stream,$filtername,$read_write,$filterparams) | function stream_filter_append($stream,$filter,$read_write,$parameters) | - | function stream_socket_client($remoteaddress,$errcode,$errstring,$timeout,$flags,$context) | function stream_socket_client($remoteSocket,$errno,$errstr,$timeout,$flags,$context) | - | function stream_socket_server($localaddress,$errcode,$errstring,$flags,$context) | function stream_socket_server($localSocket,$errno,$errstr,$flags,$context) | - | function stream_socket_accept($serverstream,$timeout,$peername) | function stream_socket_accept($serverSocket,$timeout,$peerName) | - | function stream_socket_get_name($stream,$want_peer) | function stream_socket_get_name($handle,$wantPeer) | - | function stream_socket_recvfrom($stream,$amount,$flags,$remote_addr) | function stream_socket_recvfrom($socket,$length,$flags,$address) | - | function stream_socket_sendto($stream,$data,$flags,$target_addr) | function stream_socket_sendto($socket,$data,$flags,$address) | - | function stream_socket_enable_crypto($stream,$enable,$cryptokind,$sessionstream) | function stream_socket_enable_crypto($stream,$enable,$crypto_method,$session_stream) | - | function stream_socket_pair($domain,$type,$protocol) | - function stream_socket_pair($domain,$type,$protocol) | - | function stream_copy_to_stream($source,$dest,$maxlen,$pos) | function stream_copy_to_stream($source,$destination,$maxlength,$offset) | - | function stream_get_contents($source,$maxlen,$offset) | function stream_get_contents($handle,$maxLength,$offset) | - | function stream_supports_lock($stream) | - function stream_supports_lock($stream) | - | function fgetcsv($fp,$length,$delimiter,$enclosure,$escape) | function fgetcsv($handle,$length,$delimiter,$enclosure,$escape_char) | - | function fputcsv($fp,$fields,$delimiter,$enclosure,$escape_char) | function fputcsv($handle,$fields,$delimiter,$enclosure) | - | function flock($fp,$operation,$wouldblock) | function flock($handle,$operation,$wouldblock) | - | function get_meta_tags($filename,$use_include_path) | - function get_meta_tags($filename,$use_include_path) | - | function stream_set_read_buffer($fp,$buffer) | - function stream_set_read_buffer($fp,$buffer) | - | function stream_set_write_buffer($fp,$buffer) | function stream_set_write_buffer($resource,$buffer) | - | function set_file_buffer($fp,$buffer) | function set_file_buffer($resource,$buffer) | - | function stream_set_chunk_size($fp,$chunk_size) | - function stream_set_chunk_size($fp,$chunk_size) | - | function stream_set_blocking($socket,$mode) | function stream_set_blocking($resource,$mode) | - | function socket_set_blocking($socket,$mode) | function socket_set_blocking($stream,$mode) | - | function stream_get_meta_data($fp) | function stream_get_meta_data($resource) | - | function stream_get_line($stream,$maxlen,$ending) | function stream_get_line($handle,$length,$ending) | - | function stream_register_wrapper($protocol,$classname,$flags) | function stream_register_wrapper($protocol,$userWrapperName,$flags) | + | function output_reset_rewrite_vars() | - function output_reset_rewrite_vars() | + | function output_add_rewrite_var($name,$value) | - function output_add_rewrite_var($name,$value) | | function stream_wrapper_unregister($protocol) | - function stream_wrapper_unregister($protocol) | | function stream_wrapper_restore($protocol) | - function stream_wrapper_restore($protocol) | - | function stream_is_local($stream) | function stream_is_local($url) | - | function stream_set_timeout($stream,$seconds,$microseconds) | function stream_set_timeout($resource,$seconds,$microseconds) | - | function socket_get_status($fp) | function socket_get_status($stream) | - | function fnmatch($pattern,$filename,$flags) | function fnmatch($pattern,$path,$flags) | - | function fsockopen($hostname,$port,$errno,$errstr,$timeout) | function fsockopen($target,$port,$errno,$errstr,$timeout,$persistent) | - | function pfsockopen($hostname,$port,$errno,$errstr,$timeout) | function pfsockopen($target,$port,$errno,$errstr,$timeout) | - | function unpack($format,$input,$offset) | function unpack($format,$data) | - | function get_browser($browser_name,$return_array) | function get_browser($user_agent,$return_array) | - | function opendir($path,$context) | function opendir($directory) | - | function closedir($dir_handle) | function closedir($dirHandle) | - | function rewinddir($dir_handle) | function rewinddir($dirHandle) | - | function readdir($dir_handle) | function readdir($dirHandle) | - | function dir($directory,$context) | function dir($directory) | - | function scandir($dir,$sorting_order,$context) | function scandir($directory,$sorting_order) | - | function fileatime($filename) | function fileatime($path) | - | function filectime($filename) | function filectime($path) | - | function filegroup($filename) | function filegroup($path) | - | function fileinode($filename) | function fileinode($path) | - | function filemtime($filename) | function filemtime($path) | - | function fileowner($filename) | function fileowner($path) | - | function fileperms($filename) | function fileperms($path) | - | function filesize($filename) | function filesize($path) | - | function filetype($filename) | function filetype($path) | - | function file_exists($filename) | function file_exists($path) | - | function is_writable($filename) | function is_writable($path) | - | function is_writeable($filename) | function is_writeable($path) | - | function is_readable($filename) | function is_readable($path) | - | function is_executable($filename) | function is_executable($path) | - | function is_file($filename) | function is_file($path) | - | function is_dir($filename) | function is_dir($path) | - | function is_link($filename) | function is_link($path) | - | function stat($filename) | function stat($path) | - | function lstat($filename) | function lstat($path) | - | function chgrp($filename,$group) | function chgrp($path,$group) | - | function chmod($filename,$mode) | function chmod($path,$mode) | - | function touch($filename,$time,$atime) | function touch($path,$mtime,$atime) | - | function disk_total_space($path) | function disk_total_space($directory) | - | function disk_free_space($path) | function disk_free_space($directory) | - | function diskfreespace($path) | function diskfreespace($directory) | - | function realpath_cache_size() | - function realpath_cache_size() | - | function realpath_cache_get() | - function realpath_cache_get() | - | function openlog($ident,$option,$facility) | - function openlog($ident,$option,$facility) | - | function syslog($priority,$message) | - function syslog($priority,$message) | + | function getservbyname($service,$protocol) | - function getservbyname($service,$protocol) | + | function getservbyport($port,$protocol) | - function getservbyport($port,$protocol) | + | function register_tick_function($callback,$args) | - function register_tick_function($callback,$args) | + | function unregister_tick_function($callback) | - function unregister_tick_function($callback) | + | function net_get_interfaces() | - function net_get_interfaces() | + | function ftok($filename,$project_id) | - function ftok($filename,$project_id) | + | function getmygid() | - function getmygid() | + | function getmyinode() | - function getmyinode() | + | function openlog($prefix,$flags,$facility) | - function openlog($prefix,$flags,$facility) | | function closelog() | - function closelog() | - | function metaphone($text,$phones) | function metaphone($str) | - | function ob_start($user_function,$chunk_size,$flags) | function ob_start($filter,$chunkSize,$erase) | - | function ob_get_status($full_status) | function ob_get_status($full) | - | function ob_implicit_flush($flag) | function ob_implicit_flush($doFlush) | - | function ksort($arg,$sort_flags) | function ksort($array,$comparisonMethod) | - | function krsort($arg,$sort_flags) | function krsort($array,$comparisonMethod) | - | function natsort($arg) | function natsort($array) | - | function natcasesort($arg) | function natcasesort($array) | - | function asort($arg,$sort_flags) | function asort($array,$comparisonMethod) | - | function arsort($arg,$sort_flags) | function arsort($array,$comparisonMethod) | - | function sort($arg,$sort_flags) | function sort($array,$comparisonMethod) | - | function rsort($arg,$sort_flags) | function rsort($array,$comparisonMethod) | - | function usort($arg,$cmp_function) | function usort($array,$compare) | - | function uasort($arg,$cmp_function) | function uasort($array,$compare) | - | function uksort($arg,$cmp_function) | function uksort($array,$compare) | - | function shuffle($arg) | function shuffle($array) | - | function array_walk($input,$funcname,$userdata) | function array_walk($array,$callback,$data) | - | function array_walk_recursive($input,$funcname,$userdata) | function array_walk_recursive($array,$callback,$data) | - | function count($var,$mode) | function count($variable,$mode) | - | function end($arg) | function end($array) | - | function prev($arg) | function prev($array) | - | function next($arg) | function next($array) | - | function reset($arg) | function reset($array) | - | function current($arg) | function current($array) | - | function key($arg) | function key($array) | - | function extract($arg,$extract_type,$prefix) | function extract($vars,$type,$prefix) | - | function compact($var_names) | function compact($names) | - | function array_fill($start_key,$num,$val) | function array_fill($startIndex,$count,$value) | - | function array_fill_keys($keys,$val) | function array_fill_keys($keys,$value) | - | function array_multisort($arr1,$sort_order,$sort_flags,$arr2) | function array_multisort($first,$args) | - | function array_push($stack,$vars) | function array_push($array,$vars) | - | function array_pop($stack) | function array_pop($array) | - | function array_shift($stack) | function array_shift($array) | - | function array_unshift($stack,$vars) | function array_unshift($array,$vars) | - | function array_splice($arg,$offset,$length,$replacement) | function array_splice($array,$offset,$length,$replacement) | - | function array_slice($arg,$offset,$length,$preserve_keys) | function array_slice($array,$offset,$length,$preserveKeys) | - | function array_merge_recursive($arrays) | function array_merge_recursive($array,$arrays) | - | function array_replace($arr1,$arrays) | function array_replace($array,$arrays) | - | function array_replace_recursive($arr1,$arrays) | function array_replace_recursive($array,$arrays) | - | function array_keys($arg,$search_value,$strict) | function array_keys($array,$searchValue,$strict) | - | function array_key_first($arg) | function array_key_first($array) | - | function array_key_last($arg) | function array_key_last($array) | - | function array_values($arg) | function array_values($array) | - | function array_count_values($arg) | function array_count_values($array) | - | function array_column($arg,$column_key,$index_key) | function array_column($input,$column_key,$index_key) | - | function array_reverse($input,$preserve_keys) | function array_reverse($array,$preserveKeys) | - | function array_reduce($arg,$callback,$initial) | function array_reduce($array,$function,$initialValue) | - | function array_pad($arg,$pad_size,$pad_value) | function array_pad($array,$length,$value) | - | function array_flip($arg) | function array_flip($array) | - | function array_change_key_case($input,$case) | function array_change_key_case($array,$keyCase) | - | function array_rand($arg,$num_req) | function array_rand($array,$count) | - | function array_unique($arg,$flags) | function array_unique($array,$sortFlags) | - | function array_intersect($arr1,$arrays) | function array_intersect($array,$arrays) | - | function array_intersect_key($arr1,$arrays) | function array_intersect_key($array,$arrays) | - | function array_intersect_ukey($arr1,$arr2,$callback_key_compare_func) | function array_intersect_ukey($array,$array0,$arraysAndComparer) | - | function array_uintersect($arr1,$arr2,$callback_data_compare_func) | function array_uintersect($array,$array0,$arraysAndComparer) | - | function array_intersect_assoc($arr1,$arrays) | function array_intersect_assoc($array,$arrays) | - | function array_uintersect_assoc($arr1,$arr2,$callback_data_compare_func) | function array_uintersect_assoc($array,$array0,$arraysAndComparer) | - | function array_intersect_uassoc($arr1,$arr2,$callback_key_compare_func) | function array_intersect_uassoc($array,$array0,$arraysAndComparer) | - | function array_uintersect_uassoc($arr1,$arr2,$callback_data_compare_func,$callback_key_compare_func) | function array_uintersect_uassoc($array,$array0,$arraysAndComparers) | - | function array_diff($arr1,$arrays) | function array_diff($array,$arrays) | - | function array_diff_key($arr1,$arrays) | function array_diff_key($array,$arrays) | - | function array_diff_ukey($arr1,$arr2,$callback_key_comp_func) | function array_diff_ukey($array,$array0,$arraysAndComparer) | - | function array_udiff($arr1,$arr2,$callback_data_comp_func) | function array_udiff($array1,$array2,$arraysAndComparer) | - | function array_diff_assoc($arr1,$arrays) | function array_diff_assoc($array,$arrays) | - | function array_udiff_assoc($arr1,$arr2,$callback_key_comp_func) | function array_udiff_assoc($array,$array0,$arraysAndComparer) | - | function array_diff_uassoc($arr1,$arr2,$callback_data_comp_func) | function array_diff_uassoc($array,$array0,$arraysAndComparer) | - | function array_udiff_uassoc($arr1,$arr2,$callback_data_comp_func,$callback_key_comp_func) | function array_udiff_uassoc($array,$array0,$arraysAndComparers) | - | function array_sum($arg) | function array_sum($array) | - | function array_product($arg) | function array_product($array) | - | function array_filter($arg,$callback,$use_keys) | function array_filter($array,$callback,$flag) | - | function array_map($callback,$arrays) | function array_map($map,$arrays) | - | function array_chunk($arg,$size,$preserve_keys) | function array_chunk($array,$size,$preserveKeys) | - | function array_key_exists($key,$search) | function array_key_exists($key,$array) | - | function pos($arg) | function pos($array) | - | function sizeof($var,$mode) | function sizeof($variable,$mode) | - | function key_exists($key,$search) | function key_exists($key,$array) | - | function assert($assertion,$description) | function assert($assertion,$action) | - | function version_compare($ver1,$ver2,$oper) | function version_compare($version1,$version2,$op) | - | function ftok($pathname,$proj) | - function ftok($pathname,$proj) | - | function stream_filter_register($filtername,$classname) | function stream_filter_register($filter,$classname) | - | function output_add_rewrite_var($name,$value) | - function output_add_rewrite_var($name,$value) | - | function output_reset_rewrite_vars() | - function output_reset_rewrite_vars() | - | function sapi_windows_cp_set($code_page) | - function sapi_windows_cp_set($code_page) | - | function sapi_windows_cp_get() | - function sapi_windows_cp_get() | - | function sapi_windows_cp_is_utf8() | - function sapi_windows_cp_is_utf8() | + | function syslog($priority,$message) | - function syslog($priority,$message) | + | function getdir($directory,$context) | - function getdir($directory,$context) | + | function get_meta_tags($filename,$use_include_path) | - function get_meta_tags($filename,$use_include_path) | + | function realpath_cache_get() | - function realpath_cache_get() | + | function realpath_cache_size() | - function realpath_cache_size() | + | function vfprintf($stream,$format,$values) | - function vfprintf($stream,$format,$values) | + | function image_type_to_mime_type($image_type) | - function image_type_to_mime_type($image_type) | + | function image_type_to_extension($image_type,$include_dot) | - function image_type_to_extension($image_type,$include_dot) | + | function getimagesize($filename,$image_info) | - function getimagesize($filename,$image_info) | + | function getimagesizefromstring($string,$image_info) | - function getimagesizefromstring($string,$image_info) | + | function phpcredits($flags) | - function phpcredits($flags) | + | function iptcembed($iptc_data,$filename,$spool) | - function iptcembed($iptc_data,$filename,$spool) | + | function iptcparse($iptc_block) | - function iptcparse($iptc_block) | + | function getrusage($mode) | - function getrusage($mode) | + | function password_algos() | - function password_algos() | + | function stream_context_get_params($context) | - function stream_context_get_params($context) | + | function stream_context_get_default($options) | - function stream_context_get_default($options) | + | function stream_context_set_default($options) | - function stream_context_set_default($options) | + | function stream_socket_pair($domain,$type,$protocol) | - function stream_socket_pair($domain,$type,$protocol) | + | function stream_supports_lock($stream) | - function stream_supports_lock($stream) | + | function stream_set_read_buffer($stream,$size) | - function stream_set_read_buffer($stream,$size) | + | function stream_set_chunk_size($stream,$size) | - function stream_set_chunk_size($stream,$size) | + | function convert_uuencode($string) | - function convert_uuencode($string) | + | function convert_uudecode($string) | - function convert_uudecode($string) | + | function sapi_windows_cp_set($codepage) | - function sapi_windows_cp_set($codepage) | + | function sapi_windows_cp_get($kind) | - function sapi_windows_cp_get($kind) | | function sapi_windows_cp_conv($in_codepage,$out_codepage,$subject) | - function sapi_windows_cp_conv($in_codepage,$out_codepage,$subject) | - | function sapi_windows_set_ctrl_handler($callable,$add) | - function sapi_windows_set_ctrl_handler($callable,$add) | + | function sapi_windows_cp_is_utf8() | - function sapi_windows_cp_is_utf8() | + | function sapi_windows_set_ctrl_handler($handler,$add) | - function sapi_windows_set_ctrl_handler($handler,$add) | | function sapi_windows_generate_ctrl_event($event,$pid) | - function sapi_windows_generate_ctrl_event($event,$pid) | - | function dl($extension_filename) | function dl($library) | - | function Directory::close($dir_handle) | function Directory::close($handle) | - | function Directory::rewind($dir_handle) | function Directory::rewind($handle) | - | function Directory::read($dir_handle) | function Directory::read($handle) | | const CREDITS_GROUP | - const CREDITS_GROUP | | const CREDITS_GENERAL | - const CREDITS_GENERAL | | const CREDITS_SAPI | - const CREDITS_SAPI | @@ -742,6 +332,7 @@ | const CREDITS_FULLPAGE | - const CREDITS_FULLPAGE | | const CREDITS_QA | - const CREDITS_QA | | const CREDITS_ALL | - const CREDITS_ALL | + | const PATHINFO_ALL | - const PATHINFO_ALL | | const STREAM_NOTIFY_CONNECT | - const STREAM_NOTIFY_CONNECT | | const STREAM_NOTIFY_AUTH_REQUIRED | - const STREAM_NOTIFY_AUTH_REQUIRED | | const STREAM_NOTIFY_AUTH_RESULT | - const STREAM_NOTIFY_AUTH_RESULT | @@ -810,35 +401,111 @@ | const STREAM_META_GROUP | - const STREAM_META_GROUP | | const STREAM_META_GROUP_NAME | - const STREAM_META_GROUP_NAME | | const STREAM_META_ACCESS | - const STREAM_META_ACCESS | -??? tiny "[=100% "**tokenizer** 140 / 140"]" -??? tiny "[=73% "**zip** 95 / 131"]" + | const IMAGETYPE_GIF | - const IMAGETYPE_GIF | + | const IMAGETYPE_JPEG | - const IMAGETYPE_JPEG | + | const IMAGETYPE_PNG | - const IMAGETYPE_PNG | + | const IMAGETYPE_SWF | - const IMAGETYPE_SWF | + | const IMAGETYPE_PSD | - const IMAGETYPE_PSD | + | const IMAGETYPE_BMP | - const IMAGETYPE_BMP | + | const IMAGETYPE_TIFF_II | - const IMAGETYPE_TIFF_II | + | const IMAGETYPE_TIFF_MM | - const IMAGETYPE_TIFF_MM | + | const IMAGETYPE_JPC | - const IMAGETYPE_JPC | + | const IMAGETYPE_JP2 | - const IMAGETYPE_JP2 | + | const IMAGETYPE_JPX | - const IMAGETYPE_JPX | + | const IMAGETYPE_JB2 | - const IMAGETYPE_JB2 | + | const IMAGETYPE_SWC | - const IMAGETYPE_SWC | + | const IMAGETYPE_IFF | - const IMAGETYPE_IFF | + | const IMAGETYPE_WBMP | - const IMAGETYPE_WBMP | + | const IMAGETYPE_JPEG2000 | - const IMAGETYPE_JPEG2000 | + | const IMAGETYPE_XBM | - const IMAGETYPE_XBM | + | const IMAGETYPE_ICO | - const IMAGETYPE_ICO | + | const IMAGETYPE_WEBP | - const IMAGETYPE_WEBP | + | const IMAGETYPE_UNKNOWN | - const IMAGETYPE_UNKNOWN | + | const IMAGETYPE_COUNT | - const IMAGETYPE_COUNT | + | | + function fgetss($handle,$length,$allowableTags) | + | | + function chroot($directory) | + | | + function money_format($format,$number) | + | | + function hebrevc($str,$maxCharactersPerLine) | + | | + function sha256($str,$raw_output) | + | | + function sha256_file($filename,$raw_output) | + | | + function convert_cyr_string($bytes,$srcCharset,$dstCharset) | + | | + function nl_langinfo($item) | + | | + function ezmlm_hash($addr) | + | | + function get_magic_quotes_gpc() | + | | + function get_magic_quotes_runtime() | + | | + function set_magic_quotes_runtime($value) | + | | + function is_real($variable) | + | | + function apache_request_headers() | + | | + function getallheaders() | + | | + function idn_to_ascii($domain,$options,$variant,$idna_info) | + | | + function idn_to_utf8($domain,$options,$variant,$idna_info) | + | | + function posix_getpid() | + | | + function fastcgi_finish_request() | + | | + function zend_thread_id() | + | | + const DNS_CAA | + | | + const ASSERT_QUIET_EVAL | + | | + const PHP_OUTPUT_HANDLER_START | + | | + const PHP_OUTPUT_HANDLER_CONT | + | | + const PHP_OUTPUT_HANDLER_END | + | | + const UPLOAD_ERR_OK | + | | + const UPLOAD_ERR_INI_SIZE | + | | + const UPLOAD_ERR_FORM_SIZE | + | | + const UPLOAD_ERR_PARTIAL | + | | + const UPLOAD_ERR_NO_FILE | + | | + const UPLOAD_ERR_NO_TMP_DIR | + | | + const UPLOAD_ERR_CANT_WRITE | + | | + const UPLOAD_ERR_EXTENSION | + | | + const IDNA_DEFAULT | + | | + const IDNA_ALLOW_UNASSIGNED | + | | + const IDNA_USE_STD3_RULES | + | | + const INTL_IDNA_VARIANT_2003 | + | | + const INTL_IDNA_VARIANT_UTS46 | + | | + const STDIN | + | | + const STDOUT | + | | + const STDERR | + | | + const STREAM_ENFORCE_SAFE_MODE | +??? tiny "[=93% "**tokenizer** 143 / 153"]" | PHP | PeachPie | | --- | --- | - | function zip_entry_open($zip_dp,$zip_entry,$mode) | function zip_entry_open($zip,$zip_entry,$mode) | - | function zip_entry_close($zip_ent) | function zip_entry_close($zip_entry) | - | function zip_entry_read($zip_entry,$len) | function zip_entry_read($zip_entry,$length) | - | function ZipArchive::addFromString($name,$content) | function ZipArchive::addFromString($localname,$contents) | - | function ZipArchive::addFile($filepath,$entryname,$start,$length) | function ZipArchive::addFile($filename,$localname,$start,$length) | - | function ZipArchive::renameIndex($index,$new_name) | function ZipArchive::renameIndex($index,$newname) | - | function ZipArchive::renameName($name,$new_name) | function ZipArchive::renameName($name,$newname) | - | function ZipArchive::statName($filename,$flags) | function ZipArchive::statName($name,$flags) | - | function ZipArchive::locateName($filename,$flags) | function ZipArchive::locateName($name,$flags) | - | function ZipArchive::extractTo($pathto,$files) | function ZipArchive::extractTo($destination,$entries) | - | function ZipArchive::getFromName($entryname,$len,$flags) | function ZipArchive::getFromName($name,$length,$flags) | - | function ZipArchive::getFromIndex($index,$len,$flags) | function ZipArchive::getFromIndex($index,$length,$flags) | - | function ZipArchive::getStream($entryname) | function ZipArchive::getStream($name) | - | function ZipArchive::setCompressionName($name,$method,$compflags) | function ZipArchive::setCompressionName($name,$comp_method,$comp_flags) | - | function ZipArchive::setCompressionIndex($index,$method,$compflags) | function ZipArchive::setCompressionIndex($index,$comp_method,$comp_flags) | + | class PhpToken | - class PhpToken | + | const T_NAME_FULLY_QUALIFIED | - const T_NAME_FULLY_QUALIFIED | + | const T_NAME_RELATIVE | - const T_NAME_RELATIVE | + | const T_NAME_QUALIFIED | - const T_NAME_QUALIFIED | +??? tiny "[=61% "**zip** 95 / 155"]" + | PHP | PeachPie | + | --- | --- | + | function ZipArchive::replaceFile($filepath,$index,$start,$length,$flags) | - function ZipArchive::replaceFile($filepath,$index,$start,$length,$flags) | + | function ZipArchive::setMtimeIndex($index,$timestamp,$flags) | - function ZipArchive::setMtimeIndex($index,$timestamp,$flags) | + | function ZipArchive::setMtimeName($name,$timestamp,$flags) | - function ZipArchive::setMtimeName($name,$timestamp,$flags) | + | function ZipArchive::registerProgressCallback($rate,$callback) | - function ZipArchive::registerProgressCallback($rate,$callback) | + | function ZipArchive::registerCancelCallback($callback) | - function ZipArchive::registerCancelCallback($callback) | + | const ZipArchive::RDONLY | - const ZipArchive::RDONLY | + | const ZipArchive::FL_RECOMPRESS | - const ZipArchive::FL_RECOMPRESS | + | const ZipArchive::FL_ENCRYPTED | - const ZipArchive::FL_ENCRYPTED | + | const ZipArchive::FL_OVERWRITE | - const ZipArchive::FL_OVERWRITE | + | const ZipArchive::FL_LOCAL | - const ZipArchive::FL_LOCAL | + | const ZipArchive::FL_CENTRAL | - const ZipArchive::FL_CENTRAL | | const ZipArchive::FL_ENC_GUESS | - const ZipArchive::FL_ENC_GUESS | | const ZipArchive::FL_ENC_RAW | - const ZipArchive::FL_ENC_RAW | | const ZipArchive::FL_ENC_STRICT | - const ZipArchive::FL_ENC_STRICT | | const ZipArchive::FL_ENC_UTF_8 | - const ZipArchive::FL_ENC_UTF_8 | | const ZipArchive::FL_ENC_CP437 | - const ZipArchive::FL_ENC_CP437 | | const ZipArchive::CM_LZMA | - const ZipArchive::CM_LZMA | + | const ZipArchive::CM_LZMA2 | - const ZipArchive::CM_LZMA2 | + | const ZipArchive::CM_XZ | - const ZipArchive::CM_XZ | | const ZipArchive::CM_TERSE | - const ZipArchive::CM_TERSE | | const ZipArchive::CM_LZ77 | - const ZipArchive::CM_LZ77 | | const ZipArchive::CM_WAVPACK | - const ZipArchive::CM_WAVPACK | | const ZipArchive::CM_PPMD | - const ZipArchive::CM_PPMD | + | const ZipArchive::ER_ENCRNOTSUPP | - const ZipArchive::ER_ENCRNOTSUPP | + | const ZipArchive::ER_RDONLY | - const ZipArchive::ER_RDONLY | + | const ZipArchive::ER_NOPASSWD | - const ZipArchive::ER_NOPASSWD | + | const ZipArchive::ER_WRONGPASSWD | - const ZipArchive::ER_WRONGPASSWD | + | const ZipArchive::ER_OPNOTSUPP | - const ZipArchive::ER_OPNOTSUPP | + | const ZipArchive::ER_INUSE | - const ZipArchive::ER_INUSE | + | const ZipArchive::ER_TELL | - const ZipArchive::ER_TELL | + | const ZipArchive::ER_COMPRESSED_DATA | - const ZipArchive::ER_COMPRESSED_DATA | + | const ZipArchive::ER_CANCELLED | - const ZipArchive::ER_CANCELLED | | const ZipArchive::OPSYS_DOS | - const ZipArchive::OPSYS_DOS | | const ZipArchive::OPSYS_AMIGA | - const ZipArchive::OPSYS_AMIGA | | const ZipArchive::OPSYS_OPENVMS | - const ZipArchive::OPSYS_OPENVMS | @@ -848,7 +515,6 @@ | const ZipArchive::OPSYS_OS_2 | - const ZipArchive::OPSYS_OS_2 | | const ZipArchive::OPSYS_MACINTOSH | - const ZipArchive::OPSYS_MACINTOSH | | const ZipArchive::OPSYS_Z_SYSTEM | - const ZipArchive::OPSYS_Z_SYSTEM | - | const ZipArchive::OPSYS_Z_CPM | - const ZipArchive::OPSYS_Z_CPM | | const ZipArchive::OPSYS_CPM | - const ZipArchive::OPSYS_CPM | | const ZipArchive::OPSYS_WINDOWS_NTFS | - const ZipArchive::OPSYS_WINDOWS_NTFS | | const ZipArchive::OPSYS_MVS | - const ZipArchive::OPSYS_MVS | @@ -862,39 +528,25 @@ | const ZipArchive::OPSYS_OS_X | - const ZipArchive::OPSYS_OS_X | | const ZipArchive::OPSYS_DEFAULT | - const ZipArchive::OPSYS_DEFAULT | | const ZipArchive::EM_NONE | - const ZipArchive::EM_NONE | + | const ZipArchive::EM_TRAD_PKWARE | - const ZipArchive::EM_TRAD_PKWARE | | const ZipArchive::EM_AES_128 | - const ZipArchive::EM_AES_128 | | const ZipArchive::EM_AES_192 | - const ZipArchive::EM_AES_192 | | const ZipArchive::EM_AES_256 | - const ZipArchive::EM_AES_256 | -??? tiny "[=43% "**zlib** 25 / 58"]" + | const ZipArchive::EM_UNKNOWN | - const ZipArchive::EM_UNKNOWN | + | const ZipArchive::LIBZIP_VERSION | - const ZipArchive::LIBZIP_VERSION | +??? tiny "[=41% "**zlib** 24 / 59"]" | PHP | PeachPie | | --- | --- | - | function gzrewind($fp) | function gzrewind($zp) | - | function gzclose($fp) | function gzclose($zp) | - | function gzeof($fp) | function gzeof($zp) | - | function gzgetc($fp) | function gzgetc($zp) | - | function gzgets($fp,$length) | function gzgets($zp,$length) | - | function gzgetss($fp,$length,$allowable_tags) | function gzgetss($zp,$length,$allowable_tags) | - | function gzread($fp,$length) | function gzread($zp,$length) | - | function gzpassthru($fp) | function gzpassthru($zp) | - | function gzseek($fp,$offset,$whence) | function gzseek($zp,$offset,$whence) | - | function gztell($fp) | function gztell($zp) | - | function gzwrite($fp,$str,$length) | function gzwrite($zp,$str,$length) | - | function gzputs($fp,$str,$length) | function gzputs($zp,$str,$length) | - | function gzcompress($data,$level,$encoding) | function gzcompress($data,$level) | - | function gzuncompress($data,$max_decoded_len) | function gzuncompress($data,$length) | - | function gzdeflate($data,$level,$encoding) | function gzdeflate($data,$level) | - | function gzinflate($data,$max_decoded_len) | function gzinflate($data,$length) | - | function gzencode($data,$level,$encoding) | function gzencode($data,$level,$encoding_mode) | - | function gzdecode($data,$max_decoded_len) | function gzdecode($data,$length) | | function zlib_encode($data,$encoding,$level) | - function zlib_encode($data,$encoding,$level) | - | function zlib_decode($data,$max_decoded_len) | - function zlib_decode($data,$max_decoded_len) | - | function deflate_init($encoding,$level) | - function deflate_init($encoding,$level) | - | function deflate_add($resource,$add,$flush_behavior) | - function deflate_add($resource,$add,$flush_behavior) | + | function zlib_decode($data,$max_length) | - function zlib_decode($data,$max_length) | + | function deflate_init($encoding,$options) | - function deflate_init($encoding,$options) | + | function deflate_add($context,$data,$flush_mode) | - function deflate_add($context,$data,$flush_mode) | | function inflate_init($encoding,$options) | - function inflate_init($encoding,$options) | - | function inflate_add($context,$encoded_data,$flush_mode) | - function inflate_add($context,$encoded_data,$flush_mode) | - | function inflate_get_status($resource) | - function inflate_get_status($resource) | - | function inflate_get_read_len($resource) | - function inflate_get_read_len($resource) | - | function ob_gzhandler($data,$flags) | function ob_gzhandler($data,$mode) | + | function inflate_add($context,$data,$flush_mode) | - function inflate_add($context,$data,$flush_mode) | + | function inflate_get_status($context) | - function inflate_get_status($context) | + | function inflate_get_read_len($context) | - function inflate_get_read_len($context) | + | class InflateContext | - class InflateContext | + | class DeflateContext | - class DeflateContext | | const ZLIB_ENCODING_RAW | - const ZLIB_ENCODING_RAW | | const ZLIB_ENCODING_GZIP | - const ZLIB_ENCODING_GZIP | | const ZLIB_ENCODING_DEFLATE | - const ZLIB_ENCODING_DEFLATE | @@ -920,276 +572,144 @@ | const ZLIB_MEM_ERROR | - const ZLIB_MEM_ERROR | | const ZLIB_BUF_ERROR | - const ZLIB_BUF_ERROR | | const ZLIB_VERSION_ERROR | - const ZLIB_VERSION_ERROR | + | | + function gzopen64($filename,$mode,$use_include_path) | + | | + function gzseek64($zp,$offset,$whence) | + | | + function gztell64($zp) | + | | + function gzgetss($zp,$length,$allowable_tags) | ??? tiny "[=83% "**libxml** 29 / 35"]" | PHP | PeachPie | | --- | --- | - | function libxml_set_streams_context($context) | function libxml_set_streams_context($streams_context) | | function libxml_set_external_entity_loader($resolver_function) | - function libxml_set_external_entity_loader($resolver_function) | | const LIBXML_LOADED_VERSION | - const LIBXML_LOADED_VERSION | | const LIBXML_PEDANTIC | - const LIBXML_PEDANTIC | | const LIBXML_BIGLINES | - const LIBXML_BIGLINES | | const LIBXML_HTML_NOIMPLIED | - const LIBXML_HTML_NOIMPLIED | | const LIBXML_HTML_NODEFDTD | - const LIBXML_HTML_NODEFDTD | -??? tiny "[=81% "**dom** 416 / 516"]" +??? tiny "[=91% "**dom** 410 / 451"]" | PHP | PeachPie | | --- | --- | - | class DOMStringList | - class DOMStringList | - | class DOMNameList | - class DOMNameList | - | class DOMImplementationList | - class DOMImplementationList | - | class DOMImplementationSource | - class DOMImplementationSource | - | function DOMImplementation::hasFeature() | function DOMImplementation::hasFeature($feature,$version) | - | function DOMNode::insertBefore($newChild,$refChild) | function DOMNode::insertBefore($newnode,$refnode) | - | function DOMNode::replaceChild($newChild,$oldChild) | function DOMNode::replaceChild($newnode,$oldnode) | - | function DOMNode::removeChild($oldChild) | function DOMNode::removeChild($oldnode) | - | function DOMNode::appendChild($newChild) | function DOMNode::appendChild($newnode) | - | function DOMNode::compareDocumentPosition($other) | - function DOMNode::compareDocumentPosition($other) | - | function DOMNode::isSameNode($other) | function DOMNode::isSameNode($anotherNode) | - | function DOMNode::isEqualNode($arg) | - function DOMNode::isEqualNode($arg) | - | function DOMNode::getFeature($feature,$version) | - function DOMNode::getFeature($feature,$version) | - | function DOMNode::setUserData($key,$data,$handler) | - function DOMNode::setUserData($key,$data,$handler) | - | function DOMNode::getUserData($key) | - function DOMNode::getUserData($key) | + | class DOMParentNode | - class DOMParentNode | + | class DOMChildNode | - class DOMChildNode | | class DOMNameSpaceNode | - class DOMNameSpaceNode | | function DOMDocumentFragment::__construct() | - function DOMDocumentFragment::__construct() | - | function DOMDocumentFragment::insertBefore($newChild,$refChild) | function DOMDocumentFragment::insertBefore($newnode,$refnode) | - | function DOMDocumentFragment::replaceChild($newChild,$oldChild) | function DOMDocumentFragment::replaceChild($newnode,$oldnode) | - | function DOMDocumentFragment::removeChild($oldChild) | function DOMDocumentFragment::removeChild($oldnode) | - | function DOMDocumentFragment::appendChild($newChild) | function DOMDocumentFragment::appendChild($newnode) | - | function DOMDocumentFragment::compareDocumentPosition($other) | - function DOMDocumentFragment::compareDocumentPosition($other) | - | function DOMDocumentFragment::isSameNode($other) | function DOMDocumentFragment::isSameNode($anotherNode) | - | function DOMDocumentFragment::isEqualNode($arg) | - function DOMDocumentFragment::isEqualNode($arg) | - | function DOMDocumentFragment::getFeature($feature,$version) | - function DOMDocumentFragment::getFeature($feature,$version) | - | function DOMDocumentFragment::setUserData($key,$data,$handler) | - function DOMDocumentFragment::setUserData($key,$data,$handler) | - | function DOMDocumentFragment::getUserData($key) | - function DOMDocumentFragment::getUserData($key) | - | function DOMDocument::createElement($tagName,$value) | function DOMDocument::createElement($name,$value) | - | function DOMDocument::getElementsByTagName($tagName) | function DOMDocument::getElementsByTagName($name) | - | function DOMDocument::load($source,$options) | function DOMDocument::load($filename,$options) | - | function DOMDocument::save($file) | function DOMDocument::save($filename,$options) | - | function DOMDocument::loadHTMLFile($source,$options) | function DOMDocument::loadHTMLFile($filename,$options) | - | function DOMDocument::saveHTML() | function DOMDocument::saveHTML($node) | - | function DOMDocument::saveHTMLFile($file) | function DOMDocument::saveHTMLFile($filename) | - | function DOMDocument::schemaValidate($filename) | function DOMDocument::schemaValidate($schemaFile,$flags) | - | function DOMDocument::schemaValidateSource($source) | function DOMDocument::schemaValidateSource($schemaString,$flags) | - | function DOMDocument::relaxNGValidate($filename) | function DOMDocument::relaxNGValidate($schemaFile) | - | function DOMDocument::relaxNGValidateSource($source) | function DOMDocument::relaxNGValidateSource($schema) | - | function DOMDocument::insertBefore($newChild,$refChild) | function DOMDocument::insertBefore($newnode,$refnode) | - | function DOMDocument::replaceChild($newChild,$oldChild) | function DOMDocument::replaceChild($newnode,$oldnode) | - | function DOMDocument::removeChild($oldChild) | function DOMDocument::removeChild($oldnode) | - | function DOMDocument::appendChild($newChild) | function DOMDocument::appendChild($newnode) | - | function DOMDocument::compareDocumentPosition($other) | - function DOMDocument::compareDocumentPosition($other) | - | function DOMDocument::isSameNode($other) | function DOMDocument::isSameNode($anotherNode) | - | function DOMDocument::isEqualNode($arg) | - function DOMDocument::isEqualNode($arg) | - | function DOMDocument::getFeature($feature,$version) | - function DOMDocument::getFeature($feature,$version) | - | function DOMDocument::setUserData($key,$data,$handler) | - function DOMDocument::setUserData($key,$data,$handler) | - | function DOMDocument::getUserData($key) | - function DOMDocument::getUserData($key) | - | function DOMNamedNodeMap::setNamedItem($arg) | function DOMNamedNodeMap::setNamedItem($item) | - | function DOMNamedNodeMap::setNamedItemNS($arg) | function DOMNamedNodeMap::setNamedItemNS($item) | - | function DOMCharacterData::insertBefore($newChild,$refChild) | function DOMCharacterData::insertBefore($newnode,$refnode) | - | function DOMCharacterData::replaceChild($newChild,$oldChild) | function DOMCharacterData::replaceChild($newnode,$oldnode) | - | function DOMCharacterData::removeChild($oldChild) | function DOMCharacterData::removeChild($oldnode) | - | function DOMCharacterData::appendChild($newChild) | function DOMCharacterData::appendChild($newnode) | - | function DOMCharacterData::compareDocumentPosition($other) | - function DOMCharacterData::compareDocumentPosition($other) | - | function DOMCharacterData::isSameNode($other) | function DOMCharacterData::isSameNode($anotherNode) | - | function DOMCharacterData::isEqualNode($arg) | - function DOMCharacterData::isEqualNode($arg) | - | function DOMCharacterData::getFeature($feature,$version) | - function DOMCharacterData::getFeature($feature,$version) | - | function DOMCharacterData::setUserData($key,$data,$handler) | - function DOMCharacterData::setUserData($key,$data,$handler) | - | function DOMCharacterData::getUserData($key) | - function DOMCharacterData::getUserData($key) | + | function DOMDocumentFragment::append($nodes) | - function DOMDocumentFragment::append($nodes) | + | function DOMDocumentFragment::prepend($nodes) | - function DOMDocumentFragment::prepend($nodes) | + | function DOMDocument::append($nodes) | - function DOMDocument::append($nodes) | + | function DOMDocument::prepend($nodes) | - function DOMDocument::prepend($nodes) | + | function DOMNodeList::getIterator() | - function DOMNodeList::getIterator() | + | function DOMNamedNodeMap::getIterator() | - function DOMNamedNodeMap::getIterator() | + | function DOMCharacterData::replaceWith($nodes) | - function DOMCharacterData::replaceWith($nodes) | + | function DOMCharacterData::remove() | - function DOMCharacterData::remove() | + | function DOMCharacterData::before($nodes) | - function DOMCharacterData::before($nodes) | + | function DOMCharacterData::after($nodes) | - function DOMCharacterData::after($nodes) | | function DOMAttr::isId() | - function DOMAttr::isId() | - | function DOMAttr::insertBefore($newChild,$refChild) | function DOMAttr::insertBefore($newnode,$refnode) | - | function DOMAttr::replaceChild($newChild,$oldChild) | function DOMAttr::replaceChild($newnode,$oldnode) | - | function DOMAttr::removeChild($oldChild) | function DOMAttr::removeChild($oldnode) | - | function DOMAttr::appendChild($newChild) | function DOMAttr::appendChild($newnode) | - | function DOMAttr::compareDocumentPosition($other) | - function DOMAttr::compareDocumentPosition($other) | - | function DOMAttr::isSameNode($other) | function DOMAttr::isSameNode($anotherNode) | - | function DOMAttr::isEqualNode($arg) | - function DOMAttr::isEqualNode($arg) | - | function DOMAttr::getFeature($feature,$version) | - function DOMAttr::getFeature($feature,$version) | - | function DOMAttr::setUserData($key,$data,$handler) | - function DOMAttr::setUserData($key,$data,$handler) | - | function DOMAttr::getUserData($key) | - function DOMAttr::getUserData($key) | - | function DOMElement::setAttributeNode($newAttr) | function DOMElement::setAttributeNode($attribute) | - | function DOMElement::removeAttributeNode($oldAttr) | function DOMElement::removeAttributeNode($attribute) | - | function DOMElement::setAttributeNodeNS($newAttr) | function DOMElement::setAttributeNodeNS($attribute) | - | function DOMElement::setIdAttributeNode($attr,$isId) | function DOMElement::setIdAttributeNode($attribute,$isId) | - | function DOMElement::__construct($name,$value,$uri) | function DOMElement::__construct($name,$value,$namespaceUri) | - | function DOMElement::insertBefore($newChild,$refChild) | function DOMElement::insertBefore($newnode,$refnode) | - | function DOMElement::replaceChild($newChild,$oldChild) | function DOMElement::replaceChild($newnode,$oldnode) | - | function DOMElement::removeChild($oldChild) | function DOMElement::removeChild($oldnode) | - | function DOMElement::appendChild($newChild) | function DOMElement::appendChild($newnode) | - | function DOMElement::compareDocumentPosition($other) | - function DOMElement::compareDocumentPosition($other) | - | function DOMElement::isSameNode($other) | function DOMElement::isSameNode($anotherNode) | - | function DOMElement::isEqualNode($arg) | - function DOMElement::isEqualNode($arg) | - | function DOMElement::getFeature($feature,$version) | - function DOMElement::getFeature($feature,$version) | - | function DOMElement::setUserData($key,$data,$handler) | - function DOMElement::setUserData($key,$data,$handler) | - | function DOMElement::getUserData($key) | - function DOMElement::getUserData($key) | + | function DOMElement::remove() | - function DOMElement::remove() | + | function DOMElement::before($nodes) | - function DOMElement::before($nodes) | + | function DOMElement::after($nodes) | - function DOMElement::after($nodes) | + | function DOMElement::replaceWith($nodes) | - function DOMElement::replaceWith($nodes) | + | function DOMElement::append($nodes) | - function DOMElement::append($nodes) | + | function DOMElement::prepend($nodes) | - function DOMElement::prepend($nodes) | | function DOMText::isElementContentWhitespace() | - function DOMText::isElementContentWhitespace() | - | function DOMText::replaceWholeText($content) | - function DOMText::replaceWholeText($content) | - | function DOMText::insertBefore($newChild,$refChild) | function DOMText::insertBefore($newnode,$refnode) | - | function DOMText::replaceChild($newChild,$oldChild) | function DOMText::replaceChild($newnode,$oldnode) | - | function DOMText::removeChild($oldChild) | function DOMText::removeChild($oldnode) | - | function DOMText::appendChild($newChild) | function DOMText::appendChild($newnode) | - | function DOMText::compareDocumentPosition($other) | - function DOMText::compareDocumentPosition($other) | - | function DOMText::isSameNode($other) | function DOMText::isSameNode($anotherNode) | - | function DOMText::isEqualNode($arg) | - function DOMText::isEqualNode($arg) | - | function DOMText::getFeature($feature,$version) | - function DOMText::getFeature($feature,$version) | - | function DOMText::setUserData($key,$data,$handler) | - function DOMText::setUserData($key,$data,$handler) | - | function DOMText::getUserData($key) | - function DOMText::getUserData($key) | - | function DOMComment::insertBefore($newChild,$refChild) | function DOMComment::insertBefore($newnode,$refnode) | - | function DOMComment::replaceChild($newChild,$oldChild) | function DOMComment::replaceChild($newnode,$oldnode) | - | function DOMComment::removeChild($oldChild) | function DOMComment::removeChild($oldnode) | - | function DOMComment::appendChild($newChild) | function DOMComment::appendChild($newnode) | - | function DOMComment::compareDocumentPosition($other) | - function DOMComment::compareDocumentPosition($other) | - | function DOMComment::isSameNode($other) | function DOMComment::isSameNode($anotherNode) | - | function DOMComment::isEqualNode($arg) | - function DOMComment::isEqualNode($arg) | - | function DOMComment::getFeature($feature,$version) | - function DOMComment::getFeature($feature,$version) | - | function DOMComment::setUserData($key,$data,$handler) | - function DOMComment::setUserData($key,$data,$handler) | - | function DOMComment::getUserData($key) | - function DOMComment::getUserData($key) | - | class DOMTypeinfo | - class DOMTypeinfo | - | class DOMUserDataHandler | - class DOMUserDataHandler | - | class DOMDomError | - class DOMDomError | - | class DOMErrorHandler | - class DOMErrorHandler | - | class DOMLocator | - class DOMLocator | - | function DOMConfiguration::setParameter($name,$value) | - function DOMConfiguration::setParameter($name,$value) | - | function DOMConfiguration::getParameter($name) | - function DOMConfiguration::getParameter($name) | - | function DOMConfiguration::canSetParameter($name,$value) | - function DOMConfiguration::canSetParameter($name,$value) | + | function DOMText::replaceWith($nodes) | - function DOMText::replaceWith($nodes) | + | function DOMText::remove() | - function DOMText::remove() | + | function DOMText::before($nodes) | - function DOMText::before($nodes) | + | function DOMText::after($nodes) | - function DOMText::after($nodes) | + | function DOMComment::replaceWith($nodes) | - function DOMComment::replaceWith($nodes) | + | function DOMComment::remove() | - function DOMComment::remove() | + | function DOMComment::before($nodes) | - function DOMComment::before($nodes) | + | function DOMComment::after($nodes) | - function DOMComment::after($nodes) | | function DOMCdataSection::isElementContentWhitespace() | - function DOMCdataSection::isElementContentWhitespace() | - | function DOMCdataSection::replaceWholeText($content) | - function DOMCdataSection::replaceWholeText($content) | - | function DOMCdataSection::insertBefore($newChild,$refChild) | function DOMCdataSection::insertBefore($newnode,$refnode) | - | function DOMCdataSection::replaceChild($newChild,$oldChild) | function DOMCdataSection::replaceChild($newnode,$oldnode) | - | function DOMCdataSection::removeChild($oldChild) | function DOMCdataSection::removeChild($oldnode) | - | function DOMCdataSection::appendChild($newChild) | function DOMCdataSection::appendChild($newnode) | - | function DOMCdataSection::compareDocumentPosition($other) | - function DOMCdataSection::compareDocumentPosition($other) | - | function DOMCdataSection::isSameNode($other) | function DOMCdataSection::isSameNode($anotherNode) | - | function DOMCdataSection::isEqualNode($arg) | - function DOMCdataSection::isEqualNode($arg) | - | function DOMCdataSection::getFeature($feature,$version) | - function DOMCdataSection::getFeature($feature,$version) | - | function DOMCdataSection::setUserData($key,$data,$handler) | - function DOMCdataSection::setUserData($key,$data,$handler) | - | function DOMCdataSection::getUserData($key) | - function DOMCdataSection::getUserData($key) | - | function DOMDocumentType::insertBefore($newChild,$refChild) | function DOMDocumentType::insertBefore($newnode,$refnode) | - | function DOMDocumentType::replaceChild($newChild,$oldChild) | function DOMDocumentType::replaceChild($newnode,$oldnode) | - | function DOMDocumentType::removeChild($oldChild) | function DOMDocumentType::removeChild($oldnode) | - | function DOMDocumentType::appendChild($newChild) | function DOMDocumentType::appendChild($newnode) | - | function DOMDocumentType::compareDocumentPosition($other) | - function DOMDocumentType::compareDocumentPosition($other) | - | function DOMDocumentType::isSameNode($other) | function DOMDocumentType::isSameNode($anotherNode) | - | function DOMDocumentType::isEqualNode($arg) | - function DOMDocumentType::isEqualNode($arg) | - | function DOMDocumentType::getFeature($feature,$version) | - function DOMDocumentType::getFeature($feature,$version) | - | function DOMDocumentType::setUserData($key,$data,$handler) | - function DOMDocumentType::setUserData($key,$data,$handler) | - | function DOMDocumentType::getUserData($key) | - function DOMDocumentType::getUserData($key) | - | function DOMNotation::insertBefore($newChild,$refChild) | function DOMNotation::insertBefore($newnode,$refnode) | - | function DOMNotation::replaceChild($newChild,$oldChild) | function DOMNotation::replaceChild($newnode,$oldnode) | - | function DOMNotation::removeChild($oldChild) | function DOMNotation::removeChild($oldnode) | - | function DOMNotation::appendChild($newChild) | function DOMNotation::appendChild($newnode) | - | function DOMNotation::compareDocumentPosition($other) | - function DOMNotation::compareDocumentPosition($other) | - | function DOMNotation::isSameNode($other) | function DOMNotation::isSameNode($anotherNode) | - | function DOMNotation::isEqualNode($arg) | - function DOMNotation::isEqualNode($arg) | - | function DOMNotation::getFeature($feature,$version) | - function DOMNotation::getFeature($feature,$version) | - | function DOMNotation::setUserData($key,$data,$handler) | - function DOMNotation::setUserData($key,$data,$handler) | - | function DOMNotation::getUserData($key) | - function DOMNotation::getUserData($key) | - | function DOMEntity::insertBefore($newChild,$refChild) | function DOMEntity::insertBefore($newnode,$refnode) | - | function DOMEntity::replaceChild($newChild,$oldChild) | function DOMEntity::replaceChild($newnode,$oldnode) | - | function DOMEntity::removeChild($oldChild) | function DOMEntity::removeChild($oldnode) | - | function DOMEntity::appendChild($newChild) | function DOMEntity::appendChild($newnode) | - | function DOMEntity::compareDocumentPosition($other) | - function DOMEntity::compareDocumentPosition($other) | - | function DOMEntity::isSameNode($other) | function DOMEntity::isSameNode($anotherNode) | - | function DOMEntity::isEqualNode($arg) | - function DOMEntity::isEqualNode($arg) | - | function DOMEntity::getFeature($feature,$version) | - function DOMEntity::getFeature($feature,$version) | - | function DOMEntity::setUserData($key,$data,$handler) | - function DOMEntity::setUserData($key,$data,$handler) | - | function DOMEntity::getUserData($key) | - function DOMEntity::getUserData($key) | - | function DOMEntityReference::insertBefore($newChild,$refChild) | function DOMEntityReference::insertBefore($newnode,$refnode) | - | function DOMEntityReference::replaceChild($newChild,$oldChild) | function DOMEntityReference::replaceChild($newnode,$oldnode) | - | function DOMEntityReference::removeChild($oldChild) | function DOMEntityReference::removeChild($oldnode) | - | function DOMEntityReference::appendChild($newChild) | function DOMEntityReference::appendChild($newnode) | - | function DOMEntityReference::compareDocumentPosition($other) | - function DOMEntityReference::compareDocumentPosition($other) | - | function DOMEntityReference::isSameNode($other) | function DOMEntityReference::isSameNode($anotherNode) | - | function DOMEntityReference::isEqualNode($arg) | - function DOMEntityReference::isEqualNode($arg) | - | function DOMEntityReference::getFeature($feature,$version) | - function DOMEntityReference::getFeature($feature,$version) | - | function DOMEntityReference::setUserData($key,$data,$handler) | - function DOMEntityReference::setUserData($key,$data,$handler) | - | function DOMEntityReference::getUserData($key) | - function DOMEntityReference::getUserData($key) | - | function DOMProcessingInstruction::insertBefore($newChild,$refChild) | function DOMProcessingInstruction::insertBefore($newnode,$refnode) | - | function DOMProcessingInstruction::replaceChild($newChild,$oldChild) | function DOMProcessingInstruction::replaceChild($newnode,$oldnode) | - | function DOMProcessingInstruction::removeChild($oldChild) | function DOMProcessingInstruction::removeChild($oldnode) | - | function DOMProcessingInstruction::appendChild($newChild) | function DOMProcessingInstruction::appendChild($newnode) | - | function DOMProcessingInstruction::compareDocumentPosition($other) | - function DOMProcessingInstruction::compareDocumentPosition($other) | - | function DOMProcessingInstruction::isSameNode($other) | function DOMProcessingInstruction::isSameNode($anotherNode) | - | function DOMProcessingInstruction::isEqualNode($arg) | - function DOMProcessingInstruction::isEqualNode($arg) | - | function DOMProcessingInstruction::getFeature($feature,$version) | - function DOMProcessingInstruction::getFeature($feature,$version) | - | function DOMProcessingInstruction::setUserData($key,$data,$handler) | - function DOMProcessingInstruction::setUserData($key,$data,$handler) | - | function DOMProcessingInstruction::getUserData($key) | - function DOMProcessingInstruction::getUserData($key) | - | class DOMStringExtend | - class DOMStringExtend | - | function DOMXPath::__construct($doc) | function DOMXPath::__construct($document) | - | function DOMXPath::query($expr,$context,$registerNodeNS) | function DOMXPath::query($expr,$contextnode,$registerNodeNS) | - | function DOMXPath::evaluate($expr,$context,$registerNodeNS) | function DOMXPath::evaluate($expr,$contextnode,$registerNodeNS) | - | function DOMXPath::registerPhpFunctions() | function DOMXPath::registerPhpFunctions($restrict) | -??? tiny "[=97% "**PDO** 139 / 144"]" + | function DOMCdataSection::replaceWith($nodes) | - function DOMCdataSection::replaceWith($nodes) | + | function DOMCdataSection::remove() | - function DOMCdataSection::remove() | + | function DOMCdataSection::before($nodes) | - function DOMCdataSection::before($nodes) | + | function DOMCdataSection::after($nodes) | - function DOMCdataSection::after($nodes) | + | | + class DOMConfiguration | + | | + function DOMDocument::renameNode($node,$namespaceUri,$qualifiedName) | + | | + function DOMNamedNodeMap::setNamedItem($item) | + | | + function DOMNamedNodeMap::removeNamedItem($name) | + | | + function DOMNamedNodeMap::setNamedItemNS($item) | + | | + function DOMNamedNodeMap::removeNamedItemNS($namespaceUri,$localName) | +??? tiny "[=96% "**PDO** 139 / 145"]" | PHP | PeachPie | | --- | --- | - | function PDO::__construct($dsn,$username,$passwd,$options) | function PDO::__construct($dsn,$username,$password,$options) | - | function PDO::prepare($statement,$options) | function PDO::prepare($statement,$driver_options) | - | function PDO::exec($query) | function PDO::exec($statement) | - | function PDO::query() | function PDO::query($statement,$args) | - | function PDO::lastInsertId($seqname) | function PDO::lastInsertId($name) | - | function PDO::quote($string,$paramtype) | function PDO::quote($str,$parameter_type) | | const PDO::SQLITE_DETERMINISTIC | - const PDO::SQLITE_DETERMINISTIC | | const PDO::SQLITE_OPEN_READONLY | - const PDO::SQLITE_OPEN_READONLY | | const PDO::SQLITE_OPEN_READWRITE | - const PDO::SQLITE_OPEN_READWRITE | | const PDO::SQLITE_OPEN_CREATE | - const PDO::SQLITE_OPEN_CREATE | - | function PDOStatement::execute($bound_input_params) | function PDOStatement::execute($input_parameters) | - | function PDOStatement::fetch($how,$orientation,$offset) | function PDOStatement::fetch($fetch_style,$cursor_orientation,$cursor_offet) | - | function PDOStatement::bindParam($paramno,$param,$type,$maxlen,$driverdata) | function PDOStatement::bindParam($parameter,$variable,$data_type,$length,$driver_options) | - | function PDOStatement::bindValue($paramno,$param,$type) | function PDOStatement::bindValue($parameter,$value,$data_type) | - | function PDOStatement::fetchAll($how,$class_name,$ctor_args) | function PDOStatement::fetchAll($fetch_style,$fetch_argument,$ctor_args) | - | function PDOStatement::setFetchMode($mode,$params) | function PDOStatement::setFetchMode($mode,$args) | + | function PDOStatement::getIterator() | - function PDOStatement::getIterator() | | class PDORow | - class PDORow | -??? tiny "[=26% "**openssl** 27 / 105"]" + | | + function PDO::__call($name,$arguments) | + | | + const PDO::ATTR_DRIVER_SPECIFIC | + | | + const PDO::SQLSRV_ENCODING_DEFAULT | + | | + const PDO::SQLSRV_ENCODING_BINARY | + | | + const PDO::SQLSRV_ENCODING_SYSTEM | + | | + const PDO::SQLSRV_ENCODING_UTF8 | + | | + const PDO::SQLSRV_ATTR_ENCODING | + | | + const PDO::SQLSRV_ATTR_QUERY_TIMEOUT | + | | + const PDO::SQLSRV_ATTR_DIRECT_QUERY | + | | + const PDO::SQLSRV_ATTR_CURSOR_SCROLL_TYPE | + | | + const PDO::SQLSRV_ATTR_FETCHES_NUMERIC_TYPE | + | | + const PDO::SQLSRV_PARAM_OUT_DEFAULT_SIZE | + | | + const PDO::SQLSRV_CURSOR_KEYSET | + | | + const PDO::SQLSRV_CURSOR_DYNAMIC | + | | + const PDO::SQLSRV_CURSOR_STATIC | + | | + const PDO::SQLSRV_CURSOR_BUFFERED | + | | + const PDO::PARAM_ZVAL | +??? tiny "[=22% "**openssl** 27 / 124"]" | PHP | PeachPie | | --- | --- | - | function openssl_get_cert_locations() | - function openssl_get_cert_locations() | - | function openssl_spki_new($privkey,$challenge,$algo) | - function openssl_spki_new($privkey,$challenge,$algo) | + | function openssl_x509_check_private_key($certificate,$private_key) | - function openssl_x509_check_private_key($certificate,$private_key) | + | function openssl_x509_verify($certificate,$public_key) | - function openssl_x509_verify($certificate,$public_key) | + | function openssl_x509_parse($certificate,$short_names) | - function openssl_x509_parse($certificate,$short_names) | + | function openssl_x509_checkpurpose($certificate,$purpose,$ca_info,$untrusted_certificates_file) | - function openssl_x509_checkpurpose($certificate,$purpose,$ca_info,$untrusted_certificates_file) | + | function openssl_pkcs12_export_to_file($certificate,$output_filename,$private_key,$passphrase,$options) | - function openssl_pkcs12_export_to_file($certificate,$output_filename,$private_key,$passphrase,$options) | + | function openssl_pkcs12_export($certificate,$output,$private_key,$passphrase,$options) | - function openssl_pkcs12_export($certificate,$output,$private_key,$passphrase,$options) | + | function openssl_pkcs12_read($pkcs12,$certificates,$passphrase) | - function openssl_pkcs12_read($pkcs12,$certificates,$passphrase) | + | function openssl_csr_export_to_file($csr,$output_filename,$no_text) | - function openssl_csr_export_to_file($csr,$output_filename,$no_text) | + | function openssl_csr_export($csr,$output,$no_text) | - function openssl_csr_export($csr,$output,$no_text) | + | function openssl_csr_sign($csr,$ca_certificate,$private_key,$days,$options,$serial) | - function openssl_csr_sign($csr,$ca_certificate,$private_key,$days,$options,$serial) | + | function openssl_csr_new($distinguished_names,$private_key,$options,$extra_attributes) | - function openssl_csr_new($distinguished_names,$private_key,$options,$extra_attributes) | + | function openssl_csr_get_subject($csr,$short_names) | - function openssl_csr_get_subject($csr,$short_names) | + | function openssl_csr_get_public_key($csr,$short_names) | - function openssl_csr_get_public_key($csr,$short_names) | + | function openssl_pkey_export_to_file($key,$output_filename,$passphrase,$options) | - function openssl_pkey_export_to_file($key,$output_filename,$passphrase,$options) | + | function openssl_pkey_export($key,$output,$passphrase,$options) | - function openssl_pkey_export($key,$output,$passphrase,$options) | + | function openssl_pkey_get_public($public_key) | - function openssl_pkey_get_public($public_key) | + | function openssl_get_publickey($public_key) | - function openssl_get_publickey($public_key) | + | function openssl_pkey_free($key) | - function openssl_pkey_free($key) | + | function openssl_free_key($key) | - function openssl_free_key($key) | + | function openssl_pkey_get_private($private_key,$passphrase) | - function openssl_pkey_get_private($private_key,$passphrase) | + | function openssl_get_privatekey($private_key,$passphrase) | - function openssl_get_privatekey($private_key,$passphrase) | + | function openssl_pkey_get_details($key) | - function openssl_pkey_get_details($key) | + | function openssl_pbkdf2($password,$salt,$key_length,$iterations,$digest_algo) | - function openssl_pbkdf2($password,$salt,$key_length,$iterations,$digest_algo) | + | function openssl_pkcs7_verify($input_filename,$flags,$signers_certificates_filename,$ca_info,$untrusted_certificates_filename,$content,$output_filename) | - function openssl_pkcs7_verify($input_filename,$flags,$signers_certificates_filename,$ca_info,$untrusted_certificates_filename,$content,$output_filename) | + | function openssl_pkcs7_encrypt($input_filename,$output_filename,$certificate,$headers,$flags,$cipher_algo) | - function openssl_pkcs7_encrypt($input_filename,$output_filename,$certificate,$headers,$flags,$cipher_algo) | + | function openssl_pkcs7_sign($input_filename,$output_filename,$certificate,$private_key,$headers,$flags,$untrusted_certificates_filename) | - function openssl_pkcs7_sign($input_filename,$output_filename,$certificate,$private_key,$headers,$flags,$untrusted_certificates_filename) | + | function openssl_pkcs7_decrypt($input_filename,$output_filename,$certificate,$private_key) | - function openssl_pkcs7_decrypt($input_filename,$output_filename,$certificate,$private_key) | + | function openssl_pkcs7_read($input_filename,$certificates) | - function openssl_pkcs7_read($input_filename,$certificates) | + | function openssl_cms_verify($input_filename,$flags,$certificates,$ca_info,$untrusted_certificates_filename,$content,$pk7,$sigfile,$encoding) | - function openssl_cms_verify($input_filename,$flags,$certificates,$ca_info,$untrusted_certificates_filename,$content,$pk7,$sigfile,$encoding) | + | function openssl_cms_encrypt($input_filename,$output_filename,$certificate,$headers,$flags,$encoding,$cipher_algo) | - function openssl_cms_encrypt($input_filename,$output_filename,$certificate,$headers,$flags,$encoding,$cipher_algo) | + | function openssl_cms_sign($input_filename,$output_filename,$certificate,$private_key,$headers,$flags,$encoding,$untrusted_certificates_filename) | - function openssl_cms_sign($input_filename,$output_filename,$certificate,$private_key,$headers,$flags,$encoding,$untrusted_certificates_filename) | + | function openssl_cms_decrypt($input_filename,$output_filename,$certificate,$private_key,$encoding) | - function openssl_cms_decrypt($input_filename,$output_filename,$certificate,$private_key,$encoding) | + | function openssl_cms_read($input_filename,$certificates) | - function openssl_cms_read($input_filename,$certificates) | + | function openssl_private_encrypt($data,$encrypted_data,$private_key,$padding) | - function openssl_private_encrypt($data,$encrypted_data,$private_key,$padding) | + | function openssl_private_decrypt($data,$decrypted_data,$private_key,$padding) | - function openssl_private_decrypt($data,$decrypted_data,$private_key,$padding) | + | function openssl_public_encrypt($data,$encrypted_data,$public_key,$padding) | - function openssl_public_encrypt($data,$encrypted_data,$public_key,$padding) | + | function openssl_public_decrypt($data,$decrypted_data,$public_key,$padding) | - function openssl_public_decrypt($data,$decrypted_data,$public_key,$padding) | + | function openssl_sign($data,$signature,$private_key,$algorithm) | - function openssl_sign($data,$signature,$private_key,$algorithm) | + | function openssl_verify($data,$signature,$public_key,$algorithm) | - function openssl_verify($data,$signature,$public_key,$algorithm) | + | function openssl_seal($data,$sealed_data,$encrypted_keys,$public_key,$cipher_algo,$iv) | - function openssl_seal($data,$sealed_data,$encrypted_keys,$public_key,$cipher_algo,$iv) | + | function openssl_open($data,$output,$encrypted_key,$private_key,$cipher_algo,$iv) | - function openssl_open($data,$output,$encrypted_key,$private_key,$cipher_algo,$iv) | + | function openssl_get_curve_names() | - function openssl_get_curve_names() | + | function openssl_dh_compute_key($public_key,$private_key) | - function openssl_dh_compute_key($public_key,$private_key) | + | function openssl_pkey_derive($public_key,$private_key,$key_length) | - function openssl_pkey_derive($public_key,$private_key,$key_length) | + | function openssl_spki_new($private_key,$challenge,$digest_algo) | - function openssl_spki_new($private_key,$challenge,$digest_algo) | | function openssl_spki_verify($spki) | - function openssl_spki_verify($spki) | | function openssl_spki_export($spki) | - function openssl_spki_export($spki) | | function openssl_spki_export_challenge($spki) | - function openssl_spki_export_challenge($spki) | - | function openssl_pkey_free($key) | - function openssl_pkey_free($key) | - | function openssl_pkey_export($key,$out,$passphrase,$config_args) | - function openssl_pkey_export($key,$out,$passphrase,$config_args) | - | function openssl_pkey_export_to_file($key,$outfilename,$passphrase,$config_args) | - function openssl_pkey_export_to_file($key,$outfilename,$passphrase,$config_args) | - | function openssl_pkey_get_private($key,$passphrase) | - function openssl_pkey_get_private($key,$passphrase) | - | function openssl_pkey_get_public($cert) | - function openssl_pkey_get_public($cert) | - | function openssl_pkey_get_details($key) | - function openssl_pkey_get_details($key) | - | function openssl_free_key($key) | - function openssl_free_key($key) | - | function openssl_get_privatekey($key,$passphrase) | - function openssl_get_privatekey($key,$passphrase) | - | function openssl_get_publickey($cert) | - function openssl_get_publickey($cert) | - | function openssl_x509_read($cert) | function openssl_x509_read($x509certdata) | - | function openssl_x509_free($x509) | function openssl_x509_free($x509cert) | - | function openssl_x509_parse($x509,$shortname) | - function openssl_x509_parse($x509,$shortname) | - | function openssl_x509_checkpurpose($x509cert,$purpose,$cainfo,$untrustedfile) | - function openssl_x509_checkpurpose($x509cert,$purpose,$cainfo,$untrustedfile) | - | function openssl_x509_check_private_key($cert,$key) | - function openssl_x509_check_private_key($cert,$key) | - | function openssl_x509_verify($cert,$key) | - function openssl_x509_verify($cert,$key) | - | function openssl_x509_export($x509,$out,$notext) | function openssl_x509_export($x509,$output,$notext) | - | function openssl_x509_fingerprint($x509,$method,$raw_output) | function openssl_x509_fingerprint($x509,$hash_algorithm,$raw_output) | - | function openssl_pkcs12_export($x509,$out,$priv_key,$pass,$args) | - function openssl_pkcs12_export($x509,$out,$priv_key,$pass,$args) | - | function openssl_pkcs12_export_to_file($x509,$filename,$priv_key,$pass,$args) | - function openssl_pkcs12_export_to_file($x509,$filename,$priv_key,$pass,$args) | - | function openssl_pkcs12_read($PKCS12,$certs,$pass) | - function openssl_pkcs12_read($PKCS12,$certs,$pass) | - | function openssl_csr_new($dn,$privkey,$configargs,$extraattribs) | - function openssl_csr_new($dn,$privkey,$configargs,$extraattribs) | - | function openssl_csr_export($csr,$out,$notext) | - function openssl_csr_export($csr,$out,$notext) | - | function openssl_csr_export_to_file($csr,$outfilename,$notext) | - function openssl_csr_export_to_file($csr,$outfilename,$notext) | - | function openssl_csr_sign($csr,$x509,$priv_key,$days,$config_args,$serial) | - function openssl_csr_sign($csr,$x509,$priv_key,$days,$config_args,$serial) | - | function openssl_csr_get_subject($csr,$use_shortnames) | - function openssl_csr_get_subject($csr,$use_shortnames) | - | function openssl_csr_get_public_key($csr,$use_shortnames) | - function openssl_csr_get_public_key($csr,$use_shortnames) | - | function openssl_encrypt($data,$method,$password,$options,$iv,$tag,$aad,$tag_length) | function openssl_encrypt($data,$method,$key,$options,$iv,$tag,$aad,$tag_length) | - | function openssl_decrypt($data,$method,$password,$options,$iv,$tag,$aad) | function openssl_decrypt($data,$method,$key,$options,$iv,$tag,$aad) | - | function openssl_sign($data,$signature,$key,$method) | - function openssl_sign($data,$signature,$key,$method) | - | function openssl_verify($data,$signature,$key,$method) | - function openssl_verify($data,$signature,$key,$method) | - | function openssl_seal($data,$sealdata,$ekeys,$pubkeys,$method,$iv) | - function openssl_seal($data,$sealdata,$ekeys,$pubkeys,$method,$iv) | - | function openssl_open($data,$opendata,$ekey,$privkey,$method,$iv) | - function openssl_open($data,$opendata,$ekey,$privkey,$method,$iv) | - | function openssl_pbkdf2($password,$salt,$key_length,$iterations,$digest_algorithm) | - function openssl_pbkdf2($password,$salt,$key_length,$iterations,$digest_algorithm) | - | function openssl_pkcs7_verify($filename,$flags,$signerscerts,$cainfo,$extracerts,$content,$pk7) | - function openssl_pkcs7_verify($filename,$flags,$signerscerts,$cainfo,$extracerts,$content,$pk7) | - | function openssl_pkcs7_decrypt($infilename,$outfilename,$recipcert,$recipkey) | - function openssl_pkcs7_decrypt($infilename,$outfilename,$recipcert,$recipkey) | - | function openssl_pkcs7_sign($infile,$outfile,$signcert,$signkey,$headers,$flags,$extracertsfilename) | - function openssl_pkcs7_sign($infile,$outfile,$signcert,$signkey,$headers,$flags,$extracertsfilename) | - | function openssl_pkcs7_encrypt($infile,$outfile,$recipcerts,$headers,$flags,$cipher) | - function openssl_pkcs7_encrypt($infile,$outfile,$recipcerts,$headers,$flags,$cipher) | - | function openssl_pkcs7_read($infilename,$certs) | - function openssl_pkcs7_read($infilename,$certs) | - | function openssl_private_encrypt($data,$crypted,$key,$padding) | - function openssl_private_encrypt($data,$crypted,$key,$padding) | - | function openssl_private_decrypt($data,$crypted,$key,$padding) | - function openssl_private_decrypt($data,$crypted,$key,$padding) | - | function openssl_public_encrypt($data,$crypted,$key,$padding) | - function openssl_public_encrypt($data,$crypted,$key,$padding) | - | function openssl_public_decrypt($data,$crypted,$key,$padding) | - function openssl_public_decrypt($data,$crypted,$key,$padding) | - | function openssl_get_curve_names() | - function openssl_get_curve_names() | - | function openssl_dh_compute_key($pub_key,$dh_key) | - function openssl_dh_compute_key($pub_key,$dh_key) | - | function openssl_pkey_derive($peer_pub_key,$priv_key,$keylen) | - function openssl_pkey_derive($peer_pub_key,$priv_key,$keylen) | - | function openssl_random_pseudo_bytes($length,$result_is_strong) | function openssl_random_pseudo_bytes($length,$crypto_strong) | + | function openssl_get_cert_locations() | - function openssl_get_cert_locations() | + | class OpenSSLCertificate | - class OpenSSLCertificate | + | class OpenSSLCertificateSigningRequest | - class OpenSSLCertificateSigningRequest | + | class OpenSSLAsymmetricKey | - class OpenSSLAsymmetricKey | | const OPENSSL_VERSION_TEXT | - const OPENSSL_VERSION_TEXT | | const OPENSSL_VERSION_NUMBER | - const OPENSSL_VERSION_NUMBER | | const X509_PURPOSE_SSL_CLIENT | - const X509_PURPOSE_SSL_CLIENT | @@ -1210,6 +730,14 @@ | const PKCS7_NOATTR | - const PKCS7_NOATTR | | const PKCS7_BINARY | - const PKCS7_BINARY | | const PKCS7_NOSIGS | - const PKCS7_NOSIGS | + | const OPENSSL_CMS_DETACHED | - const OPENSSL_CMS_DETACHED | + | const OPENSSL_CMS_TEXT | - const OPENSSL_CMS_TEXT | + | const OPENSSL_CMS_NOINTERN | - const OPENSSL_CMS_NOINTERN | + | const OPENSSL_CMS_NOVERIFY | - const OPENSSL_CMS_NOVERIFY | + | const OPENSSL_CMS_NOCERTS | - const OPENSSL_CMS_NOCERTS | + | const OPENSSL_CMS_NOATTR | - const OPENSSL_CMS_NOATTR | + | const OPENSSL_CMS_BINARY | - const OPENSSL_CMS_BINARY | + | const OPENSSL_CMS_NOSIGS | - const OPENSSL_CMS_NOSIGS | | const OPENSSL_PKCS1_PADDING | - const OPENSSL_PKCS1_PADDING | | const OPENSSL_SSLV23_PADDING | - const OPENSSL_SSLV23_PADDING | | const OPENSSL_NO_PADDING | - const OPENSSL_NO_PADDING | @@ -1224,172 +752,134 @@ | const OPENSSL_CIPHER_AES_192_CBC | - const OPENSSL_CIPHER_AES_192_CBC | | const OPENSSL_CIPHER_AES_256_CBC | - const OPENSSL_CIPHER_AES_256_CBC | | const OPENSSL_TLSEXT_SERVER_NAME | - const OPENSSL_TLSEXT_SERVER_NAME | -??? tiny "[=100% "**SimpleXML** 40 / 40"]" + | const OPENSSL_ENCODING_DER | - const OPENSSL_ENCODING_DER | + | const OPENSSL_ENCODING_SMIME | - const OPENSSL_ENCODING_SMIME | + | const OPENSSL_ENCODING_PEM | - const OPENSSL_ENCODING_PEM | +??? tiny "[=85% "**SimpleXML** 40 / 47"]" | PHP | PeachPie | | --- | --- | - | function simplexml_load_file($filename,$class_name,$options,$ns,$is_prefix) | function simplexml_load_file($fileName,$className,$options) | - | function simplexml_load_string($data,$class_name,$options,$ns,$is_prefix) | function simplexml_load_string($data,$className,$options) | - | function simplexml_import_dom($node,$class_name) | function simplexml_import_dom($node,$className) | - | function SimpleXMLElement::__construct($data,$options,$data_is_url,$ns,$is_prefix) | function SimpleXMLElement::__construct($data,$options,$dataIsUrl,$ns,$is_prefix) | - | function SimpleXMLElement::registerXPathNamespace($prefix,$ns) | function SimpleXMLElement::registerXPathNamespace($prefix,$namespaceUri) | - | function SimpleXMLElement::attributes($ns,$is_prefix) | function SimpleXMLElement::attributes($ns,$isPrefix) | - | function SimpleXMLElement::children($ns,$is_prefix) | function SimpleXMLElement::children($ns,$isPrefix) | - | function SimpleXMLElement::getNamespaces($recursve) | function SimpleXMLElement::getNamespaces($recursive) | - | function SimpleXMLElement::getDocNamespaces($recursve,$from_root) | function SimpleXMLElement::getDocNamespaces($recursive) | - | function SimpleXMLElement::addChild($name,$value,$ns) | function SimpleXMLElement::addChild($qualifiedName,$value,$namespaceUri) | - | function SimpleXMLElement::addAttribute($name,$value,$ns) | function SimpleXMLElement::addAttribute($qualifiedName,$value,$namespaceUri) | - | function SimpleXMLIterator::__construct($data,$options,$data_is_url,$ns,$is_prefix) | function SimpleXMLIterator::__construct($data,$options,$dataIsUrl,$ns,$is_prefix) | - | function SimpleXMLIterator::registerXPathNamespace($prefix,$ns) | function SimpleXMLIterator::registerXPathNamespace($prefix,$namespaceUri) | - | function SimpleXMLIterator::attributes($ns,$is_prefix) | function SimpleXMLIterator::attributes($ns,$isPrefix) | - | function SimpleXMLIterator::children($ns,$is_prefix) | function SimpleXMLIterator::children($ns,$isPrefix) | - | function SimpleXMLIterator::getNamespaces($recursve) | function SimpleXMLIterator::getNamespaces($recursive) | - | function SimpleXMLIterator::getDocNamespaces($recursve,$from_root) | function SimpleXMLIterator::getDocNamespaces($recursive) | - | function SimpleXMLIterator::addChild($name,$value,$ns) | function SimpleXMLIterator::addChild($qualifiedName,$value,$namespaceUri) | - | function SimpleXMLIterator::addAttribute($name,$value,$ns) | function SimpleXMLIterator::addAttribute($qualifiedName,$value,$namespaceUri) | -??? tiny "[=96% "**xml** 47 / 49"]" + | function SimpleXMLElement::rewind() | - function SimpleXMLElement::rewind() | + | function SimpleXMLElement::valid() | - function SimpleXMLElement::valid() | + | function SimpleXMLElement::current() | - function SimpleXMLElement::current() | + | function SimpleXMLElement::key() | - function SimpleXMLElement::key() | + | function SimpleXMLElement::next() | - function SimpleXMLElement::next() | + | function SimpleXMLElement::hasChildren() | - function SimpleXMLElement::hasChildren() | + | function SimpleXMLElement::getChildren() | - function SimpleXMLElement::getChildren() | + | | + function SimpleXMLElement::__get($name) | + | | + function SimpleXMLElement::__set($name,$value) | + | | + function SimpleXMLElement::__unset($name) | + | | + function SimpleXMLElement::__isset($name) | + | | + function SimpleXMLElement::GetEnumerator() | + | | + function SimpleXMLElement::offsetGet($index) | + | | + function SimpleXMLElement::offsetSet($index,$value) | + | | + function SimpleXMLElement::offsetUnset($index) | + | | + function SimpleXMLElement::offsetExists($index) | + | | + function SimpleXMLIterator::__get($name) | + | | + function SimpleXMLIterator::__set($name,$value) | + | | + function SimpleXMLIterator::__unset($name) | + | | + function SimpleXMLIterator::__isset($name) | + | | + function SimpleXMLIterator::GetEnumerator() | + | | + function SimpleXMLIterator::offsetGet($index) | + | | + function SimpleXMLIterator::offsetSet($index,$value) | + | | + function SimpleXMLIterator::offsetUnset($index) | + | | + function SimpleXMLIterator::offsetExists($index) | +??? tiny "[=96% "**xml** 48 / 50"]" | PHP | PeachPie | | --- | --- | - | function xml_parser_create_ns($encoding,$sep) | function xml_parser_create_ns($encoding,$namespaceSeparator) | - | function xml_set_object($parser,$obj) | function xml_set_object($parser,$objRef) | - | function xml_set_element_handler($parser,$shdl,$ehdl) | function xml_set_element_handler($parser,$start_element_handler,$end_element_handler) | - | function xml_set_character_data_handler($parser,$hdl) | function xml_set_character_data_handler($parser,$character_data_handler) | - | function xml_set_processing_instruction_handler($parser,$hdl) | function xml_set_processing_instruction_handler($parser,$processing_instruction_handler) | - | function xml_set_default_handler($parser,$hdl) | function xml_set_default_handler($parser,$default_handler) | - | function xml_set_unparsed_entity_decl_handler($parser,$hdl) | - function xml_set_unparsed_entity_decl_handler($parser,$hdl) | - | function xml_set_notation_decl_handler($parser,$hdl) | function xml_set_notation_decl_handler($parser,$notation_decl_handler) | - | function xml_set_external_entity_ref_handler($parser,$hdl) | function xml_set_external_entity_ref_handler($parser,$external_entity_ref_handler) | - | function xml_set_start_namespace_decl_handler($parser,$hdl) | function xml_set_start_namespace_decl_handler($parser,$start_namespace_decl_handler) | - | function xml_set_end_namespace_decl_handler($parser,$hdl) | function xml_set_end_namespace_decl_handler($parser,$end_namespace_decl_handler) | - | function xml_parse($parser,$data,$isfinal) | function xml_parse($parser,$data,$is_final) | + | class XmlParser | - class XmlParser | | const XML_SAX_IMPL | - const XML_SAX_IMPL | + | | + const XML_ERROR_GENERIC | ??? tiny "[=100% "**xmlreader** 48 / 48"]" - | PHP | PeachPie | - | --- | --- | - | function XMLReader::getAttributeNs($name,$namespaceURI) | function XMLReader::getAttributeNs($localName,$namespaceURI) | - | function XMLReader::moveToAttributeNs($name,$namespaceURI) | function XMLReader::moveToAttributeNs($localName,$namespaceURI) | - | function XMLReader::setParserProperty($property,$value) | function XMLReader::setParserProperty($property,$newValue) | ??? tiny "[=100% "**xmlwriter** 85 / 85"]" +??? tiny "[=37% "**mysqli** 115 / 310"]" | PHP | PeachPie | | --- | --- | - | function xmlwriter_start_dtd_element($xmlwriter,$qualifiedName) | function xmlwriter_start_dtd_element($xmlwriter,$name) | - | function xmlwriter_write_dtd_entity($xmlwriter,$name,$content) | function xmlwriter_write_dtd_entity($xmlwriter,$name,$content,$pe,$pubid,$sysid,$ndataid) | - | function XMLWriter::writeAttribute($name,$value) | function XMLWriter::writeAttribute($name,$content) | - | function XMLWriter::writeDtdEntity($name,$content) | function XMLWriter::writeDtdEntity($name,$content,$pe,$pubid,$sysid,$ndataid) | -??? tiny "[=37% "**mysqli** 115 / 309"]" - | PHP | PeachPie | - | --- | --- | - | function mysqli_autocommit($link,$mode) | - function mysqli_autocommit($link,$mode) | - | function mysqli_begin_transaction($link,$flags,$name) | - function mysqli_begin_transaction($link,$flags,$name) | - | function mysqli_change_user($link,$user,$password,$database) | - function mysqli_change_user($link,$user,$password,$database) | - | function mysqli_commit($link,$flags,$name) | - function mysqli_commit($link,$flags,$name) | - | function mysqli_connect($host,$user,$password,$database,$port,$socket) | function mysqli_connect($host,$username,$passwd,$dbname,$port,$socket,$flags) | - | function mysqli_connect_errno() | function mysqli_connect_errno($link) | - | function mysqli_connect_error() | function mysqli_connect_error($link) | - | function mysqli_dump_debug_info($link) | - function mysqli_dump_debug_info($link) | - | function mysqli_debug($debug_options) | - function mysqli_debug($debug_options) | - | function mysqli_error_list($link) | - function mysqli_error_list($link) | - | function mysqli_execute($stmt) | - function mysqli_execute($stmt) | - | function mysqli_fetch_field_direct($result,$field_nr) | function mysqli_fetch_field_direct($result,$fieldnr) | + | function mysqli_autocommit($mysql,$enable) | - function mysqli_autocommit($mysql,$enable) | + | function mysqli_begin_transaction($mysql,$flags,$name) | - function mysqli_begin_transaction($mysql,$flags,$name) | + | function mysqli_change_user($mysql,$username,$password,$database) | - function mysqli_change_user($mysql,$username,$password,$database) | + | function mysqli_commit($mysql,$flags,$name) | - function mysqli_commit($mysql,$flags,$name) | + | function mysqli_dump_debug_info($mysql) | - function mysqli_dump_debug_info($mysql) | + | function mysqli_debug($options) | - function mysqli_debug($options) | + | function mysqli_error_list($mysql) | - function mysqli_error_list($mysql) | + | function mysqli_execute($statement) | - function mysqli_execute($statement) | | function mysqli_fetch_lengths($result) | - function mysqli_fetch_lengths($result) | - | function mysqli_fetch_all($result,$result_type) | - function mysqli_fetch_all($result,$result_type) | - | function mysqli_fetch_array($result,$result_type) | function mysqli_fetch_array($result,$resulttype) | - | function mysqli_fetch_object($result,$class_name,$params) | function mysqli_fetch_object($result,$class_name,$class_params) | - | function mysqli_field_seek($result,$field_nr) | function mysqli_field_seek($result,$fieldnr) | - | function mysqli_get_connection_stats($link) | - function mysqli_get_connection_stats($link) | + | function mysqli_fetch_all($result,$mode) | - function mysqli_fetch_all($result,$mode) | + | function mysqli_get_connection_stats($mysql) | - function mysqli_get_connection_stats($mysql) | | function mysqli_get_client_stats() | - function mysqli_get_client_stats() | - | function mysqli_get_charset($link) | - function mysqli_get_charset($link) | - | function mysqli_get_client_info() | function mysqli_get_client_info($link) | - | function mysqli_get_client_version() | function mysqli_get_client_version($link) | + | function mysqli_get_charset($mysql) | - function mysqli_get_charset($mysql) | | function mysqli_get_links_stats() | - function mysqli_get_links_stats() | - | function mysqli_get_proto_info($link) | - function mysqli_get_proto_info($link) | - | function mysqli_get_warnings($link) | - function mysqli_get_warnings($link) | - | function mysqli_info($link) | - function mysqli_info($link) | - | function mysqli_kill($link,$connection_id) | - function mysqli_kill($link,$connection_id) | - | function mysqli_multi_query($link,$query) | - function mysqli_multi_query($link,$query) | - | function mysqli_poll($read,$write,$error,$sec,$usec) | - function mysqli_poll($read,$write,$error,$sec,$usec) | + | function mysqli_get_proto_info($mysql) | - function mysqli_get_proto_info($mysql) | + | function mysqli_get_warnings($mysql) | - function mysqli_get_warnings($mysql) | + | function mysqli_info($mysql) | - function mysqli_info($mysql) | + | function mysqli_kill($mysql,$process_id) | - function mysqli_kill($mysql,$process_id) | + | function mysqli_multi_query($mysql,$query) | - function mysqli_multi_query($mysql,$query) | + | function mysqli_poll($read,$write,$error,$seconds,$microseconds) | - function mysqli_poll($read,$write,$error,$seconds,$microseconds) | | function mysqli_report($flags) | - function mysqli_report($flags) | - | function mysqli_real_connect($link,$host,$user,$password,$database,$port,$socket,$flags) | function mysqli_real_connect($link,$host,$username,$passwd,$dbname,$port,$socket,$flags) | - | function mysqli_real_escape_string($link,$string_to_escape) | function mysqli_real_escape_string($link,$escapestr) | - | function mysqli_real_query($link,$query) | - function mysqli_real_query($link,$query) | - | function mysqli_reap_async_query($link) | - function mysqli_reap_async_query($link) | - | function mysqli_release_savepoint($link,$name) | - function mysqli_release_savepoint($link,$name) | - | function mysqli_rollback($link,$flags,$name) | - function mysqli_rollback($link,$flags,$name) | - | function mysqli_savepoint($link,$name) | - function mysqli_savepoint($link,$name) | - | function mysqli_select_db($link,$database) | function mysqli_select_db($link,$dbname) | - | function mysqli_stmt_attr_get($stmt,$attribute) | - function mysqli_stmt_attr_get($stmt,$attribute) | - | function mysqli_stmt_attr_set($stmt,$attribute,$value) | - function mysqli_stmt_attr_set($stmt,$attribute,$value) | - | function mysqli_stmt_bind_param($stmt,$types,$vars) | function mysqli_stmt_bind_param($stmt,$types,$variables) | - | function mysqli_stmt_bind_result($stmt,$vars) | - function mysqli_stmt_bind_result($stmt,$vars) | - | function mysqli_stmt_errno($stmt) | - function mysqli_stmt_errno($stmt) | - | function mysqli_stmt_error($stmt) | - function mysqli_stmt_error($stmt) | - | function mysqli_stmt_error_list($stmt) | - function mysqli_stmt_error_list($stmt) | - | function mysqli_stmt_fetch($stmt) | - function mysqli_stmt_fetch($stmt) | - | function mysqli_stmt_field_count($stmt) | - function mysqli_stmt_field_count($stmt) | - | function mysqli_stmt_free_result($stmt) | - function mysqli_stmt_free_result($stmt) | - | function mysqli_stmt_get_warnings($stmt) | - function mysqli_stmt_get_warnings($stmt) | - | function mysqli_stmt_init($link) | - function mysqli_stmt_init($link) | - | function mysqli_stmt_more_results($stmt) | - function mysqli_stmt_more_results($stmt) | - | function mysqli_stmt_next_result($stmt) | - function mysqli_stmt_next_result($stmt) | - | function mysqli_stmt_num_rows($stmt) | - function mysqli_stmt_num_rows($stmt) | - | function mysqli_stmt_param_count($stmt) | - function mysqli_stmt_param_count($stmt) | - | function mysqli_stmt_reset($stmt) | - function mysqli_stmt_reset($stmt) | - | function mysqli_stmt_result_metadata($stmt) | - function mysqli_stmt_result_metadata($stmt) | - | function mysqli_stmt_store_result($stmt) | - function mysqli_stmt_store_result($stmt) | - | function mysqli_stmt_sqlstate($stmt) | - function mysqli_stmt_sqlstate($stmt) | - | function mysqli_sqlstate($link) | - function mysqli_sqlstate($link) | - | function mysqli_ssl_set($link,$key,$cert,$certificate_authority,$certificate_authority_path,$cipher) | function mysqli_ssl_set($link,$key,$cert,$ca,$capath,$cipher) | - | function mysqli_stat($link) | - function mysqli_stat($link) | - | function mysqli_store_result($link,$flags) | - function mysqli_store_result($link,$flags) | + | function mysqli_real_query($mysql,$query) | - function mysqli_real_query($mysql,$query) | + | function mysqli_reap_async_query($mysql) | - function mysqli_reap_async_query($mysql) | + | function mysqli_release_savepoint($mysql,$name) | - function mysqli_release_savepoint($mysql,$name) | + | function mysqli_rollback($mysql,$flags,$name) | - function mysqli_rollback($mysql,$flags,$name) | + | function mysqli_savepoint($mysql,$name) | - function mysqli_savepoint($mysql,$name) | + | function mysqli_stmt_attr_get($statement,$attribute) | - function mysqli_stmt_attr_get($statement,$attribute) | + | function mysqli_stmt_attr_set($statement,$attribute,$value) | - function mysqli_stmt_attr_set($statement,$attribute,$value) | + | function mysqli_stmt_bind_result($statement,$vars) | - function mysqli_stmt_bind_result($statement,$vars) | + | function mysqli_stmt_errno($statement) | - function mysqli_stmt_errno($statement) | + | function mysqli_stmt_error($statement) | - function mysqli_stmt_error($statement) | + | function mysqli_stmt_error_list($statement) | - function mysqli_stmt_error_list($statement) | + | function mysqli_stmt_fetch($statement) | - function mysqli_stmt_fetch($statement) | + | function mysqli_stmt_field_count($statement) | - function mysqli_stmt_field_count($statement) | + | function mysqli_stmt_free_result($statement) | - function mysqli_stmt_free_result($statement) | + | function mysqli_stmt_get_warnings($statement) | - function mysqli_stmt_get_warnings($statement) | + | function mysqli_stmt_init($mysql) | - function mysqli_stmt_init($mysql) | + | function mysqli_stmt_more_results($statement) | - function mysqli_stmt_more_results($statement) | + | function mysqli_stmt_next_result($statement) | - function mysqli_stmt_next_result($statement) | + | function mysqli_stmt_num_rows($statement) | - function mysqli_stmt_num_rows($statement) | + | function mysqli_stmt_param_count($statement) | - function mysqli_stmt_param_count($statement) | + | function mysqli_stmt_reset($statement) | - function mysqli_stmt_reset($statement) | + | function mysqli_stmt_result_metadata($statement) | - function mysqli_stmt_result_metadata($statement) | + | function mysqli_stmt_store_result($statement) | - function mysqli_stmt_store_result($statement) | + | function mysqli_stmt_sqlstate($statement) | - function mysqli_stmt_sqlstate($statement) | + | function mysqli_sqlstate($mysql) | - function mysqli_sqlstate($mysql) | + | function mysqli_stat($mysql) | - function mysqli_stat($mysql) | + | function mysqli_store_result($mysql,$mode) | - function mysqli_store_result($mysql,$mode) | | function mysqli_thread_safe() | - function mysqli_thread_safe() | - | function mysqli_use_result($link) | - function mysqli_use_result($link) | - | function mysqli_warning_count($link) | - function mysqli_warning_count($link) | - | function mysqli_refresh($link,$options) | - function mysqli_refresh($link,$options) | - | function mysqli_escape_string($link,$query,$resultmode) | function mysqli_escape_string($link,$escapestr) | - | function mysqli_set_opt() | - function mysqli_set_opt() | + | function mysqli_use_result($mysql) | - function mysqli_use_result($mysql) | + | function mysqli_warning_count($mysql) | - function mysqli_warning_count($mysql) | + | function mysqli_refresh($mysql,$flags) | - function mysqli_refresh($mysql,$flags) | + | function mysqli_set_opt($mysql,$option,$value) | - function mysqli_set_opt($mysql,$option,$value) | | class mysqli_driver | - class mysqli_driver | - | function mysqli::autocommit($mode) | - function mysqli::autocommit($mode) | + | function mysqli::autocommit($enable) | - function mysqli::autocommit($enable) | | function mysqli::begin_transaction($flags,$name) | - function mysqli::begin_transaction($flags,$name) | - | function mysqli::change_user($user,$password,$database) | - function mysqli::change_user($user,$password,$database) | + | function mysqli::change_user($username,$password,$database) | - function mysqli::change_user($username,$password,$database) | | function mysqli::commit($flags,$name) | - function mysqli::commit($flags,$name) | - | function mysqli::connect($host,$user,$password,$database,$port,$socket) | - function mysqli::connect($host,$user,$password,$database,$port,$socket) | + | function mysqli::connect($hostname,$username,$password,$database,$port,$socket) | - function mysqli::connect($hostname,$username,$password,$database,$port,$socket) | | function mysqli::dump_debug_info() | - function mysqli::dump_debug_info() | - | function mysqli::debug($debug_options) | - function mysqli::debug($debug_options) | + | function mysqli::debug($options) | - function mysqli::debug($options) | | function mysqli::get_charset() | - function mysqli::get_charset() | | function mysqli::get_client_info() | - function mysqli::get_client_info() | | function mysqli::get_connection_stats() | - function mysqli::get_connection_stats() | | function mysqli::get_server_info() | - function mysqli::get_server_info() | | function mysqli::get_warnings() | - function mysqli::get_warnings() | - | function mysqli::kill($connection_id) | - function mysqli::kill($connection_id) | - | function mysqli::__construct($host,$user,$password,$database,$port,$socket) | function mysqli::__construct($host,$username,$passwd,$dbname,$port,$socket,$flags) | - | function mysqli::poll($read,$write,$error,$sec,$usec) | - function mysqli::poll($read,$write,$error,$sec,$usec) | - | function mysqli::real_connect($host,$user,$password,$database,$port,$socket,$flags) | function mysqli::real_connect($host,$username,$passwd,$dbname,$port,$socket,$flags) | - | function mysqli::real_escape_string($string_to_escape) | function mysqli::real_escape_string($escapestr) | + | function mysqli::kill($process_id) | - function mysqli::kill($process_id) | + | function mysqli::poll($read,$write,$error,$seconds,$microseconds) | - function mysqli::poll($read,$write,$error,$seconds,$microseconds) | | function mysqli::reap_async_query() | - function mysqli::reap_async_query() | - | function mysqli::escape_string($string_to_escape) | function mysqli::escape_string($escapestr) | | function mysqli::real_query($query) | - function mysqli::real_query($query) | | function mysqli::release_savepoint($name) | - function mysqli::release_savepoint($name) | | function mysqli::rollback($flags,$name) | - function mysqli::rollback($flags,$name) | | function mysqli::savepoint($name) | - function mysqli::savepoint($name) | - | function mysqli::select_db($database) | function mysqli::select_db($dbname) | | function mysqli::set_opt($option,$value) | - function mysqli::set_opt($option,$value) | - | function mysqli::ssl_set($key,$cert,$certificate_authority,$certificate_authority_path,$cipher) | function mysqli::ssl_set($key,$cert,$ca,$capath,$cipher) | | function mysqli::stat() | - function mysqli::stat() | | function mysqli::stmt_init() | - function mysqli::stmt_init() | - | function mysqli::store_result($flags) | - function mysqli::store_result($flags) | + | function mysqli::store_result($mode) | - function mysqli::store_result($mode) | | function mysqli::thread_safe() | - function mysqli::thread_safe() | | function mysqli::use_result() | - function mysqli::use_result() | - | function mysqli::refresh($options) | - function mysqli::refresh($options) | + | function mysqli::refresh($flags) | - function mysqli::refresh($flags) | | function mysqli_warning::next() | - function mysqli_warning::next() | - | function mysqli_result::__construct() | - function mysqli_result::__construct() | - | function mysqli_result::fetch_field_direct($field_nr) | function mysqli_result::fetch_field_direct($fieldnr) | - | function mysqli_result::fetch_all($result_type) | - function mysqli_result::fetch_all($result_type) | - | function mysqli_result::fetch_array($result_type) | function mysqli_result::fetch_array($resulttype) | - | function mysqli_result::fetch_object($class_name,$params) | function mysqli_result::fetch_object($class_name,$class_params) | - | function mysqli_result::field_seek($field_nr) | function mysqli_result::field_seek($fieldnr) | - | function mysqli_stmt::__construct() | function mysqli_stmt::__construct($link,$query) | + | function mysqli_result::__construct($mysql,$result_mode) | - function mysqli_result::__construct($mysql,$result_mode) | + | function mysqli_result::fetch_all($mode) | - function mysqli_result::fetch_all($mode) | + | function mysqli_result::getIterator() | - function mysqli_result::getIterator() | | function mysqli_stmt::attr_get($attribute) | - function mysqli_stmt::attr_get($attribute) | | function mysqli_stmt::attr_set($attribute,$value) | - function mysqli_stmt::attr_set($attribute,$value) | - | function mysqli_stmt::bind_param($types,$vars) | function mysqli_stmt::bind_param($types,$variables) | | function mysqli_stmt::bind_result($vars) | - function mysqli_stmt::bind_result($vars) | | function mysqli_stmt::fetch() | - function mysqli_stmt::fetch() | | function mysqli_stmt::get_warnings() | - function mysqli_stmt::get_warnings() | @@ -1499,195 +989,51 @@ | const MYSQLI_TRANS_COR_AND_NO_CHAIN | - const MYSQLI_TRANS_COR_AND_NO_CHAIN | | const MYSQLI_TRANS_COR_RELEASE | - const MYSQLI_TRANS_COR_RELEASE | | const MYSQLI_TRANS_COR_NO_RELEASE | - const MYSQLI_TRANS_COR_NO_RELEASE | -??? tiny "[=56% "**mbstring** 48 / 85"]" + | | + function mysqli_client_encoding($link) | +??? tiny "[=66% "**mbstring** 45 / 68"]" | PHP | PeachPie | | --- | --- | - | function mb_convert_case($sourcestring,$mode,$encoding) | function mb_convert_case($str,$mode,$encoding) | - | function mb_strtoupper($sourcestring,$encoding) | function mb_strtoupper($str,$encoding) | - | function mb_strtolower($sourcestring,$encoding) | function mb_strtolower($str,$encoding) | - | function mb_internal_encoding($encoding) | function mb_internal_encoding($encodingName) | - | function mb_http_output($encoding) | function mb_http_output($encodingName) | - | function mb_detect_order($encoding) | function mb_detect_order($encoding_list) | - | function mb_substitute_character($substchar) | function mb_substitute_character($substrchar) | - | function mb_parse_str($encoded_string,$result) | function mb_parse_str($encoded_string,$array) | - | function mb_output_handler($contents,$status) | - function mb_output_handler($contents,$status) | - | function mb_preferred_mime_name($encoding) | function mb_preferred_mime_name($encoding_name) | - | function mb_str_split($str,$split_length,$encoding) | function mb_str_split($string,$split_length,$encoding) | - | function mb_convert_encoding($str,$to,$from) | function mb_convert_encoding($str,$to_encoding,$from_encoding) | + | function mb_output_handler($string,$status) | - function mb_output_handler($string,$status) | | function mb_encoding_aliases($encoding) | - function mb_encoding_aliases($encoding) | - | function mb_convert_kana($str,$option,$encoding) | - function mb_convert_kana($str,$option,$encoding) | - | function mb_encode_mimeheader($str,$charset,$transfer,$linefeed,$indent) | - function mb_encode_mimeheader($str,$charset,$transfer,$linefeed,$indent) | + | function mb_encode_mimeheader($string,$charset,$transfer_encoding,$newline,$indent) | - function mb_encode_mimeheader($string,$charset,$transfer_encoding,$newline,$indent) | | function mb_decode_mimeheader($string) | - function mb_decode_mimeheader($string) | - | function mb_convert_variables($to,$from,$vars) | function mb_convert_variables($to_encoding,$from_encoding,$vars) | - | function mb_encode_numericentity($string,$convmap,$encoding,$is_hex) | - function mb_encode_numericentity($string,$convmap,$encoding,$is_hex) | - | function mb_decode_numericentity($string,$convmap,$encoding,$is_hex) | - function mb_decode_numericentity($string,$convmap,$encoding,$is_hex) | - | function mb_send_mail($to,$subject,$message,$additional_headers,$additional_parameters) | function mb_send_mail($to,$subject,$message,$additional_headers,$additional_parameter) | - | function mb_regex_encoding($encoding) | function mb_regex_encoding($encodingName) | - | function mb_regex_set_options($options) | - function mb_regex_set_options($options) | - | function mb_ereg($pattern,$string,$registers) | - function mb_ereg($pattern,$string,$registers) | - | function mb_eregi($pattern,$string,$registers) | - function mb_eregi($pattern,$string,$registers) | - | function mb_ereg_replace($pattern,$replacement,$string,$option) | - function mb_ereg_replace($pattern,$replacement,$string,$option) | - | function mb_eregi_replace($pattern,$replacement,$string,$option) | - function mb_eregi_replace($pattern,$replacement,$string,$option) | - | function mb_ereg_replace_callback($pattern,$callback,$string,$option) | - function mb_ereg_replace_callback($pattern,$callback,$string,$option) | + | function mb_convert_kana($string,$mode,$encoding) | - function mb_convert_kana($string,$mode,$encoding) | + | function mb_encode_numericentity($string,$map,$encoding,$hex) | - function mb_encode_numericentity($string,$map,$encoding,$hex) | + | function mb_decode_numericentity($string,$map,$encoding) | - function mb_decode_numericentity($string,$map,$encoding) | + | function mb_ereg($pattern,$string,$matches) | - function mb_ereg($pattern,$string,$matches) | + | function mb_eregi($pattern,$string,$matches) | - function mb_eregi($pattern,$string,$matches) | + | function mb_ereg_replace($pattern,$replacement,$string,$options) | - function mb_ereg_replace($pattern,$replacement,$string,$options) | + | function mb_eregi_replace($pattern,$replacement,$string,$options) | - function mb_eregi_replace($pattern,$replacement,$string,$options) | + | function mb_ereg_replace_callback($pattern,$callback,$string,$options) | - function mb_ereg_replace_callback($pattern,$callback,$string,$options) | | function mb_split($pattern,$string,$limit) | - function mb_split($pattern,$string,$limit) | - | function mb_ereg_match($pattern,$string,$option) | - function mb_ereg_match($pattern,$string,$option) | - | function mb_ereg_search($pattern,$option) | - function mb_ereg_search($pattern,$option) | - | function mb_ereg_search_pos($pattern,$option) | - function mb_ereg_search_pos($pattern,$option) | - | function mb_ereg_search_regs($pattern,$option) | - function mb_ereg_search_regs($pattern,$option) | - | function mb_ereg_search_init($string,$pattern,$option) | - function mb_ereg_search_init($string,$pattern,$option) | + | function mb_ereg_match($pattern,$string,$options) | - function mb_ereg_match($pattern,$string,$options) | + | function mb_ereg_search($pattern,$options) | - function mb_ereg_search($pattern,$options) | + | function mb_ereg_search_pos($pattern,$options) | - function mb_ereg_search_pos($pattern,$options) | + | function mb_ereg_search_regs($pattern,$options) | - function mb_ereg_search_regs($pattern,$options) | + | function mb_ereg_search_init($string,$pattern,$options) | - function mb_ereg_search_init($string,$pattern,$options) | | function mb_ereg_search_getregs() | - function mb_ereg_search_getregs() | | function mb_ereg_search_getpos() | - function mb_ereg_search_getpos() | - | function mb_ereg_search_setpos($position) | - function mb_ereg_search_setpos($position) | - | function mbregex_encoding($encoding) | - function mbregex_encoding($encoding) | - | function mbereg($pattern,$string,$registers) | - function mbereg($pattern,$string,$registers) | - | function mberegi($pattern,$string,$registers) | - function mberegi($pattern,$string,$registers) | - | function mbereg_replace($pattern,$replacement,$string,$option) | - function mbereg_replace($pattern,$replacement,$string,$option) | - | function mberegi_replace($pattern,$replacement,$string,$option) | - function mberegi_replace($pattern,$replacement,$string,$option) | - | function mbsplit($pattern,$string,$limit) | - function mbsplit($pattern,$string,$limit) | - | function mbereg_match($pattern,$string,$option) | - function mbereg_match($pattern,$string,$option) | - | function mbereg_search($pattern,$option) | - function mbereg_search($pattern,$option) | - | function mbereg_search_pos($pattern,$option) | - function mbereg_search_pos($pattern,$option) | - | function mbereg_search_regs($pattern,$option) | - function mbereg_search_regs($pattern,$option) | - | function mbereg_search_init($string,$pattern,$option) | - function mbereg_search_init($string,$pattern,$option) | - | function mbereg_search_getregs() | - function mbereg_search_getregs() | - | function mbereg_search_getpos() | - function mbereg_search_getpos() | - | function mbereg_search_setpos($position) | - function mbereg_search_setpos($position) | + | function mb_ereg_search_setpos($offset) | - function mb_ereg_search_setpos($offset) | + | function mb_regex_set_options($options) | - function mb_regex_set_options($options) | | const MB_ONIGURUMA_VERSION | - const MB_ONIGURUMA_VERSION | -??? tiny "[=100% "**exif** 6 / 6"]" - | PHP | PeachPie | - | --- | --- | - | function exif_read_data($filename,$sections_needed,$sub_arrays,$read_thumbnail) | function exif_read_data($filename,$sections,$arrays,$thumbnail) | - | function read_exif_data($filename,$sections_needed,$sub_arrays,$read_thumbnail) | function read_exif_data($filename,$sections,$arrays,$thumbnail) | - | function exif_imagetype($imagefile) | function exif_imagetype($filename) | -??? tiny "[=66% "**gd** 129 / 195"]" - | PHP | PeachPie | - | --- | --- | - | function imagearc($im,$cx,$cy,$w,$h,$s,$e,$col) | function imagearc($image,$cx,$cy,$width,$height,$start,$end,$color) | - | function imageellipse($im,$cx,$cy,$w,$h,$color) | function imageellipse($im,$cx,$cy,$w,$h,$col) | - | function imagechar($im,$font,$x,$y,$c,$col) | function imagechar($image,$font,$x,$y,$c,$color) | - | function imagecharup($im,$font,$x,$y,$c,$col) | function imagecharup($image,$font,$x,$y,$c,$color) | - | function imagepalettecopy($dst,$src) | - function imagepalettecopy($dst,$src) | - | function imagecolorclosest($im,$red,$green,$blue) | - function imagecolorclosest($im,$red,$green,$blue) | - | function imagecolorclosesthwb($im,$red,$green,$blue) | - function imagecolorclosesthwb($im,$red,$green,$blue) | - | function imagecolordeallocate($im,$index) | - function imagecolordeallocate($im,$index) | - | function imagecolorset($im,$color,$red,$green,$blue,$alpha) | function imagecolorset($im,$col,$red,$green,$blue) | - | function imagecolorsforindex($im,$index) | function imagecolorsforindex($im,$col) | - | function imagecopymergegray($dst_im,$src_im,$dst_x,$dst_y,$src_x,$src_y,$src_w,$src_h,$pct) | - function imagecopymergegray($dst_im,$src_im,$dst_x,$dst_y,$src_x,$src_y,$src_w,$src_h,$pct) | - | function imagepalettetotruecolor($im) | - function imagepalettetotruecolor($im) | - | function imagesetthickness($im,$thickness) | - function imagesetthickness($im,$thickness) | - | function imagefilledellipse($im,$cx,$cy,$w,$h,$color) | function imagefilledellipse($im,$cx,$cy,$w,$h,$col) | - | function imagealphablending($im,$blend) | function imagealphablending($im,$blendmode) | - | function imagesavealpha($im,$save) | function imagesavealpha($im,$on) | - | function imagecolorclosestalpha($im,$red,$green,$blue,$alpha) | - function imagecolorclosestalpha($im,$red,$green,$blue,$alpha) | - | function imagegrabwindow($handle,$client_area) | - function imagegrabwindow($handle,$client_area) | - | function imagegrabscreen() | - function imagegrabscreen() | - | function imagerotate($im,$angle,$bgdcolor,$ignoretransparent) | function imagerotate($im,$angle,$bgcolor,$ignore_transparent) | - | function imageflip($im,$mode) | function imageflip($image,$mode) | - | function imageantialias($im,$on) | function imageantialias($image,$enabled) | - | function imagecrop($im,$rect) | function imagecrop($image,$rect) | - | function imagecropauto($im,$mode,$threshold,$color) | - function imagecropauto($im,$mode,$threshold,$color) | - | function imagescale($im,$new_width,$new_height,$mode) | function imagescale($image,$new_width,$new_height,$mode) | - | function imageaffine($im,$affine,$clip) | function imageaffine($image,$affine,$clip) | - | function imagesetinterpolation($im,$method) | - function imagesetinterpolation($im,$method) | - | function imagesettile($im,$tile) | function imagesettile($image,$tile) | - | function imagesetbrush($im,$brush) | - function imagesetbrush($im,$brush) | - | function imagesetstyle($im,$styles) | - function imagesetstyle($im,$styles) | - | function imagecreatefromwebp($filename) | - function imagecreatefromwebp($filename) | - | function imagecreatefrombmp($filename) | - function imagecreatefrombmp($filename) | - | function imagecreatefromtga($filename) | - function imagecreatefromtga($filename) | - | function imagewebp($im,$to,$quality) | - function imagewebp($im,$to,$quality) | - | function imagewbmp($im,$to,$foreground) | - function imagewbmp($im,$to,$foreground) | - | function imagegd($im,$to) | function imagegd($im) | - | function imagebmp($im,$to,$compressed) | - function imagebmp($im,$to,$compressed) | - | function imagegammacorrect($im,$inputgamma,$outputgamma) | - function imagegammacorrect($im,$inputgamma,$outputgamma) | - | function imagefilledpolygon($im,$points,$num_pos,$col) | function imagefilledpolygon($im,$point,$num_points,$col) | - | function imagefontwidth($font) | function imagefontwidth($fontInd) | - | function imagefontheight($font) | function imagefontheight($fontInd) | - | function imageinterlace($im,$interlace) | function imageinterlace($image,$interlace) | - | function imageline($im,$x1,$y1,$x2,$y2,$col) | function imageline($im,$x1,$y1,$x2,$y2,$color) | - | function imageloadfont($filename) | - function imageloadfont($filename) | - | function imagepolygon($im,$points,$num_pos,$col) | function imagepolygon($im,$point,$num_points,$col) | - | function imageopenpolygon($im,$points,$num_pos,$col) | function imageopenpolygon($image,$points,$num_points,$color) | - | function imagesetpixel($im,$x,$y,$col) | function imagesetpixel($im,$x,$y,$color) | - | function imagestring($im,$font,$x,$y,$str,$col) | function imagestring($im,$fontInd,$x,$y,$text,$col) | - | function imagestringup($im,$font,$x,$y,$str,$col) | function imagestringup($im,$fontInd,$x,$y,$text,$col) | - | function imagesetclip($im,$x1,$y1,$x2,$y2) | - function imagesetclip($im,$x1,$y1,$x2,$y2) | - | function imagegetclip($im) | - function imagegetclip($im) | - | function imagedashedline($im,$x1,$y1,$x2,$y2,$col) | - function imagedashedline($im,$x1,$y1,$x2,$y2,$col) | - | function imagettftext($im,$size,$angle,$x,$y,$col,$font_file,$text) | function imagettftext($im,$size,$angle,$x,$y,$color,$font_file,$text) | - | function imagefttext($im,$size,$angle,$x,$y,$col,$font_file,$text,$extrainfo) | - function imagefttext($im,$size,$angle,$x,$y,$col,$font_file,$text,$extrainfo) | - | function jpeg2wbmp($f_org,$f_dest,$d_height,$d_width,$d_threshold) | - function jpeg2wbmp($f_org,$f_dest,$d_height,$d_width,$d_threshold) | - | function png2wbmp($f_org,$f_dest,$d_height,$d_width,$d_threshold) | - function png2wbmp($f_org,$f_dest,$d_height,$d_width,$d_threshold) | - | function image2wbmp($im,$filename,$foreground) | function image2wbmp($im,$to,$threshold) | - | function imagelayereffect($im,$effect) | - function imagelayereffect($im,$effect) | - | function imagexbm($im,$filename,$foreground) | - function imagexbm($im,$filename,$foreground) | - | function imagefilter($im,$filtertype,$arg1,$arg2,$arg3,$arg4) | function imagefilter($image,$filtertype,$arg1,$arg2,$arg3,$arg4) | - | function imageconvolution($im,$matrix3x3,$div,$offset) | function imageconvolution($src_im,$matrix3x3,$div,$offset) | - | function imageresolution($im,$res_x,$res_y) | function imageresolution($image,$res_x,$res_y) | - | const IMG_EFFECT_REPLACE | - const IMG_EFFECT_REPLACE | - | const IMG_EFFECT_ALPHABLEND | - const IMG_EFFECT_ALPHABLEND | - | const IMG_EFFECT_NORMAL | - const IMG_EFFECT_NORMAL | - | const IMG_EFFECT_OVERLAY | - const IMG_EFFECT_OVERLAY | - | const IMG_EFFECT_MULTIPLY | - const IMG_EFFECT_MULTIPLY | - | const IMG_CROP_DEFAULT | - const IMG_CROP_DEFAULT | - | const IMG_CROP_TRANSPARENT | - const IMG_CROP_TRANSPARENT | - | const IMG_CROP_BLACK | - const IMG_CROP_BLACK | - | const IMG_CROP_WHITE | - const IMG_CROP_WHITE | - | const IMG_CROP_SIDES | - const IMG_CROP_SIDES | - | const IMG_CROP_THRESHOLD | - const IMG_CROP_THRESHOLD | - | const IMG_BELL | - const IMG_BELL | - | const IMG_BESSEL | - const IMG_BESSEL | - | const IMG_BLACKMAN | - const IMG_BLACKMAN | - | const IMG_BOX | - const IMG_BOX | - | const IMG_BSPLINE | - const IMG_BSPLINE | - | const IMG_CATMULLROM | - const IMG_CATMULLROM | - | const IMG_GAUSSIAN | - const IMG_GAUSSIAN | - | const IMG_GENERALIZED_CUBIC | - const IMG_GENERALIZED_CUBIC | - | const IMG_HERMITE | - const IMG_HERMITE | - | const IMG_HAMMING | - const IMG_HAMMING | - | const IMG_HANNING | - const IMG_HANNING | - | const IMG_MITCHELL | - const IMG_MITCHELL | - | const IMG_POWER | - const IMG_POWER | - | const IMG_QUADRATIC | - const IMG_QUADRATIC | - | const IMG_SINC | - const IMG_SINC | - | const IMG_WEIGHTED4 | - const IMG_WEIGHTED4 | - | const IMG_TRIANGLE | - const IMG_TRIANGLE | - | const IMG_FILTER_SCATTER | - const IMG_FILTER_SCATTER | - | const PNG_NO_FILTER | - const PNG_NO_FILTER | - | const PNG_FILTER_NONE | - const PNG_FILTER_NONE | - | const PNG_FILTER_SUB | - const PNG_FILTER_SUB | - | const PNG_FILTER_UP | - const PNG_FILTER_UP | - | const PNG_FILTER_AVG | - const PNG_FILTER_AVG | - | const PNG_FILTER_PAETH | - const PNG_FILTER_PAETH | - | const PNG_ALL_FILTERS | - const PNG_ALL_FILTERS | + | | + const MB_OVERLOAD_MAIL | + | | + const MB_OVERLOAD_STRING | + | | + const MB_OVERLOAD_REGEX | ??? tiny "[=100% "**gettext** 10 / 10"]" +??? tiny "[=84% "**curl** 509 / 605"]" | PHP | PeachPie | | --- | --- | - | function textdomain($domain) | function textdomain($text_domain) | - | function gettext($msgid) | function gettext($message) | - | function _($msgid) | function _($message) | - | function dgettext($domain_name,$msgid) | function dgettext($domain,$message) | - | function dcgettext($domain_name,$msgid,$category) | function dcgettext($domain,$message,$category) | - | function bindtextdomain($domain_name,$dir) | function bindtextdomain($domain,$directory) | - | function ngettext($msgid1,$msgid2,$count) | function ngettext($msgid1,$msgid2,$n) | - | function dngettext($domain,$msgid1,$msgid2,$count) | function dngettext($domain,$msgid1,$msgid2,$n) | - | function dcngettext($domain,$msgid1,$msgid2,$count,$category) | function dcngettext($domain,$msgid1,$msgid2,$n,$category) | -??? tiny "[=85% "**curl** 509 / 601"]" - | PHP | PeachPie | - | --- | --- | - | function curl_copy_handle($ch) | - function curl_copy_handle($ch) | - | function curl_version($version) | function curl_version($age) | - | function curl_getinfo($ch,$option) | function curl_getinfo($ch,$opt) | - | function curl_strerror($errornum) | - function curl_strerror($errornum) | - | function curl_share_strerror($errornum) | - function curl_share_strerror($errornum) | - | function curl_pause($ch,$bitmask) | - function curl_pause($ch,$bitmask) | - | function curl_multi_setopt($sh,$option,$value) | function curl_multi_setopt($mh,$option,$value) | + | function curl_copy_handle($handle) | - function curl_copy_handle($handle) | + | function curl_pause($handle,$flags) | - function curl_pause($handle,$flags) | + | function curl_share_close($share_handle) | - function curl_share_close($share_handle) | + | function curl_share_errno($share_handle) | - function curl_share_errno($share_handle) | | function curl_share_init() | - function curl_share_init() | - | function curl_share_close($sh) | - function curl_share_close($sh) | - | function curl_share_setopt($sh,$option,$value) | - function curl_share_setopt($sh,$option,$value) | - | function curl_share_errno($sh) | - function curl_share_errno($sh) | - | function CURLFile::setMimeType($name) | function CURLFile::setMimeType($mime) | - | function CURLFile::setPostFilename($name) | function CURLFile::setPostFilename($postname) | + | function curl_share_setopt($share_handle,$option,$value) | - function curl_share_setopt($share_handle,$option,$value) | + | function curl_share_strerror($error_code) | - function curl_share_strerror($error_code) | + | function curl_strerror($error_code) | - function curl_strerror($error_code) | + | class CurlHandle | - class CurlHandle | + | class CurlMultiHandle | - class CurlMultiHandle | + | class CurlShareHandle | - class CurlShareHandle | | const CURL_VERSION_ASYNCHDNS | - const CURL_VERSION_ASYNCHDNS | | const CURL_VERSION_CONV | - const CURL_VERSION_CONV | | const CURL_VERSION_DEBUG | - const CURL_VERSION_DEBUG | @@ -1771,113 +1117,34 @@ | const CURLOPT_DISALLOW_USERNAME_IN_URL | - const CURLOPT_DISALLOW_USERNAME_IN_URL | | const CURLOPT_PROXY_TLS13_CIPHERS | - const CURLOPT_PROXY_TLS13_CIPHERS | | const CURLOPT_TLS13_CIPHERS | - const CURLOPT_TLS13_CIPHERS | + | const CURLOPT_HTTP09_ALLOWED | - const CURLOPT_HTTP09_ALLOWED | | const CURL_VERSION_ALTSVC | - const CURL_VERSION_ALTSVC | -??? tiny "[=100% "**fileinfo** 20 / 20"]" +??? tiny "[=100% "**exif** 5 / 5"]" | PHP | PeachPie | | --- | --- | - | function finfo_open($options,$arg) | function finfo_open($options,$magic_file) | - | function finfo_file($finfo,$filename,$options,$context) | function finfo_file($finfo,$file_name,$options,$context) | - | function mime_content_type($string) | function mime_content_type($filename) | - | function finfo::file($filename,$options,$context) | function finfo::file($file_name,$options,$context) | -??? tiny "[=100% "**ftp** 47 / 47"]" - | PHP | PeachPie | - | --- | --- | - | function ftp_login($ftp,$username,$password) | function ftp_login($ftp_stream,$username,$password) | - | function ftp_pwd($ftp) | function ftp_pwd($ftp_stream) | - | function ftp_cdup($ftp) | function ftp_cdup($ftp_stream) | - | function ftp_chdir($ftp,$directory) | function ftp_chdir($ftp_stream,$directory) | - | function ftp_exec($ftp,$command) | function ftp_exec($ftp_stream,$command) | - | function ftp_raw($ftp,$command) | function ftp_raw($ftp_stream,$command) | - | function ftp_mkdir($ftp,$directory) | function ftp_mkdir($ftp_stream,$directory) | - | function ftp_rmdir($ftp,$directory) | function ftp_rmdir($ftp_stream,$path) | - | function ftp_chmod($ftp,$mode,$filename) | function ftp_chmod($ftp_stream,$mode,$filename) | - | function ftp_alloc($ftp,$size,$response) | function ftp_alloc($ftp_stream,$filesize,$result) | - | function ftp_nlist($ftp,$directory) | function ftp_nlist($ftp_stream,$directory) | - | function ftp_rawlist($ftp,$directory,$recursive) | function ftp_rawlist($ftp_stream,$directory,$recursive) | - | function ftp_mlsd($ftp,$directory) | function ftp_mlsd($ftp_stream,$directory) | - | function ftp_systype($ftp) | function ftp_systype($ftp_stream) | - | function ftp_pasv($ftp,$pasv) | function ftp_pasv($ftp_stream,$pasv) | - | function ftp_get($ftp,$local_file,$remote_file,$mode,$resume_pos) | function ftp_get($ftp_stream,$local_file,$remote_file,$mode,$resumepos) | - | function ftp_fget($ftp,$fp,$remote_file,$mode,$resumepos) | function ftp_fget($ftp_stream,$handle,$remotefile,$mode,$resumepos) | - | function ftp_put($ftp,$remote_file,$local_file,$mode,$startpos) | function ftp_put($ftp_stream,$remote_file,$local_file,$mode,$startpos) | - | function ftp_append($ftp,$remote_file,$local_file,$mode) | function ftp_append($ftp_stream,$remote_file,$local_file,$mode) | - | function ftp_fput($ftp,$remote_file,$fp,$mode,$startpos) | function ftp_fput($ftp_stream,$remote_file,$handle,$mode,$startpos) | - | function ftp_size($ftp,$filename) | function ftp_size($ftp_stream,$remote_file) | - | function ftp_mdtm($ftp,$filename) | function ftp_mdtm($ftp_stream,$remote_file) | - | function ftp_rename($ftp,$src,$dest) | function ftp_rename($ftp_stream,$oldname,$newname) | - | function ftp_delete($ftp,$file) | function ftp_delete($ftp_stream,$path) | - | function ftp_site($ftp,$cmd) | function ftp_site($ftp_stream,$command) | - | function ftp_close($ftp) | function ftp_close($ftp_stream) | - | function ftp_set_option($ftp,$option,$value) | function ftp_set_option($ftp_stream,$option,$value) | - | function ftp_get_option($ftp,$option) | function ftp_get_option($ftp_stream,$option) | - | function ftp_nb_fget($ftp,$fp,$remote_file,$mode,$resumepos) | function ftp_nb_fget($ftp_stream,$handle,$remote_file,$mode,$resumepos) | - | function ftp_nb_get($ftp,$local_file,$remote_file,$mode,$resume_pos) | function ftp_nb_get($ftp_stream,$local_file,$remote_file,$mode,$resumepos) | - | function ftp_nb_continue($ftp) | function ftp_nb_continue($ftp_stream) | - | function ftp_nb_put($ftp,$remote_file,$local_file,$mode,$startpos) | function ftp_nb_put($ftp_stream,$remote_file,$local_file,$mode,$startpos) | - | function ftp_nb_fput($ftp,$remote_file,$fp,$mode,$startpos) | function ftp_nb_fput($ftp_stream,$remote_file,$handle,$mode,$startpos) | - | function ftp_quit($ftp) | function ftp_quit($ftp_stream) | -??? tiny "[=0% "**xmlrpc** 0 / 14"]" - | PHP | PeachPie | - | --- | --- | - | function xmlrpc_encode($value) | - function xmlrpc_encode($value) | - | function xmlrpc_decode($value,$encoding) | - function xmlrpc_decode($value,$encoding) | - | function xmlrpc_decode_request($xml,$method,$encoding) | - function xmlrpc_decode_request($xml,$method,$encoding) | - | function xmlrpc_encode_request($method,$params,$output_options) | - function xmlrpc_encode_request($method,$params,$output_options) | - | function xmlrpc_get_type($value) | - function xmlrpc_get_type($value) | - | function xmlrpc_set_type($value,$type) | - function xmlrpc_set_type($value,$type) | - | function xmlrpc_is_fault($arg) | - function xmlrpc_is_fault($arg) | - | function xmlrpc_server_create() | - function xmlrpc_server_create() | - | function xmlrpc_server_destroy($server) | - function xmlrpc_server_destroy($server) | - | function xmlrpc_server_register_method($server,$method_name,$function) | - function xmlrpc_server_register_method($server,$method_name,$function) | - | function xmlrpc_server_call_method($server,$xml,$user_data,$output_options) | - function xmlrpc_server_call_method($server,$xml,$user_data,$output_options) | - | function xmlrpc_parse_method_descriptions($xml) | - function xmlrpc_parse_method_descriptions($xml) | - | function xmlrpc_server_add_introspection_data($server,$desc) | - function xmlrpc_server_add_introspection_data($server,$desc) | - | function xmlrpc_server_register_introspection_callback($server,$function) | - function xmlrpc_server_register_introspection_callback($server,$function) | -??? tiny "[=48% "**xsl** 13 / 27"]" - | PHP | PeachPie | - | --- | --- | - | function XSLTProcessor::importStylesheet($doc) | function XSLTProcessor::importStylesheet($stylesheet) | - | function XSLTProcessor::transformToDoc($doc) | function XSLTProcessor::transformToDoc($node) | - | function XSLTProcessor::setParameter($namespace,$name,$value) | function XSLTProcessor::setParameter($ns,$name,$value) | - | function XSLTProcessor::getParameter($namespace,$name) | function XSLTProcessor::getParameter($ns,$name) | - | function XSLTProcessor::removeParameter($namespace,$name) | function XSLTProcessor::removeParameter($ns,$name) | - | function XSLTProcessor::setProfiling($filename) | - function XSLTProcessor::setProfiling($filename) | - | function XSLTProcessor::setSecurityPrefs($securityPrefs) | - function XSLTProcessor::setSecurityPrefs($securityPrefs) | - | function XSLTProcessor::getSecurityPrefs() | - function XSLTProcessor::getSecurityPrefs() | - | const XSL_SECPREF_NONE | - const XSL_SECPREF_NONE | - | const XSL_SECPREF_READ_FILE | - const XSL_SECPREF_READ_FILE | - | const XSL_SECPREF_WRITE_FILE | - const XSL_SECPREF_WRITE_FILE | - | const XSL_SECPREF_CREATE_DIRECTORY | - const XSL_SECPREF_CREATE_DIRECTORY | - | const XSL_SECPREF_READ_NETWORK | - const XSL_SECPREF_READ_NETWORK | - | const XSL_SECPREF_WRITE_NETWORK | - const XSL_SECPREF_WRITE_NETWORK | - | const XSL_SECPREF_DEFAULT | - const XSL_SECPREF_DEFAULT | - | const LIBXSLT_VERSION | - const LIBXSLT_VERSION | - | const LIBXSLT_DOTTED_VERSION | - const LIBXSLT_DOTTED_VERSION | - | const LIBEXSLT_VERSION | - const LIBEXSLT_VERSION | - | const LIBEXSLT_DOTTED_VERSION | - const LIBEXSLT_DOTTED_VERSION | + | | + function read_exif_data($filename,$sections_needed,$sub_arrays,$read_thumbnail) | ??? tiny "[=21% "**Phar** 59 / 285"]" | PHP | PeachPie | | --- | --- | - | function Phar::__construct($filename,$flags,$alias) | function Phar::__construct($fname,$flags,$alias) | | function Phar::__destruct() | - function Phar::__destruct() | - | function Phar::addEmptyDir($dirname) | - function Phar::addEmptyDir($dirname) | - | function Phar::addFile($filename,$localname) | - function Phar::addFile($filename,$localname) | - | function Phar::addFromString($localname,$contents) | - function Phar::addFromString($localname,$contents) | - | function Phar::buildFromDirectory($base_dir,$regex) | - function Phar::buildFromDirectory($base_dir,$regex) | - | function Phar::buildFromIterator($iterator,$base_directory) | - function Phar::buildFromIterator($iterator,$base_directory) | - | function Phar::compressFiles($compression_type) | - function Phar::compressFiles($compression_type) | + | function Phar::addEmptyDir($directory) | - function Phar::addEmptyDir($directory) | + | function Phar::addFile($filename,$localName) | - function Phar::addFile($filename,$localName) | + | function Phar::addFromString($localName,$contents) | - function Phar::addFromString($localName,$contents) | + | function Phar::buildFromDirectory($directory,$pattern) | - function Phar::buildFromDirectory($directory,$pattern) | + | function Phar::buildFromIterator($iterator,$baseDirectory) | - function Phar::buildFromIterator($iterator,$baseDirectory) | + | function Phar::compressFiles($compression) | - function Phar::compressFiles($compression) | | function Phar::decompressFiles() | - function Phar::decompressFiles() | - | function Phar::compress($compression_type,$file_ext) | - function Phar::compress($compression_type,$file_ext) | - | function Phar::decompress($file_ext) | - function Phar::decompress($file_ext) | - | function Phar::convertToExecutable($format,$compression_type,$file_ext) | - function Phar::convertToExecutable($format,$compression_type,$file_ext) | - | function Phar::convertToData($format,$compression_type,$file_ext) | - function Phar::convertToData($format,$compression_type,$file_ext) | - | function Phar::copy($newfile,$oldfile) | - function Phar::copy($newfile,$oldfile) | - | function Phar::delete($entry) | - function Phar::delete($entry) | + | function Phar::compress($compression,$extension) | - function Phar::compress($compression,$extension) | + | function Phar::decompress($extension) | - function Phar::decompress($extension) | + | function Phar::convertToExecutable($format,$compression,$extension) | - function Phar::convertToExecutable($format,$compression,$extension) | + | function Phar::convertToData($format,$compression,$extension) | - function Phar::convertToData($format,$compression,$extension) | + | function Phar::copy($to,$from) | - function Phar::copy($to,$from) | + | function Phar::delete($localName) | - function Phar::delete($localName) | | function Phar::delMetadata() | - function Phar::delMetadata() | - | function Phar::extractTo($pathto,$files,$overwrite) | - function Phar::extractTo($pathto,$files,$overwrite) | + | function Phar::extractTo($directory,$files,$overwrite) | - function Phar::extractTo($directory,$files,$overwrite) | | function Phar::getAlias() | - function Phar::getAlias() | | function Phar::getPath() | - function Phar::getPath() | - | function Phar::getMetadata() | - function Phar::getMetadata() | + | function Phar::getMetadata($unserializeOptions) | - function Phar::getMetadata($unserializeOptions) | | function Phar::getModified() | - function Phar::getModified() | | function Phar::getSignature() | - function Phar::getSignature() | | function Phar::getStub() | - function Phar::getStub() | @@ -1885,33 +1152,26 @@ | function Phar::hasMetadata() | - function Phar::hasMetadata() | | function Phar::isBuffering() | - function Phar::isBuffering() | | function Phar::isCompressed() | - function Phar::isCompressed() | - | function Phar::isFileFormat($fileformat) | - function Phar::isFileFormat($fileformat) | + | function Phar::isFileFormat($format) | - function Phar::isFileFormat($format) | | function Phar::isWritable() | - function Phar::isWritable() | - | function Phar::offsetExists($entry) | function Phar::offsetExists($offset) | - | function Phar::offsetGet($entry) | function Phar::offsetGet($offset) | - | function Phar::offsetSet($entry,$value) | function Phar::offsetSet($offset,$value) | - | function Phar::offsetUnset($entry) | function Phar::offsetUnset($offset) | | function Phar::setAlias($alias) | - function Phar::setAlias($alias) | - | function Phar::setDefaultStub($index,$webindex) | - function Phar::setDefaultStub($index,$webindex) | + | function Phar::setDefaultStub($index,$webIndex) | - function Phar::setDefaultStub($index,$webIndex) | | function Phar::setMetadata($metadata) | - function Phar::setMetadata($metadata) | - | function Phar::setSignatureAlgorithm($algorithm,$privatekey) | - function Phar::setSignatureAlgorithm($algorithm,$privatekey) | - | function Phar::setStub($newstub,$maxlen) | - function Phar::setStub($newstub,$maxlen) | + | function Phar::setSignatureAlgorithm($algo,$privateKey) | - function Phar::setSignatureAlgorithm($algo,$privateKey) | + | function Phar::setStub($stub,$length) | - function Phar::setStub($stub,$length) | | function Phar::startBuffering() | - function Phar::startBuffering() | | function Phar::stopBuffering() | - function Phar::stopBuffering() | - | function Phar::canCompress($method) | - function Phar::canCompress($method) | - | function Phar::createDefaultStub($index,$webindex) | - function Phar::createDefaultStub($index,$webindex) | + | function Phar::canCompress($compression) | - function Phar::canCompress($compression) | + | function Phar::createDefaultStub($index,$webIndex) | - function Phar::createDefaultStub($index,$webIndex) | | function Phar::getSupportedCompression() | - function Phar::getSupportedCompression() | | function Phar::getSupportedSignatures() | - function Phar::getSupportedSignatures() | | function Phar::interceptFileFuncs() | - function Phar::interceptFileFuncs() | | function Phar::isValidPharFilename($filename,$executable) | - function Phar::isValidPharFilename($filename,$executable) | - | function Phar::mapPhar($alias,$offset) | function Phar::mapPhar($alias,$dataoffset) | - | function Phar::mount($inphar,$externalfile) | function Phar::mount($pharpath,$externalpath) | - | function Phar::hasChildren($allow_links) | - function Phar::hasChildren($allow_links) | + | function Phar::hasChildren($allowLinks) | - function Phar::hasChildren($allowLinks) | | function Phar::getChildren() | - function Phar::getChildren() | | function Phar::getSubPath() | - function Phar::getSubPath() | | function Phar::getSubPathname() | - function Phar::getSubPathname() | | function Phar::rewind() | - function Phar::rewind() | - | function Phar::next() | - function Phar::next() | | function Phar::key() | - function Phar::key() | | function Phar::current() | - function Phar::current() | | function Phar::getFlags() | - function Phar::getFlags() | @@ -1921,7 +1181,8 @@ | function Phar::getBasename($suffix) | - function Phar::getBasename($suffix) | | function Phar::isDot() | - function Phar::isDot() | | function Phar::valid() | - function Phar::valid() | - | function Phar::seek($position) | - function Phar::seek($position) | + | function Phar::next() | - function Phar::next() | + | function Phar::seek($offset) | - function Phar::seek($offset) | | function Phar::__toString() | - function Phar::__toString() | | function Phar::getPathname() | - function Phar::getPathname() | | function Phar::getPerms() | - function Phar::getPerms() | @@ -1940,11 +1201,11 @@ | function Phar::isLink() | - function Phar::isLink() | | function Phar::getLinkTarget() | - function Phar::getLinkTarget() | | function Phar::getRealPath() | - function Phar::getRealPath() | - | function Phar::getFileInfo($class_name) | - function Phar::getFileInfo($class_name) | - | function Phar::getPathInfo($class_name) | - function Phar::getPathInfo($class_name) | - | function Phar::openFile($open_mode,$use_include_path,$context) | - function Phar::openFile($open_mode,$use_include_path,$context) | - | function Phar::setFileClass($class_name) | - function Phar::setFileClass($class_name) | - | function Phar::setInfoClass($class_name) | - function Phar::setInfoClass($class_name) | + | function Phar::getFileInfo($class) | - function Phar::getFileInfo($class) | + | function Phar::getPathInfo($class) | - function Phar::getPathInfo($class) | + | function Phar::openFile($mode,$useIncludePath,$context) | - function Phar::openFile($mode,$useIncludePath,$context) | + | function Phar::setFileClass($class) | - function Phar::setFileClass($class) | + | function Phar::setInfoClass($class) | - function Phar::setInfoClass($class) | | const Phar::CURRENT_MODE_MASK | - const Phar::CURRENT_MODE_MASK | | const Phar::CURRENT_AS_PATHNAME | - const Phar::CURRENT_AS_PATHNAME | | const Phar::CURRENT_AS_FILEINFO | - const Phar::CURRENT_AS_FILEINFO | @@ -1971,27 +1232,26 @@ | const Phar::SHA1 | - const Phar::SHA1 | | const Phar::SHA256 | - const Phar::SHA256 | | const Phar::SHA512 | - const Phar::SHA512 | - | function PharData::__construct($filename,$flags,$alias,$fileformat) | function PharData::__construct($fname,$flags,$alias,$format) | | function PharData::__destruct() | - function PharData::__destruct() | - | function PharData::addEmptyDir($dirname) | - function PharData::addEmptyDir($dirname) | - | function PharData::addFile($filename,$localname) | - function PharData::addFile($filename,$localname) | - | function PharData::addFromString($localname,$contents) | - function PharData::addFromString($localname,$contents) | - | function PharData::buildFromDirectory($base_dir,$regex) | - function PharData::buildFromDirectory($base_dir,$regex) | - | function PharData::buildFromIterator($iterator,$base_directory) | - function PharData::buildFromIterator($iterator,$base_directory) | - | function PharData::compressFiles($compression_type) | - function PharData::compressFiles($compression_type) | + | function PharData::addEmptyDir($directory) | - function PharData::addEmptyDir($directory) | + | function PharData::addFile($filename,$localName) | - function PharData::addFile($filename,$localName) | + | function PharData::addFromString($localName,$contents) | - function PharData::addFromString($localName,$contents) | + | function PharData::buildFromDirectory($directory,$pattern) | - function PharData::buildFromDirectory($directory,$pattern) | + | function PharData::buildFromIterator($iterator,$baseDirectory) | - function PharData::buildFromIterator($iterator,$baseDirectory) | + | function PharData::compressFiles($compression) | - function PharData::compressFiles($compression) | | function PharData::decompressFiles() | - function PharData::decompressFiles() | - | function PharData::compress($compression_type,$file_ext) | - function PharData::compress($compression_type,$file_ext) | - | function PharData::decompress($file_ext) | - function PharData::decompress($file_ext) | - | function PharData::convertToExecutable($format,$compression_type,$file_ext) | - function PharData::convertToExecutable($format,$compression_type,$file_ext) | - | function PharData::convertToData($format,$compression_type,$file_ext) | - function PharData::convertToData($format,$compression_type,$file_ext) | - | function PharData::copy($newfile,$oldfile) | - function PharData::copy($newfile,$oldfile) | - | function PharData::count() | - function PharData::count() | - | function PharData::delete($entry) | - function PharData::delete($entry) | + | function PharData::compress($compression,$extension) | - function PharData::compress($compression,$extension) | + | function PharData::decompress($extension) | - function PharData::decompress($extension) | + | function PharData::convertToExecutable($format,$compression,$extension) | - function PharData::convertToExecutable($format,$compression,$extension) | + | function PharData::convertToData($format,$compression,$extension) | - function PharData::convertToData($format,$compression,$extension) | + | function PharData::copy($to,$from) | - function PharData::copy($to,$from) | + | function PharData::count($mode) | - function PharData::count($mode) | + | function PharData::delete($localName) | - function PharData::delete($localName) | | function PharData::delMetadata() | - function PharData::delMetadata() | - | function PharData::extractTo($pathto,$files,$overwrite) | - function PharData::extractTo($pathto,$files,$overwrite) | + | function PharData::extractTo($directory,$files,$overwrite) | - function PharData::extractTo($directory,$files,$overwrite) | | function PharData::getAlias() | - function PharData::getAlias() | | function PharData::getPath() | - function PharData::getPath() | - | function PharData::getMetadata() | - function PharData::getMetadata() | + | function PharData::getMetadata($unserialize_options) | - function PharData::getMetadata($unserialize_options) | | function PharData::getModified() | - function PharData::getModified() | | function PharData::getSignature() | - function PharData::getSignature() | | function PharData::getStub() | - function PharData::getStub() | @@ -1999,40 +1259,39 @@ | function PharData::hasMetadata() | - function PharData::hasMetadata() | | function PharData::isBuffering() | - function PharData::isBuffering() | | function PharData::isCompressed() | - function PharData::isCompressed() | - | function PharData::isFileFormat($fileformat) | - function PharData::isFileFormat($fileformat) | + | function PharData::isFileFormat($format) | - function PharData::isFileFormat($format) | | function PharData::isWritable() | - function PharData::isWritable() | - | function PharData::offsetExists($entry) | - function PharData::offsetExists($entry) | - | function PharData::offsetGet($entry) | - function PharData::offsetGet($entry) | - | function PharData::offsetSet($entry,$value) | - function PharData::offsetSet($entry,$value) | - | function PharData::offsetUnset($entry) | - function PharData::offsetUnset($entry) | + | function PharData::offsetExists($localName) | - function PharData::offsetExists($localName) | + | function PharData::offsetGet($localName) | - function PharData::offsetGet($localName) | + | function PharData::offsetSet($localName,$value) | - function PharData::offsetSet($localName,$value) | + | function PharData::offsetUnset($localName) | - function PharData::offsetUnset($localName) | | function PharData::setAlias($alias) | - function PharData::setAlias($alias) | - | function PharData::setDefaultStub($index,$webindex) | - function PharData::setDefaultStub($index,$webindex) | + | function PharData::setDefaultStub($index,$webIndex) | - function PharData::setDefaultStub($index,$webIndex) | | function PharData::setMetadata($metadata) | - function PharData::setMetadata($metadata) | - | function PharData::setSignatureAlgorithm($algorithm,$privatekey) | - function PharData::setSignatureAlgorithm($algorithm,$privatekey) | + | function PharData::setSignatureAlgorithm($algo,$privateKey) | - function PharData::setSignatureAlgorithm($algo,$privateKey) | | function PharData::setStub($newstub,$maxlen) | - function PharData::setStub($newstub,$maxlen) | | function PharData::startBuffering() | - function PharData::startBuffering() | | function PharData::stopBuffering() | - function PharData::stopBuffering() | | function PharData::apiVersion() | - function PharData::apiVersion() | - | function PharData::canCompress($method) | - function PharData::canCompress($method) | + | function PharData::canCompress($compression) | - function PharData::canCompress($compression) | | function PharData::canWrite() | - function PharData::canWrite() | - | function PharData::createDefaultStub($index,$webindex) | - function PharData::createDefaultStub($index,$webindex) | + | function PharData::createDefaultStub($index,$webIndex) | - function PharData::createDefaultStub($index,$webIndex) | | function PharData::getSupportedCompression() | - function PharData::getSupportedCompression() | | function PharData::getSupportedSignatures() | - function PharData::getSupportedSignatures() | | function PharData::interceptFileFuncs() | - function PharData::interceptFileFuncs() | | function PharData::isValidPharFilename($filename,$executable) | - function PharData::isValidPharFilename($filename,$executable) | | function PharData::loadPhar($filename,$alias) | - function PharData::loadPhar($filename,$alias) | | function PharData::mapPhar($alias,$offset) | - function PharData::mapPhar($alias,$offset) | - | function PharData::running($retphar) | - function PharData::running($retphar) | - | function PharData::mount($inphar,$externalfile) | - function PharData::mount($inphar,$externalfile) | - | function PharData::mungServer($munglist) | - function PharData::mungServer($munglist) | - | function PharData::unlinkArchive($archive) | - function PharData::unlinkArchive($archive) | - | function PharData::webPhar($alias,$index,$f404,$mimetypes,$rewrites) | - function PharData::webPhar($alias,$index,$f404,$mimetypes,$rewrites) | - | function PharData::hasChildren($allow_links) | - function PharData::hasChildren($allow_links) | + | function PharData::running($returnPhar) | - function PharData::running($returnPhar) | + | function PharData::mount($pharPath,$externalPath) | - function PharData::mount($pharPath,$externalPath) | + | function PharData::mungServer($variables) | - function PharData::mungServer($variables) | + | function PharData::unlinkArchive($filename) | - function PharData::unlinkArchive($filename) | + | function PharData::webPhar($alias,$index,$fileNotFoundScript,$mimeTypes,$rewrite) | - function PharData::webPhar($alias,$index,$fileNotFoundScript,$mimeTypes,$rewrite) | + | function PharData::hasChildren($allowLinks) | - function PharData::hasChildren($allowLinks) | | function PharData::getChildren() | - function PharData::getChildren() | | function PharData::getSubPath() | - function PharData::getSubPath() | | function PharData::getSubPathname() | - function PharData::getSubPathname() | | function PharData::rewind() | - function PharData::rewind() | - | function PharData::next() | - function PharData::next() | | function PharData::key() | - function PharData::key() | | function PharData::current() | - function PharData::current() | | function PharData::getFlags() | - function PharData::getFlags() | @@ -2042,7 +1301,8 @@ | function PharData::getBasename($suffix) | - function PharData::getBasename($suffix) | | function PharData::isDot() | - function PharData::isDot() | | function PharData::valid() | - function PharData::valid() | - | function PharData::seek($position) | - function PharData::seek($position) | + | function PharData::next() | - function PharData::next() | + | function PharData::seek($offset) | - function PharData::seek($offset) | | function PharData::__toString() | - function PharData::__toString() | | function PharData::getPathname() | - function PharData::getPathname() | | function PharData::getPerms() | - function PharData::getPerms() | @@ -2061,11 +1321,11 @@ | function PharData::isLink() | - function PharData::isLink() | | function PharData::getLinkTarget() | - function PharData::getLinkTarget() | | function PharData::getRealPath() | - function PharData::getRealPath() | - | function PharData::getFileInfo($class_name) | - function PharData::getFileInfo($class_name) | - | function PharData::getPathInfo($class_name) | - function PharData::getPathInfo($class_name) | - | function PharData::openFile($open_mode,$use_include_path,$context) | - function PharData::openFile($open_mode,$use_include_path,$context) | - | function PharData::setFileClass($class_name) | - function PharData::setFileClass($class_name) | - | function PharData::setInfoClass($class_name) | - function PharData::setInfoClass($class_name) | + | function PharData::getFileInfo($class) | - function PharData::getFileInfo($class) | + | function PharData::getPathInfo($class) | - function PharData::getPathInfo($class) | + | function PharData::openFile($mode,$useIncludePath,$context) | - function PharData::openFile($mode,$useIncludePath,$context) | + | function PharData::setFileClass($class) | - function PharData::setFileClass($class) | + | function PharData::setInfoClass($class) | - function PharData::setInfoClass($class) | | const PharData::CURRENT_MODE_MASK | - const PharData::CURRENT_MODE_MASK | | const PharData::CURRENT_AS_PATHNAME | - const PharData::CURRENT_AS_PATHNAME | | const PharData::CURRENT_AS_FILEINFO | - const PharData::CURRENT_AS_FILEINFO | @@ -2078,25 +1338,24 @@ | const PharData::OTHER_MODE_MASK | - const PharData::OTHER_MODE_MASK | | const PharData::SKIP_DOTS | - const PharData::SKIP_DOTS | | const PharData::UNIX_PATHS | - const PharData::UNIX_PATHS | - | function PharFileInfo::__construct($filename) | function PharFileInfo::__construct($file_name) | | function PharFileInfo::__destruct() | - function PharFileInfo::__destruct() | | function PharFileInfo::chmod($perms) | - function PharFileInfo::chmod($perms) | - | function PharFileInfo::compress($compression_type) | - function PharFileInfo::compress($compression_type) | + | function PharFileInfo::compress($compression) | - function PharFileInfo::compress($compression) | | function PharFileInfo::decompress() | - function PharFileInfo::decompress() | | function PharFileInfo::delMetadata() | - function PharFileInfo::delMetadata() | | function PharFileInfo::getCompressedSize() | - function PharFileInfo::getCompressedSize() | | function PharFileInfo::getCRC32() | - function PharFileInfo::getCRC32() | | function PharFileInfo::getContent() | - function PharFileInfo::getContent() | - | function PharFileInfo::getMetadata() | - function PharFileInfo::getMetadata() | + | function PharFileInfo::getMetadata($unserializeOptions) | - function PharFileInfo::getMetadata($unserializeOptions) | | function PharFileInfo::getPharFlags() | - function PharFileInfo::getPharFlags() | | function PharFileInfo::hasMetadata() | - function PharFileInfo::hasMetadata() | - | function PharFileInfo::isCompressed($compression_type) | - function PharFileInfo::isCompressed($compression_type) | + | function PharFileInfo::isCompressed($compression) | - function PharFileInfo::isCompressed($compression) | | function PharFileInfo::isCRCChecked() | - function PharFileInfo::isCRCChecked() | | function PharFileInfo::setMetadata($metadata) | - function PharFileInfo::setMetadata($metadata) | -??? tiny "[=0% "**soap** 0 / 120"]" +??? tiny "[=0% "**soap** 0 / 125"]" | PHP | PeachPie | | --- | --- | - | function use_soap_error_handler($handler) | - function use_soap_error_handler($handler) | + | function use_soap_error_handler($enable) | - function use_soap_error_handler($enable) | | function is_soap_fault($object) | - function is_soap_fault($object) | | class SoapClient | - class SoapClient | | class SoapVar | - class SoapVar | @@ -2185,84 +1444,83 @@ | const SOAP_SSL_METHOD_SSLv2 | - const SOAP_SSL_METHOD_SSLv2 | | const SOAP_SSL_METHOD_SSLv3 | - const SOAP_SSL_METHOD_SSLv3 | | const SOAP_SSL_METHOD_SSLv23 | - const SOAP_SSL_METHOD_SSLv23 | -??? tiny "[=1% "**imap** 2 / 143"]" +??? tiny "[=0% "**imap** 0 / 142"]" | PHP | PeachPie | | --- | --- | - | function imap_open($mailbox,$user,$password,$options,$n_retries,$params) | - function imap_open($mailbox,$user,$password,$options,$n_retries,$params) | - | function imap_reopen($stream_id,$mailbox,$options,$n_retries) | - function imap_reopen($stream_id,$mailbox,$options,$n_retries) | - | function imap_close($stream_id,$options) | - function imap_close($stream_id,$options) | - | function imap_num_msg($stream_id) | - function imap_num_msg($stream_id) | - | function imap_num_recent($stream_id) | - function imap_num_recent($stream_id) | - | function imap_headers($stream_id) | - function imap_headers($stream_id) | - | function imap_headerinfo($stream_id,$msg_no,$from_length,$subject_length,$default_host) | - function imap_headerinfo($stream_id,$msg_no,$from_length,$subject_length,$default_host) | - | function imap_rfc822_parse_headers($headers,$default_host) | - function imap_rfc822_parse_headers($headers,$default_host) | - | function imap_rfc822_write_address($mailbox,$host,$personal) | - function imap_rfc822_write_address($mailbox,$host,$personal) | - | function imap_rfc822_parse_adrlist($address_string,$default_host) | - function imap_rfc822_parse_adrlist($address_string,$default_host) | - | function imap_body($stream_id,$msg_no,$options) | - function imap_body($stream_id,$msg_no,$options) | - | function imap_bodystruct($stream_id,$msg_no,$section) | - function imap_bodystruct($stream_id,$msg_no,$section) | - | function imap_fetchbody($stream_id,$msg_no,$section,$options) | - function imap_fetchbody($stream_id,$msg_no,$section,$options) | - | function imap_fetchmime($stream_id,$msg_no,$section,$options) | - function imap_fetchmime($stream_id,$msg_no,$section,$options) | - | function imap_savebody($stream_id,$file,$msg_no,$section,$options) | - function imap_savebody($stream_id,$file,$msg_no,$section,$options) | - | function imap_fetchheader($stream_id,$msg_no,$options) | - function imap_fetchheader($stream_id,$msg_no,$options) | - | function imap_fetchstructure($stream_id,$msg_no,$options) | - function imap_fetchstructure($stream_id,$msg_no,$options) | - | function imap_gc($stream_id,$flags) | - function imap_gc($stream_id,$flags) | - | function imap_expunge($stream_id) | - function imap_expunge($stream_id) | - | function imap_delete($stream_id,$msg_no,$options) | - function imap_delete($stream_id,$msg_no,$options) | - | function imap_undelete($stream_id,$msg_no,$flags) | - function imap_undelete($stream_id,$msg_no,$flags) | - | function imap_check($stream_id) | - function imap_check($stream_id) | - | function imap_listscan($stream_id,$ref,$pattern,$content) | - function imap_listscan($stream_id,$ref,$pattern,$content) | - | function imap_mail_copy($stream_id,$msglist,$mailbox,$options) | - function imap_mail_copy($stream_id,$msglist,$mailbox,$options) | - | function imap_mail_move($stream_id,$sequence,$mailbox,$options) | - function imap_mail_move($stream_id,$sequence,$mailbox,$options) | - | function imap_mail_compose($envelope,$body) | - function imap_mail_compose($envelope,$body) | - | function imap_createmailbox($stream_id,$mailbox) | - function imap_createmailbox($stream_id,$mailbox) | - | function imap_renamemailbox($stream_id,$old_name,$new_name) | - function imap_renamemailbox($stream_id,$old_name,$new_name) | - | function imap_deletemailbox($stream_id,$mailbox) | - function imap_deletemailbox($stream_id,$mailbox) | - | function imap_subscribe($stream_id,$mailbox) | - function imap_subscribe($stream_id,$mailbox) | - | function imap_unsubscribe($stream_id,$mailbox) | - function imap_unsubscribe($stream_id,$mailbox) | - | function imap_append($stream_id,$folder,$message,$options,$date) | - function imap_append($stream_id,$folder,$message,$options,$date) | - | function imap_ping($stream_id) | - function imap_ping($stream_id) | - | function imap_base64($text) | - function imap_base64($text) | - | function imap_qprint($text) | - function imap_qprint($text) | - | function imap_8bit($text) | - function imap_8bit($text) | - | function imap_binary($text) | - function imap_binary($text) | + | function imap_open($mailbox,$user,$password,$flags,$retries,$options) | - function imap_open($mailbox,$user,$password,$flags,$retries,$options) | + | function imap_reopen($imap,$mailbox,$flags,$retries) | - function imap_reopen($imap,$mailbox,$flags,$retries) | + | function imap_close($imap,$flags) | - function imap_close($imap,$flags) | + | function imap_num_msg($imap) | - function imap_num_msg($imap) | + | function imap_num_recent($imap) | - function imap_num_recent($imap) | + | function imap_headers($imap) | - function imap_headers($imap) | + | function imap_headerinfo($imap,$message_num,$from_length,$subject_length) | - function imap_headerinfo($imap,$message_num,$from_length,$subject_length) | + | function imap_rfc822_parse_headers($headers,$default_hostname) | - function imap_rfc822_parse_headers($headers,$default_hostname) | + | function imap_rfc822_write_address($mailbox,$hostname,$personal) | - function imap_rfc822_write_address($mailbox,$hostname,$personal) | + | function imap_rfc822_parse_adrlist($string,$default_hostname) | - function imap_rfc822_parse_adrlist($string,$default_hostname) | + | function imap_body($imap,$message_num,$flags) | - function imap_body($imap,$message_num,$flags) | + | function imap_fetchtext($imap,$message_num,$flags) | - function imap_fetchtext($imap,$message_num,$flags) | + | function imap_bodystruct($imap,$message_num,$section) | - function imap_bodystruct($imap,$message_num,$section) | + | function imap_fetchbody($imap,$message_num,$section,$flags) | - function imap_fetchbody($imap,$message_num,$section,$flags) | + | function imap_fetchmime($imap,$message_num,$section,$flags) | - function imap_fetchmime($imap,$message_num,$section,$flags) | + | function imap_savebody($imap,$file,$message_num,$section,$flags) | - function imap_savebody($imap,$file,$message_num,$section,$flags) | + | function imap_fetchheader($imap,$message_num,$flags) | - function imap_fetchheader($imap,$message_num,$flags) | + | function imap_fetchstructure($imap,$message_num,$flags) | - function imap_fetchstructure($imap,$message_num,$flags) | + | function imap_gc($imap,$flags) | - function imap_gc($imap,$flags) | + | function imap_expunge($imap) | - function imap_expunge($imap) | + | function imap_delete($imap,$message_num,$flags) | - function imap_delete($imap,$message_num,$flags) | + | function imap_undelete($imap,$message_num,$flags) | - function imap_undelete($imap,$message_num,$flags) | + | function imap_check($imap) | - function imap_check($imap) | + | function imap_listscan($imap,$reference,$pattern,$content) | - function imap_listscan($imap,$reference,$pattern,$content) | + | function imap_scan($imap,$reference,$pattern,$content) | - function imap_scan($imap,$reference,$pattern,$content) | + | function imap_scanmailbox($imap,$reference,$pattern,$content) | - function imap_scanmailbox($imap,$reference,$pattern,$content) | + | function imap_mail_copy($imap,$message_nums,$mailbox,$flags) | - function imap_mail_copy($imap,$message_nums,$mailbox,$flags) | + | function imap_mail_move($imap,$message_nums,$mailbox,$flags) | - function imap_mail_move($imap,$message_nums,$mailbox,$flags) | + | function imap_mail_compose($envelope,$bodies) | - function imap_mail_compose($envelope,$bodies) | + | function imap_createmailbox($imap,$mailbox) | - function imap_createmailbox($imap,$mailbox) | + | function imap_create($imap,$mailbox) | - function imap_create($imap,$mailbox) | + | function imap_renamemailbox($imap,$from,$to) | - function imap_renamemailbox($imap,$from,$to) | + | function imap_rename($imap,$from,$to) | - function imap_rename($imap,$from,$to) | + | function imap_deletemailbox($imap,$mailbox) | - function imap_deletemailbox($imap,$mailbox) | + | function imap_subscribe($imap,$mailbox) | - function imap_subscribe($imap,$mailbox) | + | function imap_unsubscribe($imap,$mailbox) | - function imap_unsubscribe($imap,$mailbox) | + | function imap_append($imap,$folder,$message,$options,$internal_date) | - function imap_append($imap,$folder,$message,$options,$internal_date) | + | function imap_ping($imap) | - function imap_ping($imap) | + | function imap_base64($string) | - function imap_base64($string) | + | function imap_qprint($string) | - function imap_qprint($string) | + | function imap_8bit($string) | - function imap_8bit($string) | + | function imap_binary($string) | - function imap_binary($string) | | function imap_utf8($mime_encoded_text) | - function imap_utf8($mime_encoded_text) | - | function imap_status($stream_id,$mailbox,$options) | - function imap_status($stream_id,$mailbox,$options) | - | function imap_mailboxmsginfo($stream_id) | - function imap_mailboxmsginfo($stream_id) | - | function imap_setflag_full($stream_id,$sequence,$flag,$options) | - function imap_setflag_full($stream_id,$sequence,$flag,$options) | - | function imap_clearflag_full($stream_id,$sequence,$flag,$options) | - function imap_clearflag_full($stream_id,$sequence,$flag,$options) | - | function imap_sort($stream_id,$criteria,$reverse,$options,$search_criteria,$charset) | - function imap_sort($stream_id,$criteria,$reverse,$options,$search_criteria,$charset) | - | function imap_uid($stream_id,$msg_no) | - function imap_uid($stream_id,$msg_no) | - | function imap_msgno($stream_id,$unique_msg_id) | - function imap_msgno($stream_id,$unique_msg_id) | - | function imap_list($stream_id,$ref,$pattern) | - function imap_list($stream_id,$ref,$pattern) | - | function imap_lsub($stream_id,$ref,$pattern) | - function imap_lsub($stream_id,$ref,$pattern) | - | function imap_fetch_overview($stream_id,$sequence,$options) | - function imap_fetch_overview($stream_id,$sequence,$options) | + | function imap_status($imap,$mailbox,$flags) | - function imap_status($imap,$mailbox,$flags) | + | function imap_mailboxmsginfo($imap) | - function imap_mailboxmsginfo($imap) | + | function imap_setflag_full($imap,$sequence,$flag,$options) | - function imap_setflag_full($imap,$sequence,$flag,$options) | + | function imap_clearflag_full($imap,$sequence,$flag,$options) | - function imap_clearflag_full($imap,$sequence,$flag,$options) | + | function imap_sort($imap,$criteria,$reverse,$flags,$search_criteria,$charset) | - function imap_sort($imap,$criteria,$reverse,$flags,$search_criteria,$charset) | + | function imap_uid($imap,$message_num) | - function imap_uid($imap,$message_num) | + | function imap_msgno($imap,$message_uid) | - function imap_msgno($imap,$message_uid) | + | function imap_list($imap,$reference,$pattern) | - function imap_list($imap,$reference,$pattern) | + | function imap_listmailbox($imap,$reference,$pattern) | - function imap_listmailbox($imap,$reference,$pattern) | + | function imap_lsub($imap,$reference,$pattern) | - function imap_lsub($imap,$reference,$pattern) | + | function imap_listsubscribed($imap,$reference,$pattern) | - function imap_listsubscribed($imap,$reference,$pattern) | + | function imap_getsubscribed($imap,$reference,$pattern) | - function imap_getsubscribed($imap,$reference,$pattern) | + | function imap_getmailboxes($imap,$reference,$pattern) | - function imap_getmailboxes($imap,$reference,$pattern) | + | function imap_fetch_overview($imap,$sequence,$flags) | - function imap_fetch_overview($imap,$sequence,$flags) | | function imap_alerts() | - function imap_alerts() | | function imap_errors() | - function imap_errors() | | function imap_last_error() | - function imap_last_error() | - | function imap_search($stream_id,$criteria,$options,$charset) | - function imap_search($stream_id,$criteria,$options,$charset) | - | function imap_utf7_decode($buf) | - function imap_utf7_decode($buf) | - | function imap_utf7_encode($buf) | - function imap_utf7_encode($buf) | - | function imap_utf8_to_mutf7($in) | - function imap_utf8_to_mutf7($in) | - | function imap_mutf7_to_utf8($in) | - function imap_mutf7_to_utf8($in) | - | function imap_mime_header_decode($str) | - function imap_mime_header_decode($str) | - | function imap_thread($stream_id,$options) | - function imap_thread($stream_id,$options) | + | function imap_search($imap,$criteria,$flags,$charset) | - function imap_search($imap,$criteria,$flags,$charset) | + | function imap_utf7_decode($string) | - function imap_utf7_decode($string) | + | function imap_utf7_encode($string) | - function imap_utf7_encode($string) | + | function imap_utf8_to_mutf7($string) | - function imap_utf8_to_mutf7($string) | + | function imap_mutf7_to_utf8($string) | - function imap_mutf7_to_utf8($string) | + | function imap_mime_header_decode($string) | - function imap_mime_header_decode($string) | + | function imap_thread($imap,$flags) | - function imap_thread($imap,$flags) | | function imap_timeout($timeout_type,$timeout) | - function imap_timeout($timeout_type,$timeout) | - | function imap_get_quota($stream_id,$qroot) | - function imap_get_quota($stream_id,$qroot) | - | function imap_get_quotaroot($stream_id,$mbox) | - function imap_get_quotaroot($stream_id,$mbox) | - | function imap_set_quota($stream_id,$qroot,$mailbox_size) | - function imap_set_quota($stream_id,$qroot,$mailbox_size) | - | function imap_setacl($stream_id,$mailbox,$id,$rights) | - function imap_setacl($stream_id,$mailbox,$id,$rights) | - | function imap_getacl($stream_id,$mailbox) | - function imap_getacl($stream_id,$mailbox) | - | function imap_mail($to,$subject,$message,$additional_headers,$cc,$bcc,$rpath) | - function imap_mail($to,$subject,$message,$additional_headers,$cc,$bcc,$rpath) | - | function imap_header($stream_id,$msg_no,$from_length,$subject_length,$default_host) | - function imap_header($stream_id,$msg_no,$from_length,$subject_length,$default_host) | - | function imap_listmailbox($stream_id,$ref,$pattern) | - function imap_listmailbox($stream_id,$ref,$pattern) | - | function imap_getmailboxes($stream_id,$ref,$pattern) | - function imap_getmailboxes($stream_id,$ref,$pattern) | - | function imap_scanmailbox($stream_id,$ref,$pattern,$content) | - function imap_scanmailbox($stream_id,$ref,$pattern,$content) | - | function imap_listsubscribed($stream_id,$ref,$pattern) | - function imap_listsubscribed($stream_id,$ref,$pattern) | - | function imap_getsubscribed($stream_id,$ref,$pattern) | - function imap_getsubscribed($stream_id,$ref,$pattern) | - | function imap_fetchtext($stream_id,$msg_no,$options) | - function imap_fetchtext($stream_id,$msg_no,$options) | - | function imap_scan($stream_id,$ref,$pattern,$content) | - function imap_scan($stream_id,$ref,$pattern,$content) | - | function imap_create($stream_id,$mailbox) | - function imap_create($stream_id,$mailbox) | - | function imap_rename($stream_id,$old_name,$new_name) | - function imap_rename($stream_id,$old_name,$new_name) | + | function imap_get_quota($imap,$quota_root) | - function imap_get_quota($imap,$quota_root) | + | function imap_get_quotaroot($imap,$mailbox) | - function imap_get_quotaroot($imap,$mailbox) | + | function imap_set_quota($imap,$quota_root,$mailbox_size) | - function imap_set_quota($imap,$quota_root,$mailbox_size) | + | function imap_setacl($imap,$mailbox,$user_id,$rights) | - function imap_setacl($imap,$mailbox,$user_id,$rights) | + | function imap_getacl($imap,$mailbox) | - function imap_getacl($imap,$mailbox) | + | function imap_mail($to,$subject,$message,$additional_headers,$cc,$bcc,$return_path) | - function imap_mail($to,$subject,$message,$additional_headers,$cc,$bcc,$return_path) | | const NIL | - const NIL | | const IMAP_OPENTIMEOUT | - const IMAP_OPENTIMEOUT | | const IMAP_READTIMEOUT | - const IMAP_READTIMEOUT | @@ -2291,6 +1549,8 @@ | const SE_UID | - const SE_UID | | const SE_FREE | - const SE_FREE | | const SE_NOPREFETCH | - const SE_NOPREFETCH | + | const SO_FREE | - const SO_FREE | + | const SO_NOSERVER | - const SO_NOSERVER | | const SA_MESSAGES | - const SA_MESSAGES | | const SA_RECENT | - const SA_RECENT | | const SA_UNSEEN | - const SA_UNSEEN | @@ -2332,29 +1592,29 @@ ??? tiny "[=0% "**tidy** 0 / 215"]" | PHP | PeachPie | | --- | --- | - | function tidy_getopt($object,$option) | - function tidy_getopt($object,$option) | - | function tidy_parse_string($input,$config_options,$encoding) | - function tidy_parse_string($input,$config_options,$encoding) | - | function tidy_parse_file($file,$config_options,$encoding,$use_include_path) | - function tidy_parse_file($file,$config_options,$encoding,$use_include_path) | - | function tidy_get_output($object) | - function tidy_get_output($object) | - | function tidy_get_error_buffer($object) | - function tidy_get_error_buffer($object) | - | function tidy_clean_repair($object) | - function tidy_clean_repair($object) | - | function tidy_repair_string($data,$config_file,$encoding) | - function tidy_repair_string($data,$config_file,$encoding) | - | function tidy_repair_file($filename,$config_file,$encoding,$use_include_path) | - function tidy_repair_file($filename,$config_file,$encoding,$use_include_path) | - | function tidy_diagnose($object) | - function tidy_diagnose($object) | + | function tidy_parse_string($string,$config,$encoding) | - function tidy_parse_string($string,$config,$encoding) | + | function tidy_get_error_buffer($tidy) | - function tidy_get_error_buffer($tidy) | + | function tidy_get_output($tidy) | - function tidy_get_output($tidy) | + | function tidy_parse_file($filename,$config,$encoding,$useIncludePath) | - function tidy_parse_file($filename,$config,$encoding,$useIncludePath) | + | function tidy_clean_repair($tidy) | - function tidy_clean_repair($tidy) | + | function tidy_repair_string($string,$config,$encoding) | - function tidy_repair_string($string,$config,$encoding) | + | function tidy_repair_file($filename,$config,$encoding,$useIncludePath) | - function tidy_repair_file($filename,$config,$encoding,$useIncludePath) | + | function tidy_diagnose($tidy) | - function tidy_diagnose($tidy) | | function tidy_get_release() | - function tidy_get_release() | - | function tidy_get_config($object) | - function tidy_get_config($object) | - | function tidy_get_status($object) | - function tidy_get_status($object) | - | function tidy_get_html_ver($object) | - function tidy_get_html_ver($object) | - | function tidy_is_xhtml($object) | - function tidy_is_xhtml($object) | - | function tidy_is_xml($object) | - function tidy_is_xml($object) | - | function tidy_error_count($object) | - function tidy_error_count($object) | - | function tidy_warning_count($object) | - function tidy_warning_count($object) | - | function tidy_access_count($object) | - function tidy_access_count($object) | - | function tidy_config_count($object) | - function tidy_config_count($object) | - | function tidy_get_opt_doc($resource,$optname) | - function tidy_get_opt_doc($resource,$optname) | - | function tidy_get_root($object) | - function tidy_get_root($object) | - | function tidy_get_head($object) | - function tidy_get_head($object) | - | function tidy_get_html($object) | - function tidy_get_html($object) | + | function tidy_get_opt_doc($tidy,$option) | - function tidy_get_opt_doc($tidy,$option) | + | function tidy_get_config($tidy) | - function tidy_get_config($tidy) | + | function tidy_get_status($tidy) | - function tidy_get_status($tidy) | + | function tidy_get_html_ver($tidy) | - function tidy_get_html_ver($tidy) | + | function tidy_is_xhtml($tidy) | - function tidy_is_xhtml($tidy) | + | function tidy_is_xml($tidy) | - function tidy_is_xml($tidy) | + | function tidy_error_count($tidy) | - function tidy_error_count($tidy) | + | function tidy_warning_count($tidy) | - function tidy_warning_count($tidy) | + | function tidy_access_count($tidy) | - function tidy_access_count($tidy) | + | function tidy_config_count($tidy) | - function tidy_config_count($tidy) | + | function tidy_getopt($tidy,$option) | - function tidy_getopt($tidy,$option) | + | function tidy_get_root($tidy) | - function tidy_get_root($tidy) | + | function tidy_get_html($tidy) | - function tidy_get_html($tidy) | + | function tidy_get_head($tidy) | - function tidy_get_head($tidy) | | function tidy_get_body($tidy) | - function tidy_get_body($tidy) | | class tidy | - class tidy | | class tidyNode | - class tidyNode | @@ -2519,29 +1779,396 @@ | const TIDY_NODETYPE_JSTE | - const TIDY_NODETYPE_JSTE | | const TIDY_NODETYPE_PHP | - const TIDY_NODETYPE_PHP | | const TIDY_NODETYPE_XMLDECL | - const TIDY_NODETYPE_XMLDECL | -??? tiny "[=94% "**sockets** 145 / 155"]" +??? tiny "[=100% "**ftp** 47 / 47"]" +??? tiny "[=92% "**sockets** 145 / 157"]" | PHP | PeachPie | | --- | --- | - | function socket_select($read_fds,$write_fds,$except_fds,$tv_sec,$tv_usec) | function socket_select($read,$write,$except,$tv_sec,$tv_usec) | - | function socket_create_pair($domain,$type,$protocol,$fd) | - function socket_create_pair($domain,$type,$protocol,$fd) | - | function socket_write($socket,$buf,$length) | function socket_write($socket,$buffer,$length) | - | function socket_connect($socket,$addr,$port) | function socket_connect($socket,$address,$port) | - | function socket_bind($socket,$addr,$port) | function socket_bind($socket,$address,$port) | - | function socket_recv($socket,$buf,$len,$flags) | function socket_recv($socket,$buf,$length,$flags) | - | function socket_send($socket,$buf,$len,$flags) | function socket_send($socket,$buffer,$length,$flags) | - | function socket_recvfrom($socket,$buf,$len,$flags,$name,$port) | function socket_recvfrom($socket,$buf,$length,$flags,$name,$port) | - | function socket_sendto($socket,$buf,$len,$flags,$addr,$port) | function socket_sendto($socket,$buffer,$length,$flags,$addr,$port) | - | function socket_get_option($socket,$level,$optname) | function socket_get_option($socket,$level,$option) | - | function socket_set_option($socket,$level,$optname,$optval) | function socket_set_option($socket,$level,$option,$option_value) | - | function socket_sendmsg($socket,$msghdr,$flags) | - function socket_sendmsg($socket,$msghdr,$flags) | - | function socket_recvmsg($socket,$msghdr,$flags) | - function socket_recvmsg($socket,$msghdr,$flags) | - | function socket_cmsg_space($level,$type) | - function socket_cmsg_space($level,$type) | + | function socket_create_pair($domain,$type,$protocol,$pair) | - function socket_create_pair($domain,$type,$protocol,$pair) | + | function socket_sendmsg($socket,$message,$flags) | - function socket_sendmsg($socket,$message,$flags) | + | function socket_recvmsg($socket,$message,$flags) | - function socket_recvmsg($socket,$message,$flags) | + | function socket_cmsg_space($level,$type,$num) | - function socket_cmsg_space($level,$type,$num) | | function socket_addrinfo_lookup($host,$service,$hints) | - function socket_addrinfo_lookup($host,$service,$hints) | - | function socket_addrinfo_connect($addr) | - function socket_addrinfo_connect($addr) | - | function socket_addrinfo_bind($addr) | - function socket_addrinfo_bind($addr) | - | function socket_addrinfo_explain($addr) | function socket_addrinfo_explain($resource) | - | function socket_getopt($socket,$level,$optname) | function socket_getopt($socket,$level,$option) | - | function socket_setopt($socket,$level,$optname,$optval) | function socket_setopt($socket,$level,$option,$option_value) | - | function socket_wsaprotocol_info_export($socket,$target_pid) | - function socket_wsaprotocol_info_export($socket,$target_pid) | + | function socket_addrinfo_connect($address) | - function socket_addrinfo_connect($address) | + | function socket_addrinfo_bind($address) | - function socket_addrinfo_bind($address) | + | function socket_wsaprotocol_info_export($socket,$process_id) | - function socket_wsaprotocol_info_export($socket,$process_id) | | function socket_wsaprotocol_info_import($info_id) | - function socket_wsaprotocol_info_import($info_id) | | function socket_wsaprotocol_info_release($info_id) | - function socket_wsaprotocol_info_release($info_id) | + | class Socket | - class Socket | + | class AddressInfo | - class AddressInfo | + | | + const SO_FREE | + | | + const SO_NOSERVER | +??? tiny "[=0% "**intl** 0 / 1759"]" + | PHP | PeachPie | + | --- | --- | + | function intlcal_create_instance($timezone,$locale) | - function intlcal_create_instance($timezone,$locale) | + | function intlcal_get_keyword_values_for_locale($keyword,$locale,$onlyCommon) | - function intlcal_get_keyword_values_for_locale($keyword,$locale,$onlyCommon) | + | function intlcal_get_now() | - function intlcal_get_now() | + | function intlcal_get_available_locales() | - function intlcal_get_available_locales() | + | function intlcal_get($calendar,$field) | - function intlcal_get($calendar,$field) | + | function intlcal_get_time($calendar) | - function intlcal_get_time($calendar) | + | function intlcal_set_time($calendar,$timestamp) | - function intlcal_set_time($calendar,$timestamp) | + | function intlcal_add($calendar,$field,$value) | - function intlcal_add($calendar,$field,$value) | + | function intlcal_set_time_zone($calendar,$timezone) | - function intlcal_set_time_zone($calendar,$timezone) | + | function intlcal_after($calendar,$other) | - function intlcal_after($calendar,$other) | + | function intlcal_before($calendar,$other) | - function intlcal_before($calendar,$other) | + | function intlcal_set($calendar,$year,$month,$dayOfMonth,$hour,$minute,$second) | - function intlcal_set($calendar,$year,$month,$dayOfMonth,$hour,$minute,$second) | + | function intlcal_roll($calendar,$field,$value) | - function intlcal_roll($calendar,$field,$value) | + | function intlcal_clear($calendar,$field) | - function intlcal_clear($calendar,$field) | + | function intlcal_field_difference($calendar,$timestamp,$field) | - function intlcal_field_difference($calendar,$timestamp,$field) | + | function intlcal_get_actual_maximum($calendar,$field) | - function intlcal_get_actual_maximum($calendar,$field) | + | function intlcal_get_actual_minimum($calendar,$field) | - function intlcal_get_actual_minimum($calendar,$field) | + | function intlcal_get_day_of_week_type($calendar,$dayOfWeek) | - function intlcal_get_day_of_week_type($calendar,$dayOfWeek) | + | function intlcal_get_first_day_of_week($calendar) | - function intlcal_get_first_day_of_week($calendar) | + | function intlcal_get_least_maximum($calendar,$field) | - function intlcal_get_least_maximum($calendar,$field) | + | function intlcal_get_greatest_minimum($calendar,$field) | - function intlcal_get_greatest_minimum($calendar,$field) | + | function intlcal_get_locale($calendar,$type) | - function intlcal_get_locale($calendar,$type) | + | function intlcal_get_maximum($calendar,$field) | - function intlcal_get_maximum($calendar,$field) | + | function intlcal_get_minimal_days_in_first_week($calendar) | - function intlcal_get_minimal_days_in_first_week($calendar) | + | function intlcal_set_minimal_days_in_first_week($calendar,$days) | - function intlcal_set_minimal_days_in_first_week($calendar,$days) | + | function intlcal_get_minimum($calendar,$field) | - function intlcal_get_minimum($calendar,$field) | + | function intlcal_get_time_zone($calendar) | - function intlcal_get_time_zone($calendar) | + | function intlcal_get_type($calendar) | - function intlcal_get_type($calendar) | + | function intlcal_get_weekend_transition($calendar,$dayOfWeek) | - function intlcal_get_weekend_transition($calendar,$dayOfWeek) | + | function intlcal_in_daylight_time($calendar) | - function intlcal_in_daylight_time($calendar) | + | function intlcal_is_lenient($calendar) | - function intlcal_is_lenient($calendar) | + | function intlcal_is_set($calendar,$field) | - function intlcal_is_set($calendar,$field) | + | function intlcal_is_equivalent_to($calendar,$other) | - function intlcal_is_equivalent_to($calendar,$other) | + | function intlcal_is_weekend($calendar,$timestamp) | - function intlcal_is_weekend($calendar,$timestamp) | + | function intlcal_set_first_day_of_week($calendar,$dayOfWeek) | - function intlcal_set_first_day_of_week($calendar,$dayOfWeek) | + | function intlcal_set_lenient($calendar,$lenient) | - function intlcal_set_lenient($calendar,$lenient) | + | function intlcal_get_repeated_wall_time_option($calendar) | - function intlcal_get_repeated_wall_time_option($calendar) | + | function intlcal_equals($calendar,$other) | - function intlcal_equals($calendar,$other) | + | function intlcal_get_skipped_wall_time_option($calendar) | - function intlcal_get_skipped_wall_time_option($calendar) | + | function intlcal_set_repeated_wall_time_option($calendar,$option) | - function intlcal_set_repeated_wall_time_option($calendar,$option) | + | function intlcal_set_skipped_wall_time_option($calendar,$option) | - function intlcal_set_skipped_wall_time_option($calendar,$option) | + | function intlcal_from_date_time($datetime,$locale) | - function intlcal_from_date_time($datetime,$locale) | + | function intlcal_to_date_time($calendar) | - function intlcal_to_date_time($calendar) | + | function intlcal_get_error_code($calendar) | - function intlcal_get_error_code($calendar) | + | function intlcal_get_error_message($calendar) | - function intlcal_get_error_message($calendar) | + | function intlgregcal_create_instance($timezoneOrYear,$localeOrMonth,$day,$hour,$minute,$second) | - function intlgregcal_create_instance($timezoneOrYear,$localeOrMonth,$day,$hour,$minute,$second) | + | function intlgregcal_set_gregorian_change($calendar,$timestamp) | - function intlgregcal_set_gregorian_change($calendar,$timestamp) | + | function intlgregcal_get_gregorian_change($calendar) | - function intlgregcal_get_gregorian_change($calendar) | + | function intlgregcal_is_leap_year($calendar,$year) | - function intlgregcal_is_leap_year($calendar,$year) | + | function collator_create($locale) | - function collator_create($locale) | + | function collator_compare($object,$string1,$string2) | - function collator_compare($object,$string1,$string2) | + | function collator_get_attribute($object,$attribute) | - function collator_get_attribute($object,$attribute) | + | function collator_set_attribute($object,$attribute,$value) | - function collator_set_attribute($object,$attribute,$value) | + | function collator_get_strength($object) | - function collator_get_strength($object) | + | function collator_set_strength($object,$strength) | - function collator_set_strength($object,$strength) | + | function collator_sort($object,$array,$flags) | - function collator_sort($object,$array,$flags) | + | function collator_sort_with_sort_keys($object,$array) | - function collator_sort_with_sort_keys($object,$array) | + | function collator_asort($object,$array,$flags) | - function collator_asort($object,$array,$flags) | + | function collator_get_locale($object,$type) | - function collator_get_locale($object,$type) | + | function collator_get_error_code($object) | - function collator_get_error_code($object) | + | function collator_get_error_message($object) | - function collator_get_error_message($object) | + | function collator_get_sort_key($object,$string) | - function collator_get_sort_key($object,$string) | + | function intl_get_error_code() | - function intl_get_error_code() | + | function intl_get_error_message() | - function intl_get_error_message() | + | function intl_is_failure($errorCode) | - function intl_is_failure($errorCode) | + | function intl_error_name($errorCode) | - function intl_error_name($errorCode) | + | function datefmt_create($locale,$dateType,$timeType,$timezone,$calendar,$pattern) | - function datefmt_create($locale,$dateType,$timeType,$timezone,$calendar,$pattern) | + | function datefmt_get_datetype($formatter) | - function datefmt_get_datetype($formatter) | + | function datefmt_get_timetype($formatter) | - function datefmt_get_timetype($formatter) | + | function datefmt_get_calendar($formatter) | - function datefmt_get_calendar($formatter) | + | function datefmt_set_calendar($formatter,$calendar) | - function datefmt_set_calendar($formatter,$calendar) | + | function datefmt_get_timezone_id($formatter) | - function datefmt_get_timezone_id($formatter) | + | function datefmt_get_calendar_object($formatter) | - function datefmt_get_calendar_object($formatter) | + | function datefmt_get_timezone($formatter) | - function datefmt_get_timezone($formatter) | + | function datefmt_set_timezone($formatter,$timezone) | - function datefmt_set_timezone($formatter,$timezone) | + | function datefmt_set_pattern($formatter,$pattern) | - function datefmt_set_pattern($formatter,$pattern) | + | function datefmt_get_pattern($formatter) | - function datefmt_get_pattern($formatter) | + | function datefmt_get_locale($formatter,$type) | - function datefmt_get_locale($formatter,$type) | + | function datefmt_set_lenient($formatter,$lenient) | - function datefmt_set_lenient($formatter,$lenient) | + | function datefmt_is_lenient($formatter) | - function datefmt_is_lenient($formatter) | + | function datefmt_format($formatter,$datetime) | - function datefmt_format($formatter,$datetime) | + | function datefmt_format_object($datetime,$format,$locale) | - function datefmt_format_object($datetime,$format,$locale) | + | function datefmt_parse($formatter,$string,$offset) | - function datefmt_parse($formatter,$string,$offset) | + | function datefmt_localtime($formatter,$string,$offset) | - function datefmt_localtime($formatter,$string,$offset) | + | function datefmt_get_error_code($formatter) | - function datefmt_get_error_code($formatter) | + | function datefmt_get_error_message($formatter) | - function datefmt_get_error_message($formatter) | + | function numfmt_create($locale,$style,$pattern) | - function numfmt_create($locale,$style,$pattern) | + | function numfmt_format($formatter,$num,$type) | - function numfmt_format($formatter,$num,$type) | + | function numfmt_parse($formatter,$string,$type,$offset) | - function numfmt_parse($formatter,$string,$type,$offset) | + | function numfmt_format_currency($formatter,$amount,$currency) | - function numfmt_format_currency($formatter,$amount,$currency) | + | function numfmt_parse_currency($formatter,$string,$currency,$offset) | - function numfmt_parse_currency($formatter,$string,$currency,$offset) | + | function numfmt_set_attribute($formatter,$attribute,$value) | - function numfmt_set_attribute($formatter,$attribute,$value) | + | function numfmt_get_attribute($formatter,$attribute) | - function numfmt_get_attribute($formatter,$attribute) | + | function numfmt_set_text_attribute($formatter,$attribute,$value) | - function numfmt_set_text_attribute($formatter,$attribute,$value) | + | function numfmt_get_text_attribute($formatter,$attribute) | - function numfmt_get_text_attribute($formatter,$attribute) | + | function numfmt_set_symbol($formatter,$symbol,$value) | - function numfmt_set_symbol($formatter,$symbol,$value) | + | function numfmt_get_symbol($formatter,$symbol) | - function numfmt_get_symbol($formatter,$symbol) | + | function numfmt_set_pattern($formatter,$pattern) | - function numfmt_set_pattern($formatter,$pattern) | + | function numfmt_get_pattern($formatter) | - function numfmt_get_pattern($formatter) | + | function numfmt_get_locale($formatter,$type) | - function numfmt_get_locale($formatter,$type) | + | function numfmt_get_error_code($formatter) | - function numfmt_get_error_code($formatter) | + | function numfmt_get_error_message($formatter) | - function numfmt_get_error_message($formatter) | + | function grapheme_strlen($string) | - function grapheme_strlen($string) | + | function grapheme_strpos($haystack,$needle,$offset) | - function grapheme_strpos($haystack,$needle,$offset) | + | function grapheme_stripos($haystack,$needle,$offset) | - function grapheme_stripos($haystack,$needle,$offset) | + | function grapheme_strrpos($haystack,$needle,$offset) | - function grapheme_strrpos($haystack,$needle,$offset) | + | function grapheme_strripos($haystack,$needle,$offset) | - function grapheme_strripos($haystack,$needle,$offset) | + | function grapheme_substr($string,$offset,$length) | - function grapheme_substr($string,$offset,$length) | + | function grapheme_strstr($haystack,$needle,$beforeNeedle) | - function grapheme_strstr($haystack,$needle,$beforeNeedle) | + | function grapheme_stristr($haystack,$needle,$beforeNeedle) | - function grapheme_stristr($haystack,$needle,$beforeNeedle) | + | function grapheme_extract($haystack,$size,$type,$offset,$next) | - function grapheme_extract($haystack,$size,$type,$offset,$next) | + | function idn_to_ascii($domain,$flags,$variant,$idna_info) | - function idn_to_ascii($domain,$flags,$variant,$idna_info) | + | function idn_to_utf8($domain,$flags,$variant,$idna_info) | - function idn_to_utf8($domain,$flags,$variant,$idna_info) | + | function locale_get_default() | - function locale_get_default() | + | function locale_set_default($locale) | - function locale_set_default($locale) | + | function locale_get_primary_language($locale) | - function locale_get_primary_language($locale) | + | function locale_get_script($locale) | - function locale_get_script($locale) | + | function locale_get_region($locale) | - function locale_get_region($locale) | + | function locale_get_keywords($locale) | - function locale_get_keywords($locale) | + | function locale_get_display_script($locale,$displayLocale) | - function locale_get_display_script($locale,$displayLocale) | + | function locale_get_display_region($locale,$displayLocale) | - function locale_get_display_region($locale,$displayLocale) | + | function locale_get_display_name($locale,$displayLocale) | - function locale_get_display_name($locale,$displayLocale) | + | function locale_get_display_language($locale,$displayLocale) | - function locale_get_display_language($locale,$displayLocale) | + | function locale_get_display_variant($locale,$displayLocale) | - function locale_get_display_variant($locale,$displayLocale) | + | function locale_compose($subtags) | - function locale_compose($subtags) | + | function locale_parse($locale) | - function locale_parse($locale) | + | function locale_get_all_variants($locale) | - function locale_get_all_variants($locale) | + | function locale_filter_matches($languageTag,$locale,$canonicalize) | - function locale_filter_matches($languageTag,$locale,$canonicalize) | + | function locale_canonicalize($locale) | - function locale_canonicalize($locale) | + | function locale_lookup($languageTag,$locale,$canonicalize,$defaultLocale) | - function locale_lookup($languageTag,$locale,$canonicalize,$defaultLocale) | + | function locale_accept_from_http($header) | - function locale_accept_from_http($header) | + | function msgfmt_create($locale,$pattern) | - function msgfmt_create($locale,$pattern) | + | function msgfmt_format($formatter,$values) | - function msgfmt_format($formatter,$values) | + | function msgfmt_format_message($locale,$pattern,$values) | - function msgfmt_format_message($locale,$pattern,$values) | + | function msgfmt_parse($formatter,$string) | - function msgfmt_parse($formatter,$string) | + | function msgfmt_parse_message($locale,$pattern,$message) | - function msgfmt_parse_message($locale,$pattern,$message) | + | function msgfmt_set_pattern($formatter,$pattern) | - function msgfmt_set_pattern($formatter,$pattern) | + | function msgfmt_get_pattern($formatter) | - function msgfmt_get_pattern($formatter) | + | function msgfmt_get_locale($formatter) | - function msgfmt_get_locale($formatter) | + | function msgfmt_get_error_code($formatter) | - function msgfmt_get_error_code($formatter) | + | function msgfmt_get_error_message($formatter) | - function msgfmt_get_error_message($formatter) | + | function normalizer_normalize($string,$form) | - function normalizer_normalize($string,$form) | + | function normalizer_is_normalized($string,$form) | - function normalizer_is_normalized($string,$form) | + | function normalizer_get_raw_decomposition($string,$form) | - function normalizer_get_raw_decomposition($string,$form) | + | function resourcebundle_create($locale,$bundle,$fallback) | - function resourcebundle_create($locale,$bundle,$fallback) | + | function resourcebundle_get($bundle,$index,$fallback) | - function resourcebundle_get($bundle,$index,$fallback) | + | function resourcebundle_count($bundle) | - function resourcebundle_count($bundle) | + | function resourcebundle_locales($bundle) | - function resourcebundle_locales($bundle) | + | function resourcebundle_get_error_code($bundle) | - function resourcebundle_get_error_code($bundle) | + | function resourcebundle_get_error_message($bundle) | - function resourcebundle_get_error_message($bundle) | + | function intltz_count_equivalent_ids($timezoneId) | - function intltz_count_equivalent_ids($timezoneId) | + | function intltz_create_default() | - function intltz_create_default() | + | function intltz_create_enumeration($countryOrRawOffset) | - function intltz_create_enumeration($countryOrRawOffset) | + | function intltz_create_time_zone($timezoneId) | - function intltz_create_time_zone($timezoneId) | + | function intltz_create_time_zone_id_enumeration($type,$region,$rawOffset) | - function intltz_create_time_zone_id_enumeration($type,$region,$rawOffset) | + | function intltz_from_date_time_zone($timezone) | - function intltz_from_date_time_zone($timezone) | + | function intltz_get_canonical_id($timezoneId,$isSystemId) | - function intltz_get_canonical_id($timezoneId,$isSystemId) | + | function intltz_get_display_name($timezone,$dst,$style,$locale) | - function intltz_get_display_name($timezone,$dst,$style,$locale) | + | function intltz_get_dst_savings($timezone) | - function intltz_get_dst_savings($timezone) | + | function intltz_get_equivalent_id($timezoneId,$offset) | - function intltz_get_equivalent_id($timezoneId,$offset) | + | function intltz_get_error_code($timezone) | - function intltz_get_error_code($timezone) | + | function intltz_get_error_message($timezone) | - function intltz_get_error_message($timezone) | + | function intltz_get_gmt() | - function intltz_get_gmt() | + | function intltz_get_id($timezone) | - function intltz_get_id($timezone) | + | function intltz_get_offset($timezone,$timestamp,$local,$rawOffset,$dstOffset) | - function intltz_get_offset($timezone,$timestamp,$local,$rawOffset,$dstOffset) | + | function intltz_get_raw_offset($timezone) | - function intltz_get_raw_offset($timezone) | + | function intltz_get_region($timezoneId) | - function intltz_get_region($timezoneId) | + | function intltz_get_tz_data_version() | - function intltz_get_tz_data_version() | + | function intltz_get_unknown() | - function intltz_get_unknown() | + | function intltz_get_windows_id($timezoneId) | - function intltz_get_windows_id($timezoneId) | + | function intltz_get_id_for_windows_id($timezoneId,$region) | - function intltz_get_id_for_windows_id($timezoneId,$region) | + | function intltz_has_same_rules($timezone,$other) | - function intltz_has_same_rules($timezone,$other) | + | function intltz_to_date_time_zone($timezone) | - function intltz_to_date_time_zone($timezone) | + | function intltz_use_daylight_time($timezone) | - function intltz_use_daylight_time($timezone) | + | function transliterator_create($id,$direction) | - function transliterator_create($id,$direction) | + | function transliterator_create_from_rules($rules,$direction) | - function transliterator_create_from_rules($rules,$direction) | + | function transliterator_list_ids() | - function transliterator_list_ids() | + | function transliterator_create_inverse($transliterator) | - function transliterator_create_inverse($transliterator) | + | function transliterator_transliterate($transliterator,$string,$start,$end) | - function transliterator_transliterate($transliterator,$string,$start,$end) | + | function transliterator_get_error_code($transliterator) | - function transliterator_get_error_code($transliterator) | + | function transliterator_get_error_message($transliterator) | - function transliterator_get_error_message($transliterator) | + | class Collator | - class Collator | + | class NumberFormatter | - class NumberFormatter | + | class Normalizer | - class Normalizer | + | class Locale | - class Locale | + | class MessageFormatter | - class MessageFormatter | + | class IntlDateFormatter | - class IntlDateFormatter | + | class ResourceBundle | - class ResourceBundle | + | class Transliterator | - class Transliterator | + | class IntlTimeZone | - class IntlTimeZone | + | class IntlCalendar | - class IntlCalendar | + | class IntlGregorianCalendar | - class IntlGregorianCalendar | + | class Spoofchecker | - class Spoofchecker | + | class IntlException | - class IntlException | + | class IntlIterator | - class IntlIterator | + | class IntlBreakIterator | - class IntlBreakIterator | + | class IntlRuleBasedBreakIterator | - class IntlRuleBasedBreakIterator | + | class IntlCodePointBreakIterator | - class IntlCodePointBreakIterator | + | class IntlPartsIterator | - class IntlPartsIterator | + | class UConverter | - class UConverter | + | class IntlChar | - class IntlChar | + | const INTL_MAX_LOCALE_LEN | - const INTL_MAX_LOCALE_LEN | + | const INTL_ICU_VERSION | - const INTL_ICU_VERSION | + | const INTL_ICU_DATA_VERSION | - const INTL_ICU_DATA_VERSION | + | const ULOC_ACTUAL_LOCALE | - const ULOC_ACTUAL_LOCALE | + | const ULOC_VALID_LOCALE | - const ULOC_VALID_LOCALE | + | const GRAPHEME_EXTR_COUNT | - const GRAPHEME_EXTR_COUNT | + | const GRAPHEME_EXTR_MAXBYTES | - const GRAPHEME_EXTR_MAXBYTES | + | const GRAPHEME_EXTR_MAXCHARS | - const GRAPHEME_EXTR_MAXCHARS | + | const U_USING_FALLBACK_WARNING | - const U_USING_FALLBACK_WARNING | + | const U_ERROR_WARNING_START | - const U_ERROR_WARNING_START | + | const U_USING_DEFAULT_WARNING | - const U_USING_DEFAULT_WARNING | + | const U_SAFECLONE_ALLOCATED_WARNING | - const U_SAFECLONE_ALLOCATED_WARNING | + | const U_STATE_OLD_WARNING | - const U_STATE_OLD_WARNING | + | const U_STRING_NOT_TERMINATED_WARNING | - const U_STRING_NOT_TERMINATED_WARNING | + | const U_SORT_KEY_TOO_SHORT_WARNING | - const U_SORT_KEY_TOO_SHORT_WARNING | + | const U_AMBIGUOUS_ALIAS_WARNING | - const U_AMBIGUOUS_ALIAS_WARNING | + | const U_DIFFERENT_UCA_VERSION | - const U_DIFFERENT_UCA_VERSION | + | const U_ERROR_WARNING_LIMIT | - const U_ERROR_WARNING_LIMIT | + | const U_ZERO_ERROR | - const U_ZERO_ERROR | + | const U_ILLEGAL_ARGUMENT_ERROR | - const U_ILLEGAL_ARGUMENT_ERROR | + | const U_MISSING_RESOURCE_ERROR | - const U_MISSING_RESOURCE_ERROR | + | const U_INVALID_FORMAT_ERROR | - const U_INVALID_FORMAT_ERROR | + | const U_FILE_ACCESS_ERROR | - const U_FILE_ACCESS_ERROR | + | const U_INTERNAL_PROGRAM_ERROR | - const U_INTERNAL_PROGRAM_ERROR | + | const U_MESSAGE_PARSE_ERROR | - const U_MESSAGE_PARSE_ERROR | + | const U_MEMORY_ALLOCATION_ERROR | - const U_MEMORY_ALLOCATION_ERROR | + | const U_INDEX_OUTOFBOUNDS_ERROR | - const U_INDEX_OUTOFBOUNDS_ERROR | + | const U_PARSE_ERROR | - const U_PARSE_ERROR | + | const U_INVALID_CHAR_FOUND | - const U_INVALID_CHAR_FOUND | + | const U_TRUNCATED_CHAR_FOUND | - const U_TRUNCATED_CHAR_FOUND | + | const U_ILLEGAL_CHAR_FOUND | - const U_ILLEGAL_CHAR_FOUND | + | const U_INVALID_TABLE_FORMAT | - const U_INVALID_TABLE_FORMAT | + | const U_INVALID_TABLE_FILE | - const U_INVALID_TABLE_FILE | + | const U_BUFFER_OVERFLOW_ERROR | - const U_BUFFER_OVERFLOW_ERROR | + | const U_UNSUPPORTED_ERROR | - const U_UNSUPPORTED_ERROR | + | const U_RESOURCE_TYPE_MISMATCH | - const U_RESOURCE_TYPE_MISMATCH | + | const U_ILLEGAL_ESCAPE_SEQUENCE | - const U_ILLEGAL_ESCAPE_SEQUENCE | + | const U_UNSUPPORTED_ESCAPE_SEQUENCE | - const U_UNSUPPORTED_ESCAPE_SEQUENCE | + | const U_NO_SPACE_AVAILABLE | - const U_NO_SPACE_AVAILABLE | + | const U_CE_NOT_FOUND_ERROR | - const U_CE_NOT_FOUND_ERROR | + | const U_PRIMARY_TOO_LONG_ERROR | - const U_PRIMARY_TOO_LONG_ERROR | + | const U_STATE_TOO_OLD_ERROR | - const U_STATE_TOO_OLD_ERROR | + | const U_TOO_MANY_ALIASES_ERROR | - const U_TOO_MANY_ALIASES_ERROR | + | const U_ENUM_OUT_OF_SYNC_ERROR | - const U_ENUM_OUT_OF_SYNC_ERROR | + | const U_INVARIANT_CONVERSION_ERROR | - const U_INVARIANT_CONVERSION_ERROR | + | const U_INVALID_STATE_ERROR | - const U_INVALID_STATE_ERROR | + | const U_COLLATOR_VERSION_MISMATCH | - const U_COLLATOR_VERSION_MISMATCH | + | const U_USELESS_COLLATOR_ERROR | - const U_USELESS_COLLATOR_ERROR | + | const U_NO_WRITE_PERMISSION | - const U_NO_WRITE_PERMISSION | + | const U_STANDARD_ERROR_LIMIT | - const U_STANDARD_ERROR_LIMIT | + | const U_BAD_VARIABLE_DEFINITION | - const U_BAD_VARIABLE_DEFINITION | + | const U_PARSE_ERROR_START | - const U_PARSE_ERROR_START | + | const U_MALFORMED_RULE | - const U_MALFORMED_RULE | + | const U_MALFORMED_SET | - const U_MALFORMED_SET | + | const U_MALFORMED_SYMBOL_REFERENCE | - const U_MALFORMED_SYMBOL_REFERENCE | + | const U_MALFORMED_UNICODE_ESCAPE | - const U_MALFORMED_UNICODE_ESCAPE | + | const U_MALFORMED_VARIABLE_DEFINITION | - const U_MALFORMED_VARIABLE_DEFINITION | + | const U_MALFORMED_VARIABLE_REFERENCE | - const U_MALFORMED_VARIABLE_REFERENCE | + | const U_MISMATCHED_SEGMENT_DELIMITERS | - const U_MISMATCHED_SEGMENT_DELIMITERS | + | const U_MISPLACED_ANCHOR_START | - const U_MISPLACED_ANCHOR_START | + | const U_MISPLACED_CURSOR_OFFSET | - const U_MISPLACED_CURSOR_OFFSET | + | const U_MISPLACED_QUANTIFIER | - const U_MISPLACED_QUANTIFIER | + | const U_MISSING_OPERATOR | - const U_MISSING_OPERATOR | + | const U_MISSING_SEGMENT_CLOSE | - const U_MISSING_SEGMENT_CLOSE | + | const U_MULTIPLE_ANTE_CONTEXTS | - const U_MULTIPLE_ANTE_CONTEXTS | + | const U_MULTIPLE_CURSORS | - const U_MULTIPLE_CURSORS | + | const U_MULTIPLE_POST_CONTEXTS | - const U_MULTIPLE_POST_CONTEXTS | + | const U_TRAILING_BACKSLASH | - const U_TRAILING_BACKSLASH | + | const U_UNDEFINED_SEGMENT_REFERENCE | - const U_UNDEFINED_SEGMENT_REFERENCE | + | const U_UNDEFINED_VARIABLE | - const U_UNDEFINED_VARIABLE | + | const U_UNQUOTED_SPECIAL | - const U_UNQUOTED_SPECIAL | + | const U_UNTERMINATED_QUOTE | - const U_UNTERMINATED_QUOTE | + | const U_RULE_MASK_ERROR | - const U_RULE_MASK_ERROR | + | const U_MISPLACED_COMPOUND_FILTER | - const U_MISPLACED_COMPOUND_FILTER | + | const U_MULTIPLE_COMPOUND_FILTERS | - const U_MULTIPLE_COMPOUND_FILTERS | + | const U_INVALID_RBT_SYNTAX | - const U_INVALID_RBT_SYNTAX | + | const U_INVALID_PROPERTY_PATTERN | - const U_INVALID_PROPERTY_PATTERN | + | const U_MALFORMED_PRAGMA | - const U_MALFORMED_PRAGMA | + | const U_UNCLOSED_SEGMENT | - const U_UNCLOSED_SEGMENT | + | const U_ILLEGAL_CHAR_IN_SEGMENT | - const U_ILLEGAL_CHAR_IN_SEGMENT | + | const U_VARIABLE_RANGE_EXHAUSTED | - const U_VARIABLE_RANGE_EXHAUSTED | + | const U_VARIABLE_RANGE_OVERLAP | - const U_VARIABLE_RANGE_OVERLAP | + | const U_ILLEGAL_CHARACTER | - const U_ILLEGAL_CHARACTER | + | const U_INTERNAL_TRANSLITERATOR_ERROR | - const U_INTERNAL_TRANSLITERATOR_ERROR | + | const U_INVALID_ID | - const U_INVALID_ID | + | const U_INVALID_FUNCTION | - const U_INVALID_FUNCTION | + | const U_PARSE_ERROR_LIMIT | - const U_PARSE_ERROR_LIMIT | + | const U_UNEXPECTED_TOKEN | - const U_UNEXPECTED_TOKEN | + | const U_FMT_PARSE_ERROR_START | - const U_FMT_PARSE_ERROR_START | + | const U_MULTIPLE_DECIMAL_SEPARATORS | - const U_MULTIPLE_DECIMAL_SEPARATORS | + | const U_MULTIPLE_DECIMAL_SEPERATORS | - const U_MULTIPLE_DECIMAL_SEPERATORS | + | const U_MULTIPLE_EXPONENTIAL_SYMBOLS | - const U_MULTIPLE_EXPONENTIAL_SYMBOLS | + | const U_MALFORMED_EXPONENTIAL_PATTERN | - const U_MALFORMED_EXPONENTIAL_PATTERN | + | const U_MULTIPLE_PERCENT_SYMBOLS | - const U_MULTIPLE_PERCENT_SYMBOLS | + | const U_MULTIPLE_PERMILL_SYMBOLS | - const U_MULTIPLE_PERMILL_SYMBOLS | + | const U_MULTIPLE_PAD_SPECIFIERS | - const U_MULTIPLE_PAD_SPECIFIERS | + | const U_PATTERN_SYNTAX_ERROR | - const U_PATTERN_SYNTAX_ERROR | + | const U_ILLEGAL_PAD_POSITION | - const U_ILLEGAL_PAD_POSITION | + | const U_UNMATCHED_BRACES | - const U_UNMATCHED_BRACES | + | const U_UNSUPPORTED_PROPERTY | - const U_UNSUPPORTED_PROPERTY | + | const U_UNSUPPORTED_ATTRIBUTE | - const U_UNSUPPORTED_ATTRIBUTE | + | const U_FMT_PARSE_ERROR_LIMIT | - const U_FMT_PARSE_ERROR_LIMIT | + | const U_BRK_INTERNAL_ERROR | - const U_BRK_INTERNAL_ERROR | + | const U_BRK_ERROR_START | - const U_BRK_ERROR_START | + | const U_BRK_HEX_DIGITS_EXPECTED | - const U_BRK_HEX_DIGITS_EXPECTED | + | const U_BRK_SEMICOLON_EXPECTED | - const U_BRK_SEMICOLON_EXPECTED | + | const U_BRK_RULE_SYNTAX | - const U_BRK_RULE_SYNTAX | + | const U_BRK_UNCLOSED_SET | - const U_BRK_UNCLOSED_SET | + | const U_BRK_ASSIGN_ERROR | - const U_BRK_ASSIGN_ERROR | + | const U_BRK_VARIABLE_REDFINITION | - const U_BRK_VARIABLE_REDFINITION | + | const U_BRK_MISMATCHED_PAREN | - const U_BRK_MISMATCHED_PAREN | + | const U_BRK_NEW_LINE_IN_QUOTED_STRING | - const U_BRK_NEW_LINE_IN_QUOTED_STRING | + | const U_BRK_UNDEFINED_VARIABLE | - const U_BRK_UNDEFINED_VARIABLE | + | const U_BRK_INIT_ERROR | - const U_BRK_INIT_ERROR | + | const U_BRK_RULE_EMPTY_SET | - const U_BRK_RULE_EMPTY_SET | + | const U_BRK_UNRECOGNIZED_OPTION | - const U_BRK_UNRECOGNIZED_OPTION | + | const U_BRK_MALFORMED_RULE_TAG | - const U_BRK_MALFORMED_RULE_TAG | + | const U_BRK_ERROR_LIMIT | - const U_BRK_ERROR_LIMIT | + | const U_REGEX_INTERNAL_ERROR | - const U_REGEX_INTERNAL_ERROR | + | const U_REGEX_ERROR_START | - const U_REGEX_ERROR_START | + | const U_REGEX_RULE_SYNTAX | - const U_REGEX_RULE_SYNTAX | + | const U_REGEX_INVALID_STATE | - const U_REGEX_INVALID_STATE | + | const U_REGEX_BAD_ESCAPE_SEQUENCE | - const U_REGEX_BAD_ESCAPE_SEQUENCE | + | const U_REGEX_PROPERTY_SYNTAX | - const U_REGEX_PROPERTY_SYNTAX | + | const U_REGEX_UNIMPLEMENTED | - const U_REGEX_UNIMPLEMENTED | + | const U_REGEX_MISMATCHED_PAREN | - const U_REGEX_MISMATCHED_PAREN | + | const U_REGEX_NUMBER_TOO_BIG | - const U_REGEX_NUMBER_TOO_BIG | + | const U_REGEX_BAD_INTERVAL | - const U_REGEX_BAD_INTERVAL | + | const U_REGEX_MAX_LT_MIN | - const U_REGEX_MAX_LT_MIN | + | const U_REGEX_INVALID_BACK_REF | - const U_REGEX_INVALID_BACK_REF | + | const U_REGEX_INVALID_FLAG | - const U_REGEX_INVALID_FLAG | + | const U_REGEX_LOOK_BEHIND_LIMIT | - const U_REGEX_LOOK_BEHIND_LIMIT | + | const U_REGEX_SET_CONTAINS_STRING | - const U_REGEX_SET_CONTAINS_STRING | + | const U_REGEX_ERROR_LIMIT | - const U_REGEX_ERROR_LIMIT | + | const U_IDNA_PROHIBITED_ERROR | - const U_IDNA_PROHIBITED_ERROR | + | const U_IDNA_ERROR_START | - const U_IDNA_ERROR_START | + | const U_IDNA_UNASSIGNED_ERROR | - const U_IDNA_UNASSIGNED_ERROR | + | const U_IDNA_CHECK_BIDI_ERROR | - const U_IDNA_CHECK_BIDI_ERROR | + | const U_IDNA_STD3_ASCII_RULES_ERROR | - const U_IDNA_STD3_ASCII_RULES_ERROR | + | const U_IDNA_ACE_PREFIX_ERROR | - const U_IDNA_ACE_PREFIX_ERROR | + | const U_IDNA_VERIFICATION_ERROR | - const U_IDNA_VERIFICATION_ERROR | + | const U_IDNA_LABEL_TOO_LONG_ERROR | - const U_IDNA_LABEL_TOO_LONG_ERROR | + | const U_IDNA_ZERO_LENGTH_LABEL_ERROR | - const U_IDNA_ZERO_LENGTH_LABEL_ERROR | + | const U_IDNA_DOMAIN_NAME_TOO_LONG_ERROR | - const U_IDNA_DOMAIN_NAME_TOO_LONG_ERROR | + | const U_IDNA_ERROR_LIMIT | - const U_IDNA_ERROR_LIMIT | + | const U_STRINGPREP_PROHIBITED_ERROR | - const U_STRINGPREP_PROHIBITED_ERROR | + | const U_STRINGPREP_UNASSIGNED_ERROR | - const U_STRINGPREP_UNASSIGNED_ERROR | + | const U_STRINGPREP_CHECK_BIDI_ERROR | - const U_STRINGPREP_CHECK_BIDI_ERROR | + | const U_ERROR_LIMIT | - const U_ERROR_LIMIT | + | const IDNA_DEFAULT | - const IDNA_DEFAULT | + | const IDNA_ALLOW_UNASSIGNED | - const IDNA_ALLOW_UNASSIGNED | + | const IDNA_USE_STD3_RULES | - const IDNA_USE_STD3_RULES | + | const IDNA_CHECK_BIDI | - const IDNA_CHECK_BIDI | + | const IDNA_CHECK_CONTEXTJ | - const IDNA_CHECK_CONTEXTJ | + | const IDNA_NONTRANSITIONAL_TO_ASCII | - const IDNA_NONTRANSITIONAL_TO_ASCII | + | const IDNA_NONTRANSITIONAL_TO_UNICODE | - const IDNA_NONTRANSITIONAL_TO_UNICODE | + | const INTL_IDNA_VARIANT_UTS46 | - const INTL_IDNA_VARIANT_UTS46 | + | const IDNA_ERROR_EMPTY_LABEL | - const IDNA_ERROR_EMPTY_LABEL | + | const IDNA_ERROR_LABEL_TOO_LONG | - const IDNA_ERROR_LABEL_TOO_LONG | + | const IDNA_ERROR_DOMAIN_NAME_TOO_LONG | - const IDNA_ERROR_DOMAIN_NAME_TOO_LONG | + | const IDNA_ERROR_LEADING_HYPHEN | - const IDNA_ERROR_LEADING_HYPHEN | + | const IDNA_ERROR_TRAILING_HYPHEN | - const IDNA_ERROR_TRAILING_HYPHEN | + | const IDNA_ERROR_HYPHEN_3_4 | - const IDNA_ERROR_HYPHEN_3_4 | + | const IDNA_ERROR_LEADING_COMBINING_MARK | - const IDNA_ERROR_LEADING_COMBINING_MARK | + | const IDNA_ERROR_DISALLOWED | - const IDNA_ERROR_DISALLOWED | + | const IDNA_ERROR_PUNYCODE | - const IDNA_ERROR_PUNYCODE | + | const IDNA_ERROR_LABEL_HAS_DOT | - const IDNA_ERROR_LABEL_HAS_DOT | + | const IDNA_ERROR_INVALID_ACE_LABEL | - const IDNA_ERROR_INVALID_ACE_LABEL | + | const IDNA_ERROR_BIDI | - const IDNA_ERROR_BIDI | + | const IDNA_ERROR_CONTEXTJ | - const IDNA_ERROR_CONTEXTJ | +??? tiny "[=100% "**fileinfo** 21 / 21"]"