← All docs

Builtins

Index of all PHP builtins supported by Elephc.

Builtins

Browse by category: Array · Buffer · Class · Database · Date · Filesystem · IO · Image · JSON · Math · Misc · Network · Pointer · Process · Regex · SPL · Streams · String · Type · Web · XML

FunctionSignatureReturnsAOTeval()
array_all()(mixed $array, mixed $callback): boolbool
array_any()(mixed $array, mixed $callback): boolbool
array_chunk()(array $array, int $length, bool $preserve_keys = false): arrayarray
array_column()(array $array, string $column_key): arrayarray
array_combine()(array $keys, array $values): arrayarray
array_count_values()(array $array): arrayarray
array_diff()(array $array, ...$arrays): arrayarray
array_diff_assoc()(array $array, ...$arrays): mixedmixed
array_diff_key()(array $array, ...$arrays): arrayarray
array_fill()(int $start_index, int $count, mixed $value): arrayarray
array_fill_keys()(array $keys, mixed $value): arrayarray
array_filter()(array $array, callable $callback = null, int $mode = 0): arrayarray
array_find()(mixed $array, mixed $callback): mixedmixed
array_flip()(array $array): arrayarray
array_intersect()(array $array, ...$arrays): arrayarray
array_intersect_assoc()(array $array, ...$arrays): mixedmixed
array_intersect_key()(array $array, ...$arrays): arrayarray
array_is_list()(mixed $array): boolbool
array_key_exists()(string $key, array $array): boolbool
array_key_first()(array $array): mixedmixed
array_key_last()(array $array): mixedmixed
array_keys()(array $array): arrayarray
array_map()(callable $callback, array $array, ...$arrays): arrayarray
array_merge()(...$arrays): arrayarray
array_merge_recursive()(...$arrays): arrayarray
array_multisort()(array $array1, int $array2): boolbool
array_pad()(array $array, int $length, mixed $value): arrayarray
array_pop()(array $array): mixedmixed
array_product()(array $array): intint
array_push()(array $array, ...$values): voidvoid
array_rand()(array $array): intint
array_reduce()(array $array, callable $callback, mixed $initial = null): intint
array_replace()(array $array, array $replacements): mixedmixed
array_replace_recursive()(array $array, array $replacements): mixedmixed
array_reverse()(array $array, bool $preserve_keys = false): arrayarray
array_search()(mixed $needle, array $haystack, bool $strict = false): mixedmixed
array_shift()(array $array): mixedmixed
array_slice()(array $array, int $offset, int $length = null, bool $preserve_keys = false): arrayarray
array_splice()(array $array, int $offset, int $length = null, array $replacement = []): arrayarray
array_sum()(array $array): intint
array_udiff()(array $array1, array $array2, callable $callback): arrayarray
array_uintersect()(array $array1, array $array2, callable $callback): arrayarray
array_unique()(array $array): arrayarray
array_unshift()(array $array, ...$values): intint
array_values()(array $array): arrayarray
array_walk()(array $array, callable $callback): voidvoid
array_walk_recursive()(array $array, callable $callback): voidvoid
arsort()(array $array): boolbool
asort()(array $array): boolbool
call_user_func()(callable $callback, ...$args): mixedmixed
call_user_func_array()(callable $callback, array $args): mixedmixed
count()(array $value, int $mode = 0): intint
current()(array $array): mixedmixed
end()(array $array): mixedmixed
in_array()(mixed $needle, array $haystack, bool $strict = false): boolbool
key()(array $array): mixedmixed
krsort()(array $array): boolbool
ksort()(array $array): boolbool
natcasesort()(array $array): boolbool
natsort()(array $array): boolbool
next()(array $array): mixedmixed
prev()(array $array): mixedmixed
range()(mixed $start, mixed $end, int $step = 1): arrayarray
reset()(array $array): mixedmixed
rsort()(array $array): boolbool
shuffle()(array $array): boolbool
sort()(array $array): boolbool
uasort()(array $array, callable $callback): boolbool
uksort()(array $array, callable $callback): boolbool
usort()(array $array, callable $callback): boolbool
buffer_free()(buffer $buffer): voidvoid
buffer_len()(buffer $buffer): intint
class_alias()(string $class, string $alias, bool $autoload = true): boolbool
class_attribute_args()(string $class_name, string $attribute_name): arrayarray
class_attribute_names()(string $class_name): arrayarray
class_exists()(string $class, bool $autoload = true): boolbool
class_get_attributes()(string $class_name): arrayarray
class_implements()(mixed $object_or_class, bool $autoload = true): mixedmixed
class_parents()(mixed $object_or_class, bool $autoload = true): mixedmixed
class_uses()(mixed $object_or_class, bool $autoload = true): mixedmixed
enum_exists()(string $enum, bool $autoload = true): boolbool
function_exists()(string $function): boolbool
get_called_class()(): mixedmixed
get_class()(object $object = null): stringstring
get_class_methods()(mixed $object_or_class): mixedmixed
get_class_vars()(mixed $class): mixedmixed
get_declared_classes()(): arrayarray
get_declared_interfaces()(): arrayarray
get_declared_traits()(): arrayarray
get_object_vars()(mixed $object): arrayarray
get_parent_class()(mixed $object_or_class = null): stringstring
interface_exists()(string $interface, bool $autoload = true): boolbool
is_a()(object $object_or_class, string $class, bool $allow_string = false): boolbool
is_subclass_of()(mixed $object_or_class, string $class, bool $allow_string = true): boolbool
method_exists()(mixed $object_or_class, string $method): boolbool
property_exists()(mixed $object_or_class, string $property): boolbool
trait_exists()(string $trait, bool $autoload = true): boolbool
mysqli_affected_rows()(mixed $mysql): intint
mysqli_autocommit()(mixed $mysql, bool $enable): boolbool
mysqli_begin_transaction()(mixed $mysql, int $flags = 0, ?string $name = null): boolbool
mysqli_character_set_name()(mixed $mysql): stringstring
mysqli_close()(mixed $mysql): boolbool
mysqli_commit()(mixed $mysql, int $flags = 0, ?string $name = null): boolbool
mysqli_connect()(?string $hostname = null, ?string $username = null, ?string $password = null, ?string $database = null, ?int $port = null, ?string $socket = null): mixedmixed
mysqli_connect_errno()(): intint
mysqli_connect_error()(): ?string?string
mysqli_data_seek()(mixed $result, int $offset): boolbool
mysqli_errno()(mixed $mysql): intint
mysqli_error()(mixed $mysql): stringstring
mysqli_error_list()(mixed $mysql): arrayarray
mysqli_escape_string()(mixed $mysql, string $string): stringstring
mysqli_execute()(mixed $statement): boolbool
mysqli_execute_query()(mixed $mysql, string $query, ?array $params = null): mixedmixed
mysqli_fetch_all()(mixed $result, int $mode = 2): arrayarray
mysqli_fetch_array()(mixed $result, int $mode = 3): ?array?array
mysqli_fetch_assoc()(mixed $result): ?array?array
mysqli_fetch_column()(mixed $result, int $column = 0): mixedmixed
mysqli_fetch_field()(mixed $result): mixedmixed
mysqli_fetch_field_direct()(mixed $result, int $index): mixedmixed
mysqli_fetch_fields()(mixed $result): arrayarray
mysqli_fetch_lengths()(mixed $result): ?array?array
mysqli_fetch_object()(mixed $result, string $class = 'stdClass', array $constructor_args = []): mixedmixed
mysqli_fetch_row()(mixed $result): ?array?array
mysqli_field_count()(mixed $mysql): intint
mysqli_field_seek()(mixed $result, int $index): boolbool
mysqli_field_tell()(mixed $result): intint
mysqli_free_result()(mixed $result): voidvoid
mysqli_get_charset()(mixed $mysql): mixedmixed
mysqli_get_client_info()(mixed $mysql): stringstring
mysqli_get_client_version()(mixed $mysql): intint
mysqli_get_host_info()(mixed $mysql): stringstring
mysqli_get_proto_info()(mixed $mysql): intint
mysqli_get_server_info()(mixed $mysql): stringstring
mysqli_get_server_version()(mixed $mysql): intint
mysqli_info()(mixed $mysql): ?string?string
mysqli_init()(): mixedmixed
mysqli_insert_id()(mixed $mysql): intint
mysqli_more_results()(mixed $mysql): boolbool
mysqli_multi_query()(mixed $mysql, string $query): boolbool
mysqli_next_result()(mixed $mysql): boolbool
mysqli_num_fields()(mixed $result): intint
mysqli_num_rows()(mixed $result): intint
mysqli_options()(mixed $mysql, int $option, mixed $value): boolbool
mysqli_ping()(mixed $mysql): boolbool
mysqli_prepare()(mixed $mysql, string $query): mixedmixed
mysqli_query()(mixed $mysql, string $query, int $result_mode = 0): mixedmixed
mysqli_real_connect()(mixed $mysql, ?string $hostname = null, ?string $username = null, ?string $password = null, ?string $database = null, ?int $port = null, ?string $socket = null, int $flags = 0): boolbool
mysqli_real_escape_string()(mixed $mysql, string $string): stringstring
mysqli_real_query()(mixed $mysql, string $query): boolbool
mysqli_release_savepoint()(mixed $mysql, string $name): boolbool
mysqli_report()(int $flags): boolbool
mysqli_rollback()(mixed $mysql, int $flags = 0, ?string $name = null): boolbool
mysqli_savepoint()(mixed $mysql, string $name): boolbool
mysqli_select_db()(mixed $mysql, string $database): boolbool
mysqli_set_charset()(mixed $mysql, string $charset): boolbool
mysqli_set_opt()(mixed $mysql, int $option, mixed $value): boolbool
mysqli_sqlstate()(mixed $mysql): stringstring
mysqli_stat()(mixed $mysql): mixedmixed
mysqli_stmt_affected_rows()(mixed $statement): intint
mysqli_stmt_bind_param()(mixed $statement, string $types, ...$vars): boolbool
mysqli_stmt_close()(mixed $statement): boolbool
mysqli_stmt_errno()(mixed $statement): intint
mysqli_stmt_error()(mixed $statement): stringstring
mysqli_stmt_error_list()(mixed $statement): arrayarray
mysqli_stmt_execute()(mixed $statement, ?array $params = null): boolbool
mysqli_stmt_field_count()(mixed $statement): intint
mysqli_stmt_free_result()(mixed $statement): voidvoid
mysqli_stmt_get_result()(mixed $statement): mixedmixed
mysqli_stmt_init()(mixed $mysql): mixedmixed
mysqli_stmt_insert_id()(mixed $statement): intint
mysqli_stmt_num_rows()(mixed $statement): intint
mysqli_stmt_param_count()(mixed $statement): intint
mysqli_stmt_prepare()(mixed $statement, string $query): boolbool
mysqli_stmt_reset()(mixed $statement): boolbool
mysqli_stmt_sqlstate()(mixed $statement): stringstring
mysqli_stmt_store_result()(mixed $statement): boolbool
mysqli_store_result()(mixed $mysql, int $mode = 0): mixedmixed
mysqli_thread_id()(mixed $mysql): intint
mysqli_thread_safe()(): boolbool
mysqli_use_result()(mixed $mysql): mixedmixed
mysqli_warning_count()(mixed $mysql): intint
pdo_drivers()(): arrayarray
cal_days_in_month()(int $calendar, int $month, int $year): intint
cal_from_jd()(int $julian_day, int $calendar): arrayarray
cal_info()(int $calendar = -1): arrayarray
cal_to_jd()(int $calendar, int $month, int $day, int $year): intint
checkdate()(int $month, int $day, int $year): boolbool
date()(string $format, ?int $timestamp = null): stringstring
date_add()(mixed $object, mixed $interval): mixedmixed
date_create()(string $datetime = 'now', mixed $timezone = null): mixedmixed
date_create_from_format()(string $format, string $datetime, mixed $timezone = null): mixedmixed
date_create_immutable()(string $datetime = 'now', mixed $timezone = null): mixedmixed
date_create_immutable_from_format()(string $format, string $datetime, mixed $timezone = null): mixedmixed
date_date_set()(mixed $object, int $year, int $month, int $day): mixedmixed
date_default_timezone_get()(): stringstring
date_default_timezone_set()(string $timezoneId): boolbool
date_diff()(mixed $baseObject, mixed $targetObject, bool $absolute = false): mixedmixed
date_format()(mixed $object, string $format): stringstring
date_get_last_errors()(): mixedmixed
date_interval_create_from_date_string()(string $datetime): mixedmixed
date_interval_format()(mixed $object, string $format): stringstring
date_isodate_set()(mixed $object, int $year, int $week, int $dayOfWeek = 1): mixedmixed
date_modify()(mixed $object, string $modifier): mixedmixed
date_offset_get()(mixed $object): intint
date_parse()(string $datetime): arrayarray
date_parse_from_format()(string $format, string $datetime): arrayarray
date_sub()(mixed $object, mixed $interval): mixedmixed
date_sun_info()(int $timestamp, float $latitude, float $longitude): arrayarray
date_sunrise()(int $timestamp, int $returnFormat = SUNFUNCS_RET_STRING, ?float $latitude = null, ?float $longitude = null, ?float $zenith = null, ?float $utcOffset = null): mixedmixed
date_sunset()(int $timestamp, int $returnFormat = SUNFUNCS_RET_STRING, ?float $latitude = null, ?float $longitude = null, ?float $zenith = null, ?float $utcOffset = null): mixedmixed
date_time_set()(mixed $object, int $hour, int $minute, int $second = 0, int $microsecond = 0): mixedmixed
date_timestamp_get()(mixed $object): intint
date_timestamp_set()(mixed $object, int $timestamp): mixedmixed
date_timezone_get()(mixed $object): mixedmixed
date_timezone_set()(mixed $object, mixed $timezone): mixedmixed
easter_date()(?int $year = null, int $mode = CAL_EASTER_DEFAULT): intint
easter_days()(?int $year = null, int $mode = CAL_EASTER_DEFAULT): intint
frenchtojd()(int $month, int $day, int $year): intint
getdate()(?int $timestamp = null): arrayarray
gettimeofday()(bool $as_float = false): mixedmixed
gmdate()(string $format, ?int $timestamp = null): stringstring
gmmktime()(int $hour, int $minute, int $second, int $month, int $day, int $year): intint
gmstrftime()(string $format, ?int $timestamp = null): mixedmixed
gregoriantojd()(int $month, int $day, int $year): intint
hrtime()(bool $as_number = false): mixedmixed
idate()(string $format, ?int $timestamp = null): mixedmixed
jddayofweek()(int $julian_day, int $mode = CAL_DOW_DAYNO): mixedmixed
jdmonthname()(int $julian_day, int $mode): stringstring
jdtofrench()(int $julian_day): stringstring
jdtogregorian()(int $julian_day): stringstring
jdtojewish()(int $julian_day, bool $hebrew = false, int $flags = 0): stringstring
jdtojulian()(int $julian_day): stringstring
jdtounix()(int $julian_day): intint
jewishtojd()(int $month, int $day, int $year): intint
juliantojd()(int $month, int $day, int $year): intint
localtime()(int $timestamp = -1, bool $associative = false): arrayarray
microtime()(bool $as_float = false): mixedmixed
mktime()(int $hour, int $minute, int $second, int $month, int $day, int $year): intint
strftime()(string $format, ?int $timestamp = null): mixedmixed
strptime()(string $timestamp, string $format): mixedmixed
strtotime()(string $datetime, ?int $baseTimestamp = null): mixedmixed
time()(): intint
timezone_abbreviations_list()(): mixedmixed
timezone_identifiers_list()(int $timezoneGroup = DateTimeZone::ALL, ?string $countryCode = null): arrayarray
timezone_location_get()(mixed $object): mixedmixed
timezone_name_from_abbr()(string $abbr, int $utcOffset = -1, int $isDST = -1): mixedmixed
timezone_name_get()(mixed $object): stringstring
timezone_offset_get()(mixed $object, mixed $datetime): intint
timezone_open()(string $timezone): mixedmixed
timezone_transitions_get()(mixed $object, int $timestampBegin = PHP_INT_MIN, int $timestampEnd = PHP_INT_MAX): mixedmixed
timezone_version_get()(): stringstring
unixtojd()(?int $timestamp = null): mixedmixed
basename()(string $path, string $suffix = ''): stringstring
chdir()(string $directory): boolbool
chgrp()(string $filename, string $group): boolbool
chmod()(string $filename, int $permissions): boolbool
chown()(string $filename, string $user): boolbool
clearstatcache()(bool $clear_realpath_cache = false, string $filename = ''): voidvoid
copy()(string $from, string $to): boolbool
dirname()(string $path, int $levels = 1): stringstring
disk_free_space()(string $directory): mixedmixed
disk_total_space()(string $directory): mixedmixed
file_exists()(string $filename): boolbool
fileatime()(string $filename): mixedmixed
filectime()(string $filename): mixedmixed
filegroup()(string $filename): mixedmixed
fileinode()(string $filename): mixedmixed
filemtime()(string $filename): mixedmixed
fileowner()(string $filename): mixedmixed
fileperms()(string $filename): mixedmixed
filesize()(string $filename): mixedmixed
filetype()(string $filename): mixedmixed
fnmatch()(string $pattern, string $filename, int $flags = 0): boolbool
getcwd()(): stringstring
getenv()`(?string $name = null, bool $local_only = false): stringarrayfalse``string
glob()(string $pattern): arrayarray
is_dir()(string $filename): boolbool
is_executable()(string $filename): boolbool
is_file()(string $filename): boolbool
is_link()(string $filename): boolbool
is_readable()(string $filename): boolbool
is_writable()(string $filename): boolbool
is_writeable()(string $filename): boolbool
lchgrp()(string $filename, string $group): boolbool
lchown()(string $filename, string $user): boolbool
link()(string $target, string $link): boolbool
linkinfo()(string $path): intint
lstat()(string $filename): mixedmixed
mkdir()(string $directory): boolbool
pathinfo()(string $path, int $flags = 15): arrayarray
putenv()(string $assignment): boolbool
readfile()(string $filename): mixedmixed
readlink()(string $path): mixedmixed
realpath()(string $path): mixedmixed
realpath_cache_get()(): arrayarray
realpath_cache_size()(): intint
rename()(string $from, string $to): boolbool
rmdir()(string $directory): boolbool
scandir()(string $directory): arrayarray
stat()(string $filename): mixedmixed
symlink()(string $target, string $link): boolbool
sys_get_temp_dir()(): stringstring
tempnam()(string $directory, string $prefix): stringstring
tmpfile()(): mixedmixed
touch()(string $filename, ?int $mtime = null, ?int $atime = null): boolbool
umask()(?int $mask = null): intint
unlink()(string $filename): boolbool
closedir()(resource $dir_handle): voidvoid
fclose()(resource $stream): boolbool
fdatasync()(resource $stream): boolbool
feof()(resource $stream): boolbool
fflush()(resource $stream): boolbool
fgetc()(resource $stream): mixedmixed
fgetcsv()(resource $stream, ?int $length = null, string $separator = ','): mixedmixed
fgets()(resource $stream): mixedmixed
file()(string $filename, int $flags = 0): mixedmixed
file_get_contents()(string $filename, bool $use_include_path = false, mixed $context = null, int $offset = 0, int $length = null): mixedmixed
file_put_contents()(string $filename, string $data): intint
flock()(resource $stream, int $operation, bool $would_block = null): boolbool
fopen()(string $filename, string $mode, bool $use_include_path = false, mixed $context = null): mixedmixed
fpassthru()(resource $stream): intint
fprintf()(resource $stream, string $format, ...$values): intint
fputcsv()(resource $stream, array $fields, string $separator = ',', string $enclosure = '"'): intint
fread()(resource $stream, int $length): stringstring
fscanf()(resource $stream, string $format, ...$vars): arrayarray
fseek()(resource $stream, int $offset, int $whence = 0): intint
fstat()(resource $stream): mixedmixed
fsync()(resource $stream): boolbool
ftell()(resource $stream): intint
ftruncate()(resource $stream, int $size): boolbool
fwrite()(resource $stream, string $data): mixedmixed
gethostbyaddr()(string $ip): mixedmixed
gethostbyname()(string $hostname): stringstring
gethostname()(): stringstring
getprotobyname()(string $protocol): mixedmixed
getprotobynumber()(int $protocol): mixedmixed
getservbyname()(string $service, string $protocol): mixedmixed
getservbyport()(int $port, string $protocol): mixedmixed
hash_file()(string $algo, string $filename, bool $binary = false): mixedmixed
ob_clean()(): boolbool
ob_end_clean()(): boolbool
ob_end_flush()(): boolbool
ob_flush()(): boolbool
ob_get_clean()(): mixedmixed
ob_get_contents()(): mixedmixed
ob_get_flush()(): mixedmixed
ob_get_length()(): mixedmixed
ob_get_level()(): intint
ob_get_status()(bool $full_status = false): arrayarray
ob_implicit_flush()(bool $enable = true): boolbool
ob_list_handlers()(): arrayarray
ob_start()(mixed $callback = null, int $chunk_size = 0, int $flags = 112): boolbool
opendir()(string $directory): mixedmixed
readdir()(resource $dir_handle): mixedmixed
rewind()(resource $stream): boolbool
rewinddir()(resource $dir_handle): voidvoid
stream_bucket_make_writeable()(mixed $brigade): mixedmixed
stream_bucket_new()(resource $stream, string $buffer): mixedmixed
stream_context_create()(array $options = null, array $params = null): mixedmixed
stream_context_get_default()(array $options = null): mixedmixed
stream_context_get_options()(resource $context): arrayarray
stream_context_get_params()(resource $context): arrayarray
stream_context_set_default()(array $options): mixedmixed
stream_context_set_option()(resource $context, string $wrapper_or_options, ?string $option_name = null, mixed $value = null): boolbool
stream_context_set_params()(resource $context, array $params): boolbool
stream_copy_to_stream()(resource $from, resource $to, ?int $length = null, int $offset = -1): mixedmixed
stream_filter_register()(string $filter_name, string $class): boolbool
stream_filter_remove()(resource $stream_filter): boolbool
stream_get_contents()(resource $stream, ?int $length = null, int $offset = -1): mixedmixed
stream_get_filters()(): arrayarray
stream_get_line()(resource $stream, int $length, string $ending = ''): stringstring
stream_get_meta_data()(resource $stream): arrayarray
stream_get_transports()(): arrayarray
stream_get_wrappers()(): arrayarray
stream_is_local()(resource $stream): boolbool
stream_isatty()(resource $stream): boolbool
stream_resolve_include_path()(string $filename): mixedmixed
stream_select()(array $read, array $write, array $except, int $seconds, int $microseconds = 0): intint
stream_set_blocking()(resource $stream, bool $enable): boolbool
stream_set_chunk_size()(resource $stream, int $size): intint
stream_set_read_buffer()(resource $stream, int $size): intint
stream_set_timeout()(resource $stream, int $seconds, int $microseconds = 0): boolbool
stream_set_write_buffer()(resource $stream, int $size): intint
stream_socket_accept()(resource $socket, float $timeout = null, string $peer_name = null): mixedmixed
stream_socket_client()(string $address): mixedmixed
stream_socket_enable_crypto()(resource $stream, bool $enable, int $crypto_method = null, resource $session_stream = null): boolbool
stream_socket_get_name()(resource $socket, bool $remote): mixedmixed
stream_socket_pair()(int $domain, int $type, int $protocol): mixedmixed
stream_socket_recvfrom()(resource $socket, int $length, int $flags = 0, string $address = ''): mixedmixed
stream_socket_sendto()(resource $socket, string $data, int $flags = 0, string $address = ''): mixedmixed
stream_socket_server()(string $address): mixedmixed
stream_socket_shutdown()(resource $stream, int $mode): boolbool
stream_supports_lock()(resource $stream): boolbool
stream_wrapper_register()(string $protocol, string $class, int $flags = 0): boolbool
stream_wrapper_restore()(string $protocol): boolbool
stream_wrapper_unregister()(string $protocol): boolbool
vfprintf()(resource $stream, string $format, array $values): intint
cairo_arc()(mixed $context, float $xc, float $yc, float $radius, float $angle1, float $angle2): voidvoid
cairo_arc_negative()(mixed $context, float $xc, float $yc, float $radius, float $angle1, float $angle2): voidvoid
cairo_close_path()(mixed $context): voidvoid
cairo_create()(mixed $surface): mixedmixed
cairo_curve_to()(mixed $context, float $x1, float $y1, float $x2, float $y2, float $x3, float $y3): voidvoid
cairo_fill()(mixed $context): voidvoid
cairo_fill_preserve()(mixed $context): voidvoid
cairo_get_current_point()(mixed $context): arrayarray
cairo_identity_matrix()(mixed $context): voidvoid
cairo_image_surface_create()(int $format, int $width, int $height): mixedmixed
cairo_image_surface_create_from_png()(string $filename): mixedmixed
cairo_image_surface_get_height()(mixed $surface): intint
cairo_image_surface_get_width()(mixed $surface): intint
cairo_line_to()(mixed $context, float $x, float $y): voidvoid
cairo_matrix_init_identity()(): mixedmixed
cairo_matrix_init_rotate()(float $radians): mixedmixed
cairo_matrix_init_scale()(float $sx, float $sy): mixedmixed
cairo_matrix_init_translate()(float $tx, float $ty): mixedmixed
cairo_matrix_multiply()(mixed $m1, mixed $m2): mixedmixed
cairo_matrix_transform_point()(mixed $matrix, float $x, float $y): arrayarray
cairo_move_to()(mixed $context, float $x, float $y): voidvoid
cairo_new_path()(mixed $context): voidvoid
cairo_new_sub_path()(mixed $context): voidvoid
cairo_paint()(mixed $context): voidvoid
cairo_pattern_add_color_stop_rgb()(mixed $pattern, float $offset, float $red, float $green, float $blue): voidvoid
cairo_pattern_add_color_stop_rgba()(mixed $pattern, float $offset, float $red, float $green, float $blue, float $alpha): voidvoid
cairo_pattern_create_linear()(float $x0, float $y0, float $x1, float $y1): mixedmixed
cairo_pattern_create_radial()(float $cx0, float $cy0, float $radius0, float $cx1, float $cy1, float $radius1): mixedmixed
cairo_pattern_create_rgb()(float $red, float $green, float $blue): mixedmixed
cairo_pattern_create_rgba()(float $red, float $green, float $blue, float $alpha): mixedmixed
cairo_rectangle()(mixed $context, float $x, float $y, float $width, float $height): voidvoid
cairo_restore()(mixed $context): voidvoid
cairo_rotate()(mixed $context, float $angle): voidvoid
cairo_save()(mixed $context): voidvoid
cairo_scale()(mixed $context, float $sx, float $sy): voidvoid
cairo_set_fill_rule()(mixed $context, int $fillRule): voidvoid
cairo_set_line_cap()(mixed $context, int $lineCap): voidvoid
cairo_set_line_join()(mixed $context, int $lineJoin): voidvoid
cairo_set_line_width()(mixed $context, float $width): voidvoid
cairo_set_matrix()(mixed $context, mixed $matrix): voidvoid
cairo_set_source()(mixed $context, mixed $pattern): voidvoid
cairo_set_source_rgb()(mixed $context, float $red, float $green, float $blue): voidvoid
cairo_set_source_rgba()(mixed $context, float $red, float $green, float $blue, float $alpha): voidvoid
cairo_stroke()(mixed $context): voidvoid
cairo_stroke_preserve()(mixed $context): voidvoid
cairo_surface_write_to_png()(mixed $surface, string $filename): voidvoid
cairo_transform()(mixed $context, mixed $matrix): voidvoid
cairo_translate()(mixed $context, float $tx, float $ty): voidvoid
exif_imagetype()(string $filename): mixedmixed
exif_read_data()(string $filename, ?string $required_sections = null, bool $as_arrays = false, bool $read_thumbnail = false): mixedmixed
exif_tagname()(int $index): mixedmixed
exif_thumbnail()(string $filename, mixed $width = 0, mixed $height = 0, mixed $image_type = 0): mixedmixed
gd_info()(): arrayarray
getimagesize()(string $filename): mixedmixed
getimagesizefromstring()(string $data): mixedmixed
image_type_to_extension()(int $image_type, bool $include_dot = true): mixedmixed
image_type_to_mime_type()(int $image_type): stringstring
imageaffine()(mixed $image, array $affine, ?array $clip = null): mixedmixed
imageaffinematrixconcat()(array $matrix1, array $matrix2): arrayarray
imagealphablending()(mixed $image, bool $enable): boolbool
imageantialias()(mixed $image, bool $enable): boolbool
imagearc()(mixed $image, int $center_x, int $center_y, int $width, int $height, int $start_angle, int $end_angle, int $color): boolbool
imagebmp()(mixed $image, ?string $file = null, bool $compressed = true): boolbool
imagechar()(mixed $image, int $font, int $x, int $y, string $char, int $color): boolbool
imagecharup()(mixed $image, int $font, int $x, int $y, string $char, int $color): boolbool
imagecolorallocate()(mixed $image, int $red, int $green, int $blue): intint
imagecolorallocatealpha()(mixed $image, int $red, int $green, int $blue, int $alpha): intint
imagecolorat()(mixed $image, int $x, int $y): intint
imagecolorclosest()(mixed $image, int $red, int $green, int $blue): intint
imagecolorclosestalpha()(mixed $image, int $red, int $green, int $blue, int $alpha): intint
imagecolorclosesthwb()(mixed $image, int $red, int $green, int $blue): intint
imagecolordeallocate()(mixed $image, int $color): boolbool
imagecolorexact()(mixed $image, int $red, int $green, int $blue): intint
imagecolorexactalpha()(mixed $image, int $red, int $green, int $blue, int $alpha): intint
imagecolormatch()(mixed $image1, mixed $image2): boolbool
imagecolorresolve()(mixed $image, int $red, int $green, int $blue): intint
imagecolorresolvealpha()(mixed $image, int $red, int $green, int $blue, int $alpha): intint
imagecolorset()(mixed $image, int $color, int $red, int $green, int $blue, int $alpha = 0): boolbool
imagecolorsforindex()(mixed $image, int $color): arrayarray
imagecolorstotal()(mixed $image): intint
imagecolortransparent()(mixed $image, ?int $color = null): intint
imageconvolution()(mixed $image, array $matrix, float $divisor, float $offset): boolbool
imagecopy()(mixed $dst_image, mixed $src_image, int $dst_x, int $dst_y, int $src_x, int $src_y, int $src_width, int $src_height): boolbool
imagecopymerge()(mixed $dst_image, mixed $src_image, int $dst_x, int $dst_y, int $src_x, int $src_y, int $src_width, int $src_height, int $pct): boolbool
imagecopymergegray()(mixed $dst_image, mixed $src_image, int $dst_x, int $dst_y, int $src_x, int $src_y, int $src_width, int $src_height, int $pct): boolbool
imagecopyresampled()(mixed $dst_image, mixed $src_image, int $dst_x, int $dst_y, int $src_x, int $src_y, int $dst_width, int $dst_height, int $src_width, int $src_height): boolbool
imagecopyresized()(mixed $dst_image, mixed $src_image, int $dst_x, int $dst_y, int $src_x, int $src_y, int $dst_width, int $dst_height, int $src_width, int $src_height): boolbool
imagecreate()(int $width, int $height): mixedmixed
imagecreatefrombmp()(string $filename): mixedmixed
imagecreatefromgif()(string $filename): mixedmixed
imagecreatefromjpeg()(string $filename): mixedmixed
imagecreatefrompng()(string $filename): mixedmixed
imagecreatefromstring()(string $data): mixedmixed
imagecreatefromtga()(string $filename): mixedmixed
imagecreatefromwebp()(string $filename): mixedmixed
imagecreatetruecolor()(int $width, int $height): mixedmixed
imagecrop()(mixed $image, mixed $rect = ['x' => 0, 'y' => 0, 'width' => 0, 'height' => 0]): mixedmixed
imagecropauto()(mixed $image, int $mode = IMG_CROP_DEFAULT, float $threshold = 0.5, int $color = -1): mixedmixed
imagedashedline()(mixed $image, int $x1, int $y1, int $x2, int $y2, int $color): boolbool
imagedestroy()(mixed $image): boolbool
imageellipse()(mixed $image, int $center_x, int $center_y, int $width, int $height, int $color): boolbool
imagefill()(mixed $image, int $x, int $y, int $color): boolbool
imagefilledarc()(mixed $image, int $center_x, int $center_y, int $width, int $height, int $start_angle, int $end_angle, int $color, int $style): boolbool
imagefilledellipse()(mixed $image, int $center_x, int $center_y, int $width, int $height, int $color): boolbool
imagefilledpolygon()(mixed $image, array $points, int $color): boolbool
imagefilledrectangle()(mixed $image, int $x1, int $y1, int $x2, int $y2, int $color): boolbool
imagefilltoborder()(mixed $image, int $x, int $y, int $border_color, int $color): boolbool
imagefilter()(mixed $image, int $filter, int $arg1 = 0, int $arg2 = 0, int $arg3 = 0, int $arg4 = 0): boolbool
imageflip()(mixed $image, int $mode): boolbool
imagefontheight()(int $font): intint
imagefontwidth()(int $font): intint
imagegammacorrect()(mixed $image, float $input_gamma, float $output_gamma): boolbool
imagegetinterpolation()(mixed $image): intint
imagegif()(mixed $image, ?string $file = null): boolbool
imageinterlace()(mixed $image, ?bool $enable = null): intint
imageistruecolor()(mixed $image): boolbool
imagejpeg()(mixed $image, ?string $file = null, int $quality = -1): boolbool
imagelayereffect()(mixed $image, int $effect): boolbool
imageline()(mixed $image, int $x1, int $y1, int $x2, int $y2, int $color): boolbool
imageopenpolygon()(mixed $image, array $points, int $color): boolbool
imagepalettecopy()(mixed $dst, mixed $src): boolbool
imagepalettetotruecolor()(mixed $image): boolbool
imagepng()(mixed $image, ?string $file = null, int $quality = -1, int $filters = -1): boolbool
imagepolygon()(mixed $image, array $points, int $color): boolbool
imagerectangle()(mixed $image, int $x1, int $y1, int $x2, int $y2, int $color): boolbool
imageresolution()(mixed $image, ?int $resolution_x = null, ?int $resolution_y = null): mixedmixed
imagerotate()(mixed $image, float $angle, int $background_color, int $ignore_transparent = 0): mixedmixed
imagesavealpha()(mixed $image, bool $enable): boolbool
imagescale()(mixed $image, int $width, int $height = -1, int $mode = IMG_BILINEAR_FIXED): mixedmixed
imagesetinterpolation()(mixed $image, int $method = IMG_BILINEAR_FIXED): boolbool
imagesetpixel()(mixed $image, int $x, int $y, int $color): boolbool
imagesetthickness()(mixed $image, int $thickness): boolbool
imagestring()(mixed $image, int $font, int $x, int $y, string $string, int $color): boolbool
imagestringup()(mixed $image, int $font, int $x, int $y, string $string, int $color): boolbool
imagesx()(mixed $image): intint
imagesy()(mixed $image): intint
imagetruecolortopalette()(mixed $image, bool $dither, int $num_colors): boolbool
imagetypes()(): intint
imagewebp()(mixed $image, ?string $file = null, int $quality = -1): boolbool
iptcembed()(string $iptcdata, string $jpeg_file_name, int $spool = 0): mixedmixed
iptcparse()(string $iptcblock): mixedmixed
read_exif_data()(string $filename, ?string $required_sections = null, bool $as_arrays = false, bool $read_thumbnail = false): mixedmixed
json_decode()(string $json, ?bool $associative = null, int $depth = 512, int $flags = 0): mixedmixed
json_encode()(mixed $value, int $flags = 0, int $depth = 512): stringstring
json_last_error()(): intint
json_last_error_msg()(): stringstring
json_validate()(string $json, int $depth = 512, int $flags = 0): boolbool
abs()(int $num): mixedmixed
acos()(float $num): floatfloat
asin()(float $num): floatfloat
atan()(float $num): floatfloat
atan2()(float $y, float $x): floatfloat
base_convert()(string $num, int $from_base, int $to_base): stringstring
bcadd()(string $num1, string $num2, ?int $scale = null): stringstring
bcceil()(string $num): stringstring
bccomp()(string $num1, string $num2, ?int $scale = null): intint
bcdiv()(string $num1, string $num2, ?int $scale = null): stringstring
bcdivmod()(string $num1, string $num2, ?int $scale = null): arrayarray
bcfloor()(string $num): stringstring
bcmod()(string $num1, string $num2, ?int $scale = null): stringstring
bcmul()(string $num1, string $num2, ?int $scale = null): stringstring
bcpow()(string $num, string $exponent, ?int $scale = null): stringstring
bcpowmod()(string $num, string $exponent, string $modulus, ?int $scale = null): stringstring
bcround()(string $num, int $precision = 0, int $mode = 1): stringstring
bcscale()(?int $scale = null): intint
bcsqrt()(string $num, ?int $scale = null): stringstring
bcsub()(string $num1, string $num2, ?int $scale = null): stringstring
bindec()(string $binary_string): mixedmixed
ceil()(float $num): floatfloat
clamp()(int $value, int $min, int $max): mixedmixed
cos()(float $num): floatfloat
cosh()(float $num): floatfloat
decbin()(int $num): stringstring
dechex()(int $num): stringstring
decoct()(int $num): stringstring
deg2rad()(float $num): floatfloat
exp()(float $num): floatfloat
fdiv()(float $num1, float $num2): floatfloat
floor()(float $num): floatfloat
fmod()(float $num1, float $num2): floatfloat
hexdec()(string $hex_string): mixedmixed
hypot()(float $x, float $y): floatfloat
intdiv()(int $num1, int $num2): intint
is_finite()(float $num): boolbool
is_infinite()(float $num): boolbool
is_nan()(float $num): boolbool
log()(float $num, float $base = 2.718281828459045): floatfloat
log10()(float $num): floatfloat
log2()(float $num): floatfloat
max()(mixed $value, ...$values): mixedmixed
min()(mixed $value, ...$values): mixedmixed
mt_rand()(int $min, int $max): intint
octdec()(string $octal_string): mixedmixed
pi()(): floatfloat
pow()(float $num, float $exponent): floatfloat
rad2deg()(float $num): floatfloat
rand()(int $min, int $max): intint
random_int()(int $min, int $max): intint
round()(float $num, int $precision = 0, int $mode = 1): floatfloat
sin()(float $num): floatfloat
sinh()(float $num): floatfloat
sqrt()(float $num): floatfloat
tan()(float $num): floatfloat
tanh()(float $num): floatfloat
constant()(string $name): mixedmixed
define()(string $constant_name, mixed $value): boolbool
defined()(string $constant_name): boolbool
empty()(mixed $value): boolbool
extension_loaded()(string $extension): boolbool
get_loaded_extensions()(bool $zend_extensions = false): arrayarray
header()(string $header, bool $replace = true, int $response_code = 0): voidvoid
http_response_code()(int $response_code = 0): intint
ini_restore()(string $option): voidvoid
isset()(mixed $var, ...$vars): boolbool
opcache_compile_file()(mixed $filename): boolbool
opcache_get_configuration()(): arrayarray
opcache_get_status()(mixed $include_scripts = true): mixedmixed
opcache_invalidate()(mixed $filename, mixed $force = false): boolbool
opcache_is_script_cached()(mixed $filename): boolbool
opcache_is_script_cached_in_file_cache()(mixed $filename): boolbool
opcache_jit_blacklist()(mixed $closure): voidvoid
opcache_reset()(): boolbool
pcntl_alarm()(int $seconds): intint
pcntl_async_signals()(bool $enable = null): boolbool
pcntl_daemon()(bool $no_chdir = false, bool $no_close = false): boolbool
pcntl_errno()(): intint
pcntl_exec()(string $path, mixed $args = [], mixed $env_vars = []): boolbool
pcntl_fork()(): intint
pcntl_get_last_error()(): intint
pcntl_getcpu()(): intint
pcntl_getcpuaffinity()(int $process_id = null): mixedmixed
pcntl_getpriority()(int $process_id = null, int $mode = 0): mixedmixed
pcntl_getqos_class()(): mixedmixed
pcntl_setcpuaffinity()(int $process_id = null, mixed $cpu_ids = []): boolbool
pcntl_setns()(int $process_id = null, int $nstype = 1073741824): boolbool
pcntl_setpriority()(int $priority, int $process_id = null, int $mode = 0): boolbool
pcntl_setqos_class()(mixed $qos_class): voidvoid
pcntl_signal()(int $signal, mixed $handler, bool $restart_syscalls = true): boolbool
pcntl_signal_dispatch()(): boolbool
pcntl_signal_get_handler()(int $signal): mixedmixed
pcntl_sigprocmask()(int $mode, mixed $signals, mixed $old_signals = []): boolbool
pcntl_sigtimedwait()(mixed $signals, mixed $info = [], int $seconds = 0, int $nanoseconds = 0): mixedmixed
pcntl_sigwaitinfo()(mixed $signals, mixed $info = []): mixedmixed
pcntl_strerror()(int $error_code): stringstring
pcntl_unshare()(int $flags): boolbool
pcntl_wait()(mixed $status, int $flags = 0, mixed $resource_usage = []): intint
pcntl_waitid()(int $idtype = 0, int $id = null, mixed $info = [], int $flags = 4, mixed $resource_usage = []): boolbool
pcntl_waitpid()(int $process_id, mixed $status, int $flags = 0, mixed $resource_usage = []): intint
pcntl_wexitstatus()(int $status): mixedmixed
pcntl_wifcontinued()(int $status): boolbool
pcntl_wifexited()(int $status): boolbool
pcntl_wifsignaled()(int $status): boolbool
pcntl_wifstopped()(int $status): boolbool
pcntl_wstopsig()(int $status): mixedmixed
pcntl_wtermsig()(int $status): mixedmixed
php_sapi_name()(): stringstring
php_uname()(string $mode = 'a'): stringstring
phpversion()`(?string $extension = null): stringfalse``stringfalse`
posix_setpgid()(int $process_id, int $process_group_id): boolbool
posix_setsid()(): intint
print_r()(mixed $value, bool $return = false): mixedmixed
serialize()(mixed $value): stringstring
unserialize()(string $data, mixed $options = []): mixedmixed
unset()(mixed $var, ...$vars): voidvoid
var_dump()(mixed $value, ...$values): voidvoid
zend_version()(): stringstring
curl_close()(CurlHandle $handle): voidvoid
curl_copy_handle()(CurlHandle $handle): CurlHandleCurlHandle
curl_errno()(CurlHandle $handle): intint
curl_error()(CurlHandle $handle): stringstring
curl_escape()(CurlHandle $handle, string $string): stringstring
curl_exec()`(CurlHandle $handle): stringbool``stringbool`
curl_getinfo()(CurlHandle $handle, ?int $option = null): mixedmixed
curl_init()(?string $url = null): CurlHandleCurlHandle
curl_multi_add_handle()(CurlMultiHandle $multi_handle, mixed $handle): intint
curl_multi_close()(CurlMultiHandle $multi_handle): voidvoid
curl_multi_errno()(CurlMultiHandle $multi_handle): intint
curl_multi_exec()(CurlMultiHandle $multi_handle, int $still_running): intint
curl_multi_get_handles()(CurlMultiHandle $multi_handle): arrayarray
curl_multi_getcontent()(mixed $handle): ?string?string
curl_multi_info_read()(CurlMultiHandle $multi_handle, ?int $queued_messages = null): mixedmixed
curl_multi_init()(): CurlMultiHandleCurlMultiHandle
curl_multi_remove_handle()(CurlMultiHandle $multi_handle, mixed $handle): intint
curl_multi_select()(CurlMultiHandle $multi_handle, float $timeout = 1.0): intint
curl_multi_setopt()(CurlMultiHandle $multi_handle, int $option, mixed $value): boolbool
curl_multi_strerror()(int $error_code): stringstring
curl_pause()(CurlHandle $handle, int $flags): intint
curl_reset()(CurlHandle $handle): voidvoid
curl_setopt()(CurlHandle $handle, int $option, mixed $value): boolbool
curl_setopt_array()(CurlHandle $handle, array $options): boolbool
curl_share_close()(CurlShareHandle $share_handle): voidvoid
curl_share_errno()(CurlShareHandle $share_handle): intint
curl_share_init()(): CurlShareHandleCurlShareHandle
curl_share_init_persistent()(array $share_options): CurlSharePersistentHandleCurlSharePersistentHandle
curl_share_setopt()(CurlShareHandle $share_handle, int $option, mixed $value): boolbool
curl_share_strerror()(int $error_code): stringstring
curl_strerror()(int $error_code): stringstring
curl_unescape()(CurlHandle $handle, string $string): stringstring
curl_upkeep()(CurlHandle $handle): boolbool
curl_version()(): mixedmixed
buffer_new()(int $length): mixedmixed
ptr()(mixed $value): pointerpointer
ptr_get()(pointer $pointer): intint
ptr_is_null()(pointer $pointer): boolbool
ptr_null()(): pointerpointer
ptr_offset()(pointer $pointer, int $offset): pointerpointer
ptr_read16()(pointer $pointer): intint
ptr_read32()(pointer $pointer): intint
ptr_read8()(pointer $pointer): intint
ptr_read_string()(pointer $pointer, int $length): stringstring
ptr_set()(pointer $pointer, mixed $value): voidvoid
ptr_sizeof()(string $type): intint
ptr_write16()(pointer $pointer, int $value): voidvoid
ptr_write32()(pointer $pointer, int $value): voidvoid
ptr_write8()(pointer $pointer, int $value): voidvoid
ptr_write_string()(pointer $pointer, string $string): intint
zval_free()(pointer $zval): voidvoid
zval_pack()(mixed $value): pointerpointer
zval_type()(pointer $zval): intint
zval_unpack()(pointer $zval): mixedmixed
die()(int $status = 0): voidvoid
exec()(string $command): stringstring
exit()(int $status = 0): voidvoid
passthru()(string $command): voidvoid
pclose()(resource $handle): intint
popen()(string $command, string $mode): mixedmixed
readline()(?string $prompt = null): mixedmixed
shell_exec()(string $command): stringstring
sleep()(int $seconds): intint
system()(string $command): stringstring
usleep()(int $microseconds): voidvoid
mb_ereg_match()(string $pattern, string $subject, ?string $options = null): boolbool
preg_match()(string $pattern, string $subject, array $matches = []): intint
preg_match_all()(string $pattern, string $subject): intint
preg_replace()(string $pattern, string $replacement, string $subject): stringstring
preg_replace_callback()(string $pattern, callable $callback, string $subject): stringstring
preg_split()(string $pattern, string $subject, int $limit = -1, int $flags = 0): arrayarray
iterator_apply()(traversable $iterator, callable $callback, array $args = null): intint
iterator_count()(traversable $iterator): intint
iterator_to_array()(traversable $iterator, bool $preserve_keys = true): arrayarray
spl_autoload()(string $class, string $file_extensions = null): voidvoid
spl_autoload_call()(string $class): voidvoid
spl_autoload_extensions()(string $file_extensions = null): stringstring
spl_autoload_functions()(): arrayarray
spl_autoload_register()(callable $callback = null, bool $throw = true, bool $prepend = false): boolbool
spl_autoload_unregister()(callable $callback): boolbool
spl_classes()(): arrayarray
spl_object_hash()(object $object): stringstring
spl_object_id()(object $object): intint
fsockopen()(string $hostname, int $port, int $error_code = null, string $error_message = null, float $timeout = null): mixedmixed
pfsockopen()(string $hostname, int $port, int $error_code = null, string $error_message = null, float $timeout = null): mixedmixed
stream_bucket_append()(mixed $brigade, mixed $bucket): voidvoid
stream_bucket_prepend()(mixed $brigade, mixed $bucket): voidvoid
stream_filter_append()(resource $stream, string $filtername, int $read_write = 3, mixed $params = null): mixedmixed
stream_filter_prepend()(resource $stream, string $filtername, int $read_write = 3, mixed $params = null): mixedmixed
addslashes()(string $string): stringstring
base64_decode()(string $string, bool $strict = false): mixedmixed
base64_encode()(string $string): stringstring
bin2hex()(string $string): stringstring
chop()(string $string, string $characters = ' \n\r\t\x0b\x0c\x00'): stringstring
chr()(int $codepoint): stringstring
chunk_split()(string $string, int $length = 76, string $separator = '\r\n'): stringstring
count_chars()`(string $string, int $mode = 0): arraystring``arraystring`
crc32()(string $string): intint
explode()(string $separator, string $string, int $limit = PHP_INT_MAX): arrayarray
grapheme_strrev()(string $string): mixedmixed
gzcompress()(string $data, int $level = -1): stringstring
gzdeflate()(string $data, int $level = -1): stringstring
gzinflate()(string $data, int $max_length = 0): mixedmixed
gzuncompress()(string $data, int $max_length = 0): mixedmixed
hash()(string $algo, string $data, bool $binary = false): stringstring
hash_algos()(): arrayarray
hash_copy()(HashContext $context): HashContextHashContext
hash_equals()(string $known_string, string $user_string): boolbool
hash_final()(HashContext $context, bool $binary = false): stringstring
hash_hmac()(string $algo, string $data, string $key, bool $binary = false): stringstring
hash_init()(string $algo): HashContextHashContext
hash_update()(HashContext $context, string $data): boolbool
hex2bin()(string $string): stringstring
html_entity_decode()(string $string): stringstring
htmlentities()(string $string, int $flags = 11, string $encoding = 'UTF-8'): stringstring
htmlspecialchars()(string $string, int $flags = 11, string $encoding = 'UTF-8'): stringstring
iconv()(string $from_encoding, string $to_encoding, string $string): mixedmixed
iconv_get_encoding()(string $type = 'all'): mixedmixed
iconv_mime_decode()(string $string, int $mode = 0, ?string $encoding = null): mixedmixed
iconv_mime_decode_headers()(string $headers, int $mode = 0, ?string $encoding = null): mixedmixed
iconv_mime_encode()(string $field_name, string $field_value, mixed $options = []): mixedmixed
iconv_set_encoding()(string $type, string $encoding): boolbool
iconv_strlen()(string $string, ?string $encoding = null): mixedmixed
iconv_strpos()(string $haystack, string $needle, int $offset = 0, ?string $encoding = null): mixedmixed
iconv_strrpos()(string $haystack, string $needle, ?string $encoding = null): mixedmixed
iconv_substr()(string $string, int $offset, ?int $length = null, ?string $encoding = null): mixedmixed
implode()(string $separator, array $array = null): stringstring
inet_ntop()(string $ip): mixedmixed
inet_pton()(string $ip): mixedmixed
ip2long()(string $ip): mixedmixed
join()(mixed $separator, mixed $array = null): stringstring
lcfirst()(string $string): stringstring
long2ip()(int $ip): stringstring
ltrim()(string $string, string $characters = ' \n\r\t\x0b\x0c\x00'): stringstring
mb_strlen()(string $string, ?string $encoding = null): intint
md5()(string $string, bool $binary = false): stringstring
nl2br()(string $string): stringstring
number_format()(float $num, int $decimals = 0, string $decimal_separator = '.', string $thousands_separator = ','): stringstring
openssl_cipher_iv_length()(string $cipher_algo): mixedmixed
openssl_decrypt()(string $data, string $cipher_algo, string $passphrase, int $options = 0, string $iv = '', mixed $tag = null, string $aad = ''): mixedmixed
openssl_encrypt()(string $data, string $cipher_algo, string $passphrase, int $options = 0, string $iv = '', mixed $tag = null, string $aad = '', int $tag_length = 16): mixedmixed
openssl_get_cipher_methods()(bool $aliases = false): arrayarray
ord()(string $character): intint
parse_url()(string $url, int $component = -1): mixedmixed
printf()(string $format, ...$values): intint
quoted_printable_encode()(string $string): stringstring
quotemeta()(string $string): stringstring
rawurldecode()(string $string): stringstring
rawurlencode()(string $string): stringstring
rtrim()(string $string, string $characters = ' \n\r\t\x0b\x0c\x00'): stringstring
sha1()(string $string, bool $binary = false): stringstring
sprintf()(string $format, ...$values): stringstring
sscanf()(string $string, string $format, ...$vars): arrayarray
str_contains()(string $haystack, string $needle): boolbool
str_ends_with()(string $haystack, string $needle): boolbool
str_ireplace()(string $search, string $replace, string $subject, int $count = null): stringstring
str_pad()(string $string, int $length, string $pad_string = ' ', int $pad_type = 1): stringstring
str_repeat()(string $string, int $times): stringstring
str_replace()(string $search, string $replace, string $subject, int $count = null): stringstring
str_split()(string $string, int $length = 1): arrayarray
str_starts_with()(string $haystack, string $needle): boolbool
str_word_count()`(string $string, int $format = 0, ?string $characters = null): arrayint``arrayint`
strcasecmp()(string $string1, string $string2): intint
strcmp()(string $string1, string $string2): intint
stripos()(string $haystack, string $needle, int $offset = 0): mixedmixed
stripslashes()(string $string): stringstring
strlen()(string $string): intint
strncasecmp()(string $string1, string $string2, int $length): intint
strncmp()(string $string1, string $string2, int $length): intint
strpos()(string $haystack, string $needle, int $offset = 0): mixedmixed
strrev()(string $string): stringstring
strripos()(string $haystack, string $needle, int $offset = 0): mixedmixed
strrpos()(string $haystack, string $needle, int $offset = 0): mixedmixed
strstr()(string $haystack, string $needle, bool $before_needle = false): mixedmixed
strtolower()(string $string): stringstring
strtoupper()(string $string): stringstring
strtr()`(string $string, arraystring $from, ?string $to = null): string`string
substr()(string $string, int $offset, ?int $length = null): stringstring
substr_count()(string $haystack, string $needle, int $offset = 0, mixed $length = null): intint
substr_replace()(string $string, string $replace, int $offset, int $length = null): stringstring
trim()(string $string, string $characters = ' \n\r\t\x0b\x0c\x00'): stringstring
ucfirst()(string $string): stringstring
ucwords()(string $string, string $separators = ' \t\r\n\x0c\x0b'): stringstring
urldecode()(string $string): stringstring
urlencode()(string $string): stringstring
vprintf()(string $format, array $values): intint
vsprintf()(string $format, array $values): stringstring
wordwrap()(string $string, int $width = 75, string $break = '\n', bool $cut_long_words = false): stringstring
boolval()(mixed $value): boolbool
ctype_alnum()(string $text): boolbool
ctype_alpha()(string $text): boolbool
ctype_digit()(string $text): boolbool
ctype_space()(string $text): boolbool
floatval()(mixed $value): floatfloat
get_resource_id()(resource $resource): intint
get_resource_type()(resource $resource): stringstring
gettype()(mixed $value): stringstring
intval()(mixed $value, int $base = 10): intint
is_array()(mixed $value): boolbool
is_bool()(mixed $value): boolbool
is_callable()(mixed $value): boolbool
is_double()(mixed $value): boolbool
is_float()(mixed $value): boolbool
is_int()(mixed $value): boolbool
is_integer()(mixed $value): boolbool
is_iterable()(mixed $value): boolbool
is_long()(mixed $value): boolbool
is_null()(mixed $value): boolbool
is_numeric()(mixed $value): boolbool
is_object()(mixed $value): boolbool
is_real()(mixed $value): boolbool
is_resource()(mixed $value): boolbool
is_scalar()(mixed $value): boolbool
is_string()(mixed $value): boolbool
settype()(mixed $var, string $type): boolbool
strval()(mixed $value): stringstring
var_export()(mixed $value, bool $return = false): mixedmixed
error_log()(string $message, int $message_type = 0, ?string $destination = null, ?string $additional_headers = null): boolbool
ini_get()(string $option): mixedmixed
ini_get_all()(?string $extension = null, bool $details = true): mixedmixed
ini_set()(string $option, mixed $value): mixedmixed
session_abort()(): boolbool
session_cache_expire()(?int $value = null): mixedmixed
session_cache_limiter()(?string $value = null): mixedmixed
session_commit()(): boolbool
session_create_id()(string $prefix = ''): mixedmixed
session_decode()(string $data): boolbool
session_destroy()(): boolbool
session_encode()(): mixedmixed
session_gc()(): mixedmixed
session_get_cookie_params()(): arrayarray
session_id()(?string $id = null): mixedmixed
session_module_name()(?string $module = null): mixedmixed
session_name()(?string $name = null): mixedmixed
session_regenerate_id()(bool $delete_old = false): boolbool
session_register_shutdown()(): voidvoid
session_reset()(): boolbool
session_save_path()(?string $path = null): mixedmixed
session_set_cookie_params()(...$args): boolbool
session_set_save_handler()(mixed $handler_or_open = null, mixed $register_or_close = true, mixed $read = null, mixed $write = null, mixed $destroy = null, mixed $gc = null, mixed $create_sid = null, mixed $validate_id = null, mixed $update_timestamp = null): boolbool
session_start()(mixed $options = []): boolbool
session_status()(): intint
session_unset()(): boolbool
session_write_close()(): boolbool
setcookie()(mixed $name, mixed $value = '', mixed $expires = 0, mixed $path = '', mixed $domain = '', mixed $secure = false, mixed $httponly = false): mixedmixed
setrawcookie()(mixed $name, mixed $value = '', mixed $expires = 0, mixed $path = '', mixed $domain = '', mixed $secure = false, mixed $httponly = false): mixedmixed
trigger_error()(string $message, int $error_level = E_USER_NOTICE): boolbool
xml_error_string()(int $error_code): ?string?string
xml_get_current_byte_index()(mixed $parser): intint
xml_get_current_column_number()(mixed $parser): intint
xml_get_current_line_number()(mixed $parser): intint
xml_get_error_code()(mixed $parser): intint
xml_parse()(mixed $parser, string $data, bool $is_final = false): intint
xml_parse_into_struct()(mixed $parser, string $data, mixed $values, mixed $index = null): intint
xml_parser_create()(?string $encoding = null): mixedmixed
xml_parser_create_ns()(?string $encoding = null, string $separator = ':'): mixedmixed
xml_parser_free()(mixed $parser): boolbool
xml_parser_get_option()(mixed $parser, int $option): mixedmixed
xml_parser_set_option()(mixed $parser, int $option, mixed $value): boolbool
xml_set_character_data_handler()(mixed $parser, mixed $handler): boolbool
xml_set_default_handler()(mixed $parser, mixed $handler): boolbool
xml_set_element_handler()(mixed $parser, mixed $start_handler, mixed $end_handler): boolbool
xml_set_end_namespace_decl_handler()(mixed $parser, mixed $handler): boolbool
xml_set_external_entity_ref_handler()(mixed $parser, mixed $handler): boolbool
xml_set_notation_decl_handler()(mixed $parser, mixed $handler): boolbool
xml_set_object()(mixed $parser, mixed $object): boolbool
xml_set_processing_instruction_handler()(mixed $parser, mixed $handler): boolbool
xml_set_start_namespace_decl_handler()(mixed $parser, mixed $handler): boolbool
xml_set_unparsed_entity_decl_handler()(mixed $parser, mixed $handler): boolbool
xmlwriter_end_attribute()(mixed $writer): boolbool
xmlwriter_end_cdata()(mixed $writer): boolbool
xmlwriter_end_comment()(mixed $writer): boolbool
xmlwriter_end_document()(mixed $writer): boolbool
xmlwriter_end_dtd()(mixed $writer): boolbool
xmlwriter_end_dtd_attlist()(mixed $writer): boolbool
xmlwriter_end_dtd_element()(mixed $writer): boolbool
xmlwriter_end_dtd_entity()(mixed $writer): boolbool
xmlwriter_end_element()(mixed $writer): boolbool
xmlwriter_end_pi()(mixed $writer): boolbool
xmlwriter_flush()(mixed $writer, bool $empty = true): mixedmixed
xmlwriter_full_end_element()(mixed $writer): boolbool
xmlwriter_open_memory()(): mixedmixed
xmlwriter_open_uri()(string $uri): mixedmixed
xmlwriter_output_memory()(mixed $writer, bool $flush = true): stringstring
xmlwriter_set_indent()(mixed $writer, bool $enable): boolbool
xmlwriter_set_indent_string()(mixed $writer, string $indentation): boolbool
xmlwriter_start_attribute()(mixed $writer, string $name): boolbool
xmlwriter_start_attribute_ns()(mixed $writer, ?string $prefix, string $name, ?string $namespace): boolbool
xmlwriter_start_cdata()(mixed $writer): boolbool
xmlwriter_start_comment()(mixed $writer): boolbool
xmlwriter_start_document()(mixed $writer, ?string $version = '1.0', ?string $encoding = null, ?string $standalone = null): boolbool
xmlwriter_start_dtd()(mixed $writer, string $qualifiedName, ?string $publicId = null, ?string $systemId = null): boolbool
xmlwriter_start_dtd_attlist()(mixed $writer, string $name): boolbool
xmlwriter_start_dtd_element()(mixed $writer, string $qualifiedName): boolbool
xmlwriter_start_dtd_entity()(mixed $writer, string $name, bool $isParam): boolbool
xmlwriter_start_element()(mixed $writer, string $name): boolbool
xmlwriter_start_element_ns()(mixed $writer, ?string $prefix, string $name, ?string $namespace): boolbool
xmlwriter_start_pi()(mixed $writer, string $target): boolbool
xmlwriter_text()(mixed $writer, string $content): boolbool
xmlwriter_write_attribute()(mixed $writer, string $name, string $value): boolbool
xmlwriter_write_attribute_ns()(mixed $writer, ?string $prefix, string $name, ?string $namespace, string $value): boolbool
xmlwriter_write_cdata()(mixed $writer, string $content): boolbool
xmlwriter_write_comment()(mixed $writer, string $content): boolbool
xmlwriter_write_dtd()(mixed $writer, string $name, ?string $publicId = null, ?string $systemId = null, ?string $content = null): boolbool
xmlwriter_write_dtd_attlist()(mixed $writer, string $name, string $content): boolbool
xmlwriter_write_dtd_element()(mixed $writer, string $name, string $content): boolbool
xmlwriter_write_dtd_entity()(mixed $writer, string $name, string $content, bool $isParam = false, ?string $publicId = null, ?string $systemId = null, ?string $notationData = null): boolbool
xmlwriter_write_element()(mixed $writer, string $name, ?string $content = null): boolbool
xmlwriter_write_element_ns()(mixed $writer, ?string $prefix, string $name, ?string $namespace, ?string $content = null): boolbool
xmlwriter_write_pi()(mixed $writer, string $target, string $content): boolbool
xmlwriter_write_raw()(mixed $writer, string $content): boolbool