Skip to content

Instantly share code, notes, and snippets.

@fentie
Last active March 22, 2016 07:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fentie/88f8c49ca51f2887e432 to your computer and use it in GitHub Desktop.
Save fentie/88f8c49ca51f2887e432 to your computer and use it in GitHub Desktop.
php references
public function filter ($in, $out, &$consumed, $closing) {}
function getimagesize ($filename, array &$imageinfo = null) {}
function str_replace ($search, $replace, $subject, &$count = null) {}
function str_ireplace ($search, $replace, $subject, &$count = null) {}
function similar_text ($first, $second, &$percent = null) {}
function parse_str ($str, array &$arr = null) {}
function sscanf ($str, $format, &$_ = null) {}
function fscanf ($handle, $format, &$_ = null) {}
function exec ($command, array &$output = null, &$return_var = null) {}
function system ($command, &$return_var = null) {}
function passthru ($command, &$return_var = null) {}
function proc_open ($cmd, array $descriptorspec, array &$pipes, $cwd = null, array $env = null, array $other_options = null) {}
function call_user_method ($method_name, &$obj, $parameter = null, $_ = null) {}
function call_user_method_array ($method_name, &$obj, array $params) {}
function headers_sent (&$file = null, &$line = null) {}
function dns_get_mx ($hostname, &$mxhosts, &$weight) {}
function getmxrr ($hostname, array &$mxhosts, array &$weight = null) {}
function dns_get_record ($hostname, $type = null, array &$authns = null, array &$addtl = null) {}
function settype (&$var, $type) {}
function is_callable ($name, $syntax_only = null, &$callable_name = null) {}
function stream_select (array &$read, array &$write, array &$except, $tv_sec, $tv_usec = null) {}
function stream_socket_client ($remote_socket, &$errno = null, &$errstr = null, $timeout = null, $flags = null, $context = null) {}
function stream_socket_server ($local_socket, &$errno = null, &$errstr = null, $flags = null, $context = null) {}
function stream_socket_accept ($server_socket, $timeout = null, &$peername = null) {}
function stream_socket_recvfrom ($socket, $length, $flags = null, &$address = null) {}
function flock ($handle, $operation, &$wouldblock = null) {}
function fsockopen ($hostname, $port = null, &$errno = null, &$errstr = null, $timeout = null) {}
function pfsockopen ($hostname, $port = null, &$errno = null, &$errstr = null, $timeout = null) {}
function getimagesizefromstring ($imagedata , array &$imageinfo) {}
function ksort (array &$array, $sort_flags = null) {}
function krsort (array &$array, $sort_flags = null) {}
function natsort (array &$array) {}
function natcasesort (array &$array) {}
function asort (array &$array, $sort_flags = null) {}
function arsort (array &$array, $sort_flags = null) {}
function sort (array &$array, $sort_flags = null) {}
function rsort (array &$array, $sort_flags = null) {}
function usort (array &$array, $cmp_function) {}
function uasort (array &$array, $cmp_function) {}
function uksort (array &$array, $cmp_function) {}
function shuffle (array &$array) {}
function array_walk (array &$array, $funcname, $userdata = null) {}
function array_walk_recursive (array &$input, $funcname, $userdata = null) {}
function end (array &$array) {}
function prev (array &$array) {}
function next (array &$array) {}
function reset (array &$array) {}
function current (array &$array) {}
function key (array &$array) {}
function array_multisort (array &$arr, $arg = null, $arg = null, $_ = null) {}
function array_push (array &$array, $var, $_ = null) {}
function array_pop (array &$array) {}
function array_shift (array &$array) {}
function array_unshift (array &$array, $var, $_ = null) {}
function array_splice (array &$input, $offset, $length = null, $replacement = null) {}
function pos(&$arg) { }
function each (array &$array) {}
public function flock ($operation, &$wouldblock = null) {}
public function fscanf ($format, &$_ = null) {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment