Słownik i definicje programowania w PHP na A
PHP (skrót od angielskiej nazwy "PHP: Hypertext Preprocessor") to język programowania, który jest szczególnie popularny w branży IT i jest często używany do tworzenia aplikacji internetowych oraz skromnych stron internetowych. PHP jest językiem skryptowym, co oznacza, że jest interpretowany przez serwer internetowy i nie wymaga kompilacji przed uruchomieniem.
- Jak działa terminate_ child_ apache wywołanie funkcji Terminate apache process after this request, błędy i użycie
bool apache_child_terminate ( void )
. - Jak działa modules_ get_ apache wywołanie funkcji Get a list of loaded Apache modules, błędy i użycie
array apache_get_modules ( void )
. - Jak działa version_ get_ apache wywołanie funkcji Fetch Apache version, błędy i użycie
string apache_get_version ( void )
. - Jak działa getenv_ apache wywołanie funkcji Get an Apache subprocess_env variable, błędy i użycie
string apache_getenv ( string variable [, bool walk_to_top] )
. - Jak działa uri_ lookup_ apache wywołanie funkcji Perform a partial request for the specified URI and return all info about it, błędy i użycie
object apache_lookup_uri ( string filename )
. - Jak działa note_ apache wywołanie funkcji Get and set apache request notes, błędy i użycie
string apache_note ( string note_name [, string note_value] )
. - Jak działa headers_ request_ apache wywołanie funkcji Fetch all HTTP request headers, błędy i użycie
array apache_request_headers ( void )
. - Jak działa timeout_ reset_ apache wywołanie funkcji Reset the Apache write timer, błędy i użycie
bool apache_reset_timeout ( void )
. - Jak działa headers_ response_ apache wywołanie funkcji Fetch all HTTP response headers, błędy i użycie
array apache_response_headers ( void )
. - Jak działa setenv_ apache wywołanie funkcji Set an Apache subprocess_env variable, błędy i użycie
bool apache_setenv ( string variable, string value [, bool walk_to_top] )
. - Jak działa ascii2ebcdic wywołanie funkcji Translate string from ASCII to EBCDIC, błędy i użycie
int ascii2ebcdic ( string ascii_str )
. - Jak działa info_ cache_ apc wywołanie funkcji Retrieves cached information (and meta-data) from APC's data store, błędy i użycie
array apc_cache_info ( [string cache_type] )
. - Jak działa cache_ clear_ apc wywołanie funkcji Clears the APC cache, błędy i użycie
bool apc_clear_cache ( [string cache_type] )
. - Jak działa constants_ define_ apc wywołanie funkcji Defines a set of constants for later retrieval and mass-definition, błędy i użycie
bool apc_define_constants ( string key, array constants [, bool case_sensitive] )
. - Jak działa delete_ apc wywołanie funkcji Removes a stored variable from the cache, błędy i użycie
bool apc_delete ( string key )
. - Jak działa fetch_ apc wywołanie funkcji Fetch a stored variable from the cache, błędy i użycie
mixed apc_fetch ( string key )
. - Jak działa constants_ load_ apc wywołanie funkcji Loads a set of constants from the cache, błędy i użycie
bool apc_load_constants ( string key [, bool case_sensitive] )
. - Jak działa info_ sma_ apc wywołanie funkcji Retrieves APC's Shared Memory Allocation information, błędy i użycie
array apc_sma_info ( void )
. - Jak działa store_ apc wywołanie funkcji Cache a variable in the data store, błędy i użycie
bool apc_store ( string key, mixed var [, int ttl] )
. - Jak działa breakpoint_ apd wywołanie funkcji Stops the interpreter and waits on a CR from the socket, błędy i użycie
bool apd_breakpoint ( int debug_level )
. - Jak działa callstack_ apd wywołanie funkcji Returns the current call stack as an array, błędy i użycie
array apd_callstack ( void )
. - Jak działa clunk_ apd wywołanie funkcji Throw a warning and a callstack, błędy i użycie
void apd_clunk ( string warning [, string delimiter] )
. - Jak działa continue_ apd wywołanie funkcji Restarts the interpreter, błędy i użycie
bool apd_continue ( int debug_level )
. - Jak działa croak_ apd wywołanie funkcji Throw an error, a callstack and then exit, błędy i użycie
void apd_croak ( string warning [, string delimiter] )
. - Jak działa table_ function_ dump_ apd wywołanie funkcji Outputs the current function table, błędy i użycie
void apd_dump_function_table ( void )
. - Jak działa resources_ persistent_ dump_ apd wywołanie funkcji Return all persistent resources as an array, błędy i użycie
array apd_dump_persistent_resources ( void )
. - Jak działa resources_ regular_ dump_ apd wywołanie funkcji Return all current regular resources as an array, błędy i użycie
array apd_dump_regular_resources ( void )
. - Jak działa echo_ apd wywołanie funkcji Echo to the debugging socket, błędy i użycie
bool apd_echo ( string output )
. - Jak działa symbols_ active_ get_ apd wywołanie funkcji Get an array of the current variables names in the local scope, błędy i użycie
array apd_get_active_symbols ( )
. - Jak działa trace_ pprof_ set_ apd wywołanie funkcji Starts the session debugging, błędy i użycie
void apd_set_pprof_trace ( [string dump_directory] )
. - Jak działa trace_ session_ set_ apd wywołanie funkcji Starts the session debugging, błędy i użycie
void apd_set_session_trace ( int debug_level [, string dump_directory] )
. - Jak działa session_ set_ apd wywołanie funkcji Changes or sets the current debugging level, błędy i użycie
void apd_set_session ( int debug_level )
. - Jak działa trace_ session_ socket_ set_ apd wywołanie funkcji Starts the remote session debugging, błędy i użycie
bool apd_set_socket_session_trace ( string ip_address_or_unix_socket_file, int socket_type, int port, int debug_level )
. - Jak działa case_ key_ change_ array wywołanie funkcji Returns an array with all string keys lowercased or uppercased, błędy i użycie
array array_change_key_case ( array input [, int case] )
. - Jak działa chunk_ array wywołanie funkcji Split an array into chunks, błędy i użycie
array array_chunk ( array input, int size [, bool preserve_keys] )
. - Jak działa combine_ array wywołanie funkcji Creates an array by using one array for keys and another for its values, błędy i użycie
array array_combine ( array keys, array values )
. - Jak działa values_ count_ array wywołanie funkcji Counts all the values of an array, błędy i użycie
array array_count_values ( array input )
. - Jak działa assoc_ diff_ array wywołanie funkcji Computes the difference of arrays with additional index check, błędy i użycie
array array_diff_assoc ( array array1, array array2 [, array ...] )
. - Jak działa key_ diff_ array wywołanie funkcji Computes the difference of arrays using keys for comparison, błędy i użycie
array array_diff_key ( array array1, array array2 [, array ...] )
. - Jak działa uassoc_ diff_ array wywołanie funkcji Computes the difference of arrays with additional index checkwhich is performed by a user supplied callback function, błędy i użycie
array array_diff_uassoc ( array array1, array array2 [, array ..., callback key_compare_func] )
. - Jak działa ukey_ diff_ array wywołanie funkcji Computes the difference of arrays using a callback function on the keys for comparison, błędy i użycie
array array_diff_ukey ( array array1, array array2 [, array ..., callback key_compare_func] )
. - Jak działa diff_ array wywołanie funkcji Computes the difference of arrays, błędy i użycie
array array_diff ( array array1, array array2 [, array ...] )
. - Jak działa fill_ array wywołanie funkcji Fill an array with values, błędy i użycie
array array_fill ( int start_index, int num, mixed value )
. - Jak działa filter_ array wywołanie funkcji Filters elements of an array using a callback function, błędy i użycie
array array_filter ( array input [, callback callback] )
. - Jak działa flip_ array wywołanie funkcji Exchanges all keys with their associated values in an array, błędy i użycie
array array_flip ( array trans )
. - Jak działa assoc_ intersect_ array wywołanie funkcji Computes the intersection of arrays with additional index check, błędy i użycie
array array_intersect_assoc ( array array1, array array2 [, array ...] )
. - Jak działa asinh wywołanie funkcji Inverse hyperbolic sine, błędy i użycie
float asinh ( float arg )
. - Jak działa key_ intersect_ array wywołanie funkcji Computes the intersection of arrays using keys for comparison, błędy i użycie
array array_intersect_key ( array array1, array array2 [, array ...] )
. - Jak działa uassoc_ intersect_ array wywołanie funkcji Computes the intersection of arrays with additional index check, compares indexes by a callback function, błędy i użycie
array array_intersect_uassoc ( array array1, array array2 [, array ..., callback key_compare_func] )
. - Jak działa ukey_ intersect_ array wywołanie funkcji Computes the intersection of arrays using a callback function on the keys for comparison, błędy i użycie
array array_intersect_ukey ( array array1, array array2 [, array ..., callback key_compare_func] )
. - Jak działa intersect_ array wywołanie funkcji Computes the intersection of arrays, błędy i użycie
array array_intersect ( array array1, array array2 [, array ...] )
. - Jak działa exists_ key_ array wywołanie funkcji Checks if the given key or index exists in the array, błędy i użycie
bool array_key_exists ( mixed key, array search )
. - Jak działa keys_ array wywołanie funkcji Return all the keys of an array, błędy i użycie
array array_keys ( array input [, mixed search_value [, bool strict]] )
. - Jak działa map_ array wywołanie funkcji Applies the callback to the elements of the given arrays, błędy i użycie
array array_map ( callback callback, array arr1 [, array ...] )
. - Jak działa recursive_ merge_ array wywołanie funkcji Merge two or more arrays recursively, błędy i użycie
array array_merge_recursive ( array array1 [, array ...] )
. - Jak działa merge_ array wywołanie funkcji Merge one or more arrays, błędy i użycie
array array_merge ( array array1 [, array array2 [, array ...]] )
. - Jak działa multisort_ array wywołanie funkcji Sort multiple or multi-dimensional arrays, błędy i użycie
bool array_multisort ( array ar1 [, mixed arg [, mixed ... [, array ...]]] )
. - Jak działa pad_ array wywołanie funkcji Pad array to the specified length with a value, błędy i użycie
array array_pad ( array input, int pad_size, mixed pad_value )
. - Jak działa pop_ array wywołanie funkcji Pop the element off the end of array, błędy i użycie
mixed array_pop ( array &array )
. - Jak działa product_ array wywołanie funkcji Calculate the product of values in an array, błędy i użycie
number array_product ( array array )
. - Jak działa push_ array wywołanie funkcji Push one or more elements onto the end of array, błędy i użycie
int array_push ( array &array, mixed var [, mixed ...] )
. - Jak działa rand_ array wywołanie funkcji Pick one or more random entries out of an array, błędy i użycie
mixed array_rand ( array input [, int num_req] )
. - Jak działa reduce_ array wywołanie funkcji Iteratively reduce the array to a single value using a callbackfunction, błędy i użycie
mixed array_reduce ( array input, callback function [, int initial] )
. - Jak działa reverse_ array wywołanie funkcji Return an array with elements in reverse order, błędy i użycie
array array_reverse ( array array [, bool preserve_keys] )
. - Jak działa search_ array wywołanie funkcji Searches the array for a given value and returns thecorresponding key if successful, błędy i użycie
mixed array_search ( mixed needle, array haystack [, bool strict] )
. - Jak działa shift_ array wywołanie funkcji Shift an element off the beginning of array, błędy i użycie
mixed array_shift ( array &array )
. - Jak działa slice_ array wywołanie funkcji Extract a slice of the array, błędy i użycie
array array_slice ( array array, int offset [, int length [, bool preserve_keys]] )
. - Jak działa splice_ array wywołanie funkcji Remove a portion of the array and replace it with somethingelse, błędy i użycie
array array_splice ( array &input, int offset [, int length [, array replacement]] )
. - Jak działa sum_ array wywołanie funkcji Calculate the sum of values in an array, błędy i użycie
number array_sum ( array array )
. - Jak działa assoc_ udiff_ array wywołanie funkcji Computes the difference of arrays with additional index check, compares data by a callback function, błędy i użycie
array array_udiff_assoc ( array array1, array array2 [, array ..., callback data_compare_func] )
. - Jak działa uassoc_ udiff_ array wywołanie funkcji Computes the difference of arrays with additional index check, compares data and indexes by a callback function, błędy i użycie
array array_udiff_uassoc ( array array1, array array2 [, array ..., callback data_compare_func, callback key_compare_func] )
. - Jak działa udiff_ array wywołanie funkcji Computes the difference of arrays by using a callback function for data comparison, błędy i użycie
array array_udiff ( array array1, array array2 [, array ..., callback data_compare_func] )
. - Jak działa assoc_ uintersect_ array wywołanie funkcji Computes the intersection of arrays with additional index check, compares data by a callback function, błędy i użycie
array array_uintersect_assoc ( array array1, array array2 [, array ..., callback data_compare_func] )
. - Jak działa uassoc_ uintersect_ array wywołanie funkcji Computes the intersection of arrays with additional index check, compares data and indexes by a callback functions, błędy i użycie
array array_uintersect_uassoc ( array array1, array array2 [, array ..., callback data_compare_func, callback key_compare_func] )
. - Jak działa uintersect_ array wywołanie funkcji Computes the intersection of arrays, compares data by a callback function, błędy i użycie
array array_uintersect ( array array1, array array2 [, array ..., callback data_compare_func] )
. - Jak działa unique_ array wywołanie funkcji Removes duplicate values from an array, błędy i użycie
array array_unique ( array array )
. - Jak działa unshift_ array wywołanie funkcji Prepend one or more elements to the beginning of an array, błędy i użycie
int array_unshift ( array &array, mixed var [, mixed ...] )
. - Jak działa values_ array wywołanie funkcji Return all the values of an array, błędy i użycie
array array_values ( array input )
. - Jak działa recursive_ walk_ array wywołanie funkcji Apply a user function recursively to every member of an array, błędy i użycie
bool array_walk_recursive ( array &input, callback funcname [, mixed userdata] )
. - Jak działa walk_ array wywołanie funkcji Apply a user function to every member of an array, błędy i użycie
bool array_walk ( array &array, callback funcname [, mixed userdata] )
. - Jak działa array wywołanie funkcji Create an array, błędy i użycie
array array ( [mixed ...] )
. - Jak działa arsort wywołanie funkcji Sort an array in reverse order and maintain index association, błędy i użycie
bool arsort ( array &array [, int sort_flags] )
. - Jak działa asort wywołanie funkcji Sort an array and maintain index association, błędy i użycie
bool asort ( array &array [, int sort_flags] )
. - Jak działa raw_ check_ aspell wywołanie funkcji Check a word without changing its case or trying to trim it [deprecated], błędy i użycie
bool aspell_check_raw ( int dictionary_link, string word )
. - Jak działa check_ aspell wywołanie funkcji Check a word [deprecated], błędy i użycie
bool aspell_check ( int dictionary_link, string word )
. - Jak działa new_ aspell wywołanie funkcji Load a new dictionary [deprecated], błędy i użycie
int aspell_new ( string master [, string personal] )
. - Jak działa suggest_ aspell wywołanie funkcji Suggest spellings of a word [deprecated], błędy i użycie
array aspell_suggest ( int dictionary_link, string word )
. - Jak działa abs wywołanie funkcji Absolute value, błędy i użycie
number abs ( mixed number )
. - Jak działa acos wywołanie funkcji Arc cosine, błędy i użycie
float acos ( float arg )
. - Jak działa acosh wywołanie funkcji Inverse hyperbolic cosine, błędy i użycie
float acosh ( float arg )
. - Jak działa asin wywołanie funkcji Arc sine, błędy i użycie
float asin ( float arg )
. - Jak działa atan2 wywołanie funkcji Arc tangent of two variables, błędy i użycie
float atan2 ( float y, float x )
. - Jak działa atan wywołanie funkcji Arc tangent, błędy i użycie
float atan ( float arg )
. - Jak działa atanh wywołanie funkcji Inverse hyperbolic tangent, błędy i użycie
float atanh ( float arg )
. - Jak działa info_ aggregate wywołanie funkcji Returns an associative array of the methods and properties fromeach class that has been aggregated to the object, błędy i użycie
array aggregate_info ( object object )
. - Jak działa list_ by_ methods_ aggregate wywołanie funkcji Selective dynamic class methods aggregation to an object, błędy i użycie
void aggregate_methods_by_list ( object object, string class_name, array methods_list [, bool exclude] )
. - Jak działa regexp_ by_ methods_ aggregate wywołanie funkcji Selective class methods aggregation to an object using a regularexpression, błędy i użycie
void aggregate_methods_by_regexp ( object object, string class_name, string regexp [, bool exclude] )
. - Jak działa methods_ aggregate wywołanie funkcji Dynamic class and object aggregation of methods, błędy i użycie
void aggregate_methods ( object object, string class_name )
. - Jak działa list_ by_ properties_ aggregate wywołanie funkcji Selective dynamic class properties aggregation to an object, błędy i użycie
void aggregate_properties_by_list ( object object, string class_name, array properties_list [, bool exclude] )
. - Jak działa regexp_ by_ properties_ aggregate wywołanie funkcji Selective class properties aggregation to an object using a regularexpression, błędy i użycie
void aggregate_properties_by_regexp ( object object, string class_name, string regexp [, bool exclude] )
. - Jak działa properties_ aggregate wywołanie funkcji Dynamic aggregation ofclass properties to an object, błędy i użycie
void aggregate_properties ( object object, string class_name )
. - Jak działa aggregate wywołanie funkcji Dynamic class and object aggregation of methods and properties, błędy i użycie
void aggregate ( object object, string class_name )
. - Jak działa info_ aggregation wywołanie funkcji Alias of aggregate_info(), błędy i użycie
.
- Jak działa options_ assert wywołanie funkcji Set/get the various assert flags, błędy i użycie
mixed assert_options ( int what [, mixed value] )
. - Jak działa assert wywołanie funkcji Checks if assertion is FALSE, błędy i użycie
bool assert ( mixed assertion )
. - Jak działa current_ arrayiterator wywołanie funkcji Return current array entry, błędy i użycie
mixed ArrayIterator::current ( void )
. - Jak działa key_ arrayiterator wywołanie funkcji Return current array key, błędy i użycie
mixed ArrayIterator::key ( void )
. - Jak działa next_ arrayiterator wywołanie funkcji Move to next entry, błędy i użycie
void ArrayIterator::next ( void )
. - Jak działa rewind_ arrayiterator wywołanie funkcji Rewind array back to the start, błędy i użycie
void ArrayIterator::rewind ( void )
. - Jak działa seek_ arrayiterator wywołanie funkcji Seek to position, błędy i użycie
void ArrayIterator::seek ( int position )
. - Jak działa valid_ arrayiterator wywołanie funkcji Check whether array contains more entries, błędy i użycie
bool ArrayIterator::valid ( void )
. - Jak działa append_ arrayobject wywołanie funkcji Appends the value, błędy i użycie
void ArrayObject::append ( mixed newval )
. - Jak działa construct_ arrayobject wywołanie funkcji Construct a new array object, błędy i użycie
ArrayObject ArrayObject::__construct ( mixed input )
. - Jak działa count_ arrayobject wywołanie funkcji Return the number of elements in the Iterator, błędy i użycie
int ArrayObject::count ( void )
. - Jak działa getiterator_ arrayobject wywołanie funkcji Create a new iterator from an ArrayObject instance, błędy i użycie
ArrayIterator ArrayObject::getIterator ( void )
. - Jak działa offsetexists_ arrayobject wywołanie funkcji Returns whether the requested $index exists, błędy i użycie
bool ArrayObject::offsetExists ( mixed index )
. - Jak działa offsetget_ arrayobject wywołanie funkcji Returns the value at the specified $index, błędy i użycie
bool ArrayObject::offsetGet ( mixed index )
. - Jak działa offsetset_ arrayobject wywołanie funkcji Sets the value at the specified $index to $newval, błędy i użycie
void ArrayObject::offsetSet ( mixed index, mixed newval )
. - Jak działa offsetunset_ arrayobject wywołanie funkcji Unsets the value at the specified $index, błędy i użycie
void ArrayObject::offsetUnset ( mixed index )
. - Jak działa addcslashes wywołanie funkcji Quote string with slashes in a C style, błędy i użycie
string addcslashes ( string str, string charlist )
. - Jak działa addslashes wywołanie funkcji Quote string with slashes, błędy i użycie
string addslashes ( string str )
.
PeHaPe programowanie dla początkujących
Kodowanie w języku PHP-Z. Słownik pojęć PHP. Programowanie w jezyku PHP.Z
Żeby zacząć programować w PHP, potrzebujesz tylko:
- Dostępu do serwera internetowego obsługującego PHP. Możesz skorzystać z serwera internetowego dostarczanego przez dostawcę usług internetowych lub zainstalować serwer internetowy na swoim komputerze. Najlepiej kup hosting PHP.
- Edytora tekstu lub środowiska programistycznego do pisania i edytowania kodu PHP. Możesz użyć darmowego edytora tekstu, takiego jak Notepad++ lub zainwestować w profesjonalne środowisko programistyczne, takie jak Eclipse z SDK dla PHP.
- Podstawowa wiedza na temat każdego języka programowania.