
PHP Funktionen : PHP Übersicht : PHP Manual
range
PHP
Function range / PHP
Funktion range
phplist »
Webkatalog Script - Link Script »
PHP Function Coder »
range
- PHP Funktion
- range ( phplist Code 100% Relevanz )
- Rubrik
- Array Funktionen
- Kurzform
- range -- Erstellt ein Array mit einem Bereich von Elementen
- Vorschau
- ...range range (PHP 3 >= 3.0.8, PHP 4, PHP 5) range -- Erstellt ein Array mit einem Bereich von Elementen Beschreibung array range ( mixed low, mixed high [, number step] ) range() gibt ein Array mit Elementen im Bereich von low bis high . Wenn low > high, wird die Sequenz von high nach low sein. Neuer Parameter: Der optionale Parameter step wurde in 5.0.0 eingeführt. Ist ein step Wert ...
- PHP Manual
- [ range php.net ]
- PHP Funktion
- yaz_range ( phplist Code 71% Relevanz )
- Rubrik
- YAZ Functions
- Kurzform
- yaz_range -- Specifies a range of records to retrieve
- Vorschau
- ...yaz_range yaz_range (PHP 4 >= 4.0.1, PECL) yaz_range -- Specifies a range of records to retrieve Beschreibung void yaz_range ( resource id, int start, int number ) Specifies a range of records to retrieve. This function should be called before yaz_search() or yaz_present() . Parameter Liste id The connection resource returned by yaz_connect() . start Specifies the position of the first record to ...
- PHP Manual
- [ yaz_range php.net ]
- PHP Funktion
- prev ( phplist Code 44% Relevanz )
- Rubrik
- Array Funktionen
- Kurzform
- prev -- Verkleinert den internen Zeiger eines Arrays
- Vorschau
- ... = next ( $transport ); // $mode = 'Auto'; $mode = prev ( $transport ); // $mode = 'Fahrrad'; $mode = end ( $transport ); // $mode = 'Flugzeug'; ?> Siehe auch current() , end() , next() , reset() und each() . pos range...
- PHP Manual
- [ prev php.net ]
- PHP Funktion
- reset ( phplist Code 40% Relevanz )
- Rubrik
- Array Funktionen
- Kurzform
- reset -- Setzt den internen Zeiger eines Arrays auf sein erstes Element
- Vorschau
- ...Schritt drei" // Zeiger setzen, wieder bei Schritt eins starten reset ( $array ); echo current ( $array ) . "<br />\n" ; // "Schritt eins" ?> Siehe auch current() , each() , end() , next() und prev() . range rsort...
- PHP Manual
- [ reset php.net ]
- PHP Funktion
- imagefilter ( phplist Code 38% Relevanz )
- Rubrik
- Grafik-Funktionen
- Kurzform
- imagefilter -- Applies a filter to an image
- Vorschau
- ... the contrast of the image. Use arg1 to set the level of contrast. IMG_FILTER_COLORIZE : Like IMG_FILTER_GRAYSCALE , except you can specify the color. Use arg1 , arg2 and arg3 in the form of red , blue , green . The range for each color is 0 to 255. IMG_FILTER_EDGEDETECT : Uses edge detection to highlight the edges in the image. IMG_FILTER_EMBOSS : Embosses the image. IMG_FILTER_GAUSSIAN_BLUR : Blurs the image using the Gaussian method...
- PHP Manual
- [ imagefilter php.net ]
- PHP Funktion
- Array Funktionen ( phplist Code 38% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...Kleinschreibung wird ignoriert natsort -- Sortiert ein Array in "natürlicher Reihenfolge" next -- Rückt den internen Zeiger eines Arrays vor pos -- Alias von current() prev -- Verkleinert den internen Zeiger eines Arrays range -- Erstellt ein Array mit einem Bereich von Elementen reset -- Setzt den internen Zeiger eines Arrays auf sein erstes Element rsort -- Sortiert ein Array in umgekehrter Reihenfolge shuffle -- Mischt die Elemente eines ...
- PHP Manual
- [ Array Funktionen php.net ]
- PHP Funktion
- Accepting Arguments ( phplist Code 33% Relevanz )
- Rubrik
- Zend API: Hacking the Core of PHP
- Kurzform
- -----
- Vorschau
- ... count is correct, now retrieve arguments */if(zend_get_parameters_array_ex(argument_count, parameter_array) != SUCCESS) WRONG_PARAM_COUNT; First, the number of arguments is checked to make sure that it's in the accepted range. After that, zend_get_parameters_array_ex() is used to fill parameter_array with valid pointers to the argument values. A very clever implementation of this can be found in the code handling PHP's fsockopen() located in ...
- PHP Manual
- [ Accepting Arguments php.net ]
- PHP Funktion
- imagecopymerge ( phplist Code 32% Relevanz )
- Rubrik
- Grafik-Funktionen
- Kurzform
- imagecopymerge -- Copy and merge part of an image
- Vorschau
- ... at the x,y coordinates src_x , src_y with a width of src_w and a height of src_h . The portion defined will be copied onto the x,y coordinates, dst_x and dst_y . The two images will be merged according to pct which can range from 0 to 100. When pct = 0, no action is taken, when 100 this function behaves identically to imagecopy() for pallete images, while it implements alpha transparency for true colour images. Anmerkung: This function was ...
- PHP Manual
- [ imagecopymerge php.net ]
- PHP Funktion
- http_get ( phplist Code 31% Relevanz )
- Rubrik
- HTTP Funktionen
- Kurzform
- http_get -- Perform GET request
- Vorschau
- ...: true) cookiestore string path to a file where cookies are/will be stored cookiesession bool don't load session cookies from cookiestore if TRUE resume int byte offset to start the download from; if the server supports ranges range array array of arrays, each containing two integers, specifying the ranges to download if server support is given; only recognized if the resume option is empty maxfilesize int maximum file size that should be ...
- PHP Manual
- [ http_get php.net ]
- PHP Funktion
- SWFAction ( phplist Code 29% Relevanz )
- Rubrik
- Ming functions for Flash
- Kurzform
- SWFAction -- Creates a new Action
- Vorschau
- ...action machine are stored as strings. The following functions can be used in expressions: time() Returns the number of milliseconds (?) elapsed since the movie started. random(seed) Returns a pseudo-random number in the range 0-seed. length(expr) Returns the length of the given expression. int(number) Returns the given number rounded down to the nearest integer. concat(expr, expr) Returns the concatenation of the given expressions. ord(expr...
- PHP Manual
- [ SWFAction php.net ]
- PHP Funktion
- imagecopymergegray ( phplist Code 26% Relevanz )
- Rubrik
- Grafik-Funktionen
- Kurzform
- imagecopymergegray -- Copy and merge part of an image with gray scale
- Vorschau
- ... at the x,y coordinates src_x , src_y with a width of src_w and a height of src_h . The portion defined will be copied onto the x,y coordinates, dst_x and dst_y . The two images will be merged according to pct which can range from 0 to 100. When pct = 0, no action is taken, when 100 this function behaves identically to imagecopy() . This function is identical to imagecopymerge() except that when merging it preserves the hue of the source by ...
- PHP Manual
- [ imagecopymergegray php.net ]
- PHP Funktion
- yaz_present ( phplist Code 25% Relevanz )
- Rubrik
- YAZ Functions
- Kurzform
- yaz_present -- Prepares for retrieval (Z39.50 present)
- Vorschau
- ... (PHP 4 >= 4.0.5, PECL) yaz_present -- Prepares for retrieval (Z39.50 present) Beschreibung bool yaz_present ( resource id ) This function prepares for retrieval of records after a successful search. The yaz_range() function should be called prior to this function to specify the range of records to be retrieved. Parameter Liste id The connection resource returned by yaz_connect() . Rückgabewerte Gibt bei Erfolg TRUE , im ...
- PHP Manual
- [ yaz_present php.net ]
- PHP Funktion
- odbc_tableprivileges ( phplist Code 24% Relevanz )
- Rubrik
- ODBC Funktionen
- Kurzform
- odbc_tableprivileges -- Lists tables and the privileges associated with each table
- Vorschau
- ... -- Lists tables and the privileges associated with each table Description resource odbc_tableprivileges ( resource connection_id, string qualifier, string owner, string name ) Lists tables in the requested range and the privileges associated with each table. Returns an ODBC result identifier or FALSE on failure. The result set has the following columns: TABLE_QUALIFIER TABLE_OWNER TABLE_NAME GRANTOR GRANTEE PRIVILEGE ...
- PHP Manual
- [ odbc_tableprivileges php.net ]
- PHP Funktion
- YAZ Functions ( phplist Code 22% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...;/form> ' ; } else { echo 'You searched for ' . htmlspecialchars ( $query ) . '<br />' ; for ( $i = 0 ; $i < $num_hosts ; $i ++) { $id [] = yaz_connect ( $host [ $i ]); yaz_syntax ( $id [ $i ], "usmarc" ); yaz_range ( $id [ $i ], 1 , 10 ); yaz_search ( $id [ $i ], "rpn" , $query ); } yaz_wait (); for ( $i = 0 ; $i < $num_hosts ; $i ++) { echo '<hr />' . $host [ $i ] . ':' ; $error = yaz_error ( $id [ $i ]); if (!empty( $...
- PHP Manual
- [ YAZ Functions php.net ]
- PHP Funktion
- Audio Streams ( phplist Code 22% Relevanz )
- Rubrik
- List of Supported Protocols/Wrappers
- Kurzform
- -----
- Vorschau
- ...() , when used on an OGG/Vorbis file opened for reading will return various details about the stream including the vendor tag, any included comments , the number of channels , the sampling rate , and the encoding rate range described by: bitrate_lower , bitrate_upper , bitrate_nominal , and bitrate_window . Tabelle M-11. Wrapper Summary Attribute Supported Restricted by allow_url_fopen No Allows Reading Yes Allows Writing Yes Allows ...
- PHP Manual
- [ Audio Streams php.net ]
- PHP Funktion
- stats_cdf_beta ( phplist Code 21% Relevanz )
- Rubrik
- Statistics Functions
- Kurzform
- stats_cdf_beta -- CDF function for BETA Distribution. Calculates any one parameter of the beta distribution given values for the others.
- Vorschau
- ...value of P. The search relies on the monotinicity of P with the other parameter. Note The beta density is proportional to t^(A-1) * (1-t)^(B-1) Arguments P -- The integral from 0 to X of the chi-square distribution. Input range: [0, 1]. Q -- 1-P. Input range: [0, 1]. P + Q = 1.0. X -- Upper limit of integration of beta density. Input range: [0,1]. Search range: [0,1] Y -- 1-X. Input range: [0,1]. Search range: [0,1] X + Y = 1.0. A -- The first ...
- PHP Manual
- [ stats_cdf_beta php.net ]
- PHP Funktion
- Pattern Syntax ( phplist Code 21% Relevanz )
- Rubrik
- Reguläre Ausdrücke Funktionen (Perl-kompatibel)
- Kurzform
- -----
- Vorschau
- ... a pattern that is in square brackets is called a "character class". In a character class the only meta-characters are: \ general escape character ^ negate the class, but only if the first character - indicates character range ] terminates the character class The following sections describe the use of each of the meta-characters. Backslash The backslash character has several uses. Firstly, if it is followed by a non-alphanumeric character, it ...
- PHP Manual
- [ Pattern Syntax php.net ]
- PHP Funktion
- DOMCharacterData->substringData() ( phplist Code 19% Relevanz )
- Rubrik
- DOM Functions
- Kurzform
- DOMCharacterData->substringData() -- Extracts a range of data from the node
- Vorschau
- ...-replacedata.html"> __construct()"HREF="function.dom-domcomment-construct.html"> DOMCharacterData->substringData() (no version information, might be only in CVS) DOMCharacterData->substringData() -- Extracts a range of data from the node Beschreibung class DOMCharacterData { string substringData ( int offset, int count ) } Returns the specified substring. Parameter Liste offset Start offset of substring to extract. count The ...
- PHP Manual
- [ DOMCharacterData->substringData() php.net ]
- PHP Funktion
- Multibyte String Functions ( phplist Code 19% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... every necessary character can be represented by a one-to-one mapping to an 8-bit value, there are also several languages which require so many characters for written communication that they cannot be contained within the range a mere byte can code (A byte is made up of eight bits. Each bit can contain only two distinct values, one or zero. Because of this, a byte can only represent 256 unique values (two to the power of eight)). Multibyte ...
- PHP Manual
- [ Multibyte String Functions php.net ]
- PHP Funktion
- Compression Filters ( phplist Code 17% Relevanz )
- Rubrik
- List of Available Filters
- Kurzform
- -----
- Vorschau
- ...while lower values (down to 9 -- 512 bytes) yield worse compression in a smaller memory footprint. Default window size is currently 15 . memory is a scale indicating how much work memory should be allocated. Valid values range from 1 (minimal allocation) to 9 (maximum allocation). This memory allocation affects speed only and does not impact the size of the generated payload. Anmerkung: Because compression level is the most commonly used ...
- PHP Manual
- [ Compression Filters php.net ]
- PHP Funktion
- shuffle ( phplist Code 17% Relevanz )
- Rubrik
- Array Funktionen
- Kurzform
- shuffle -- Mischt die Elemente eines Arrays
- Vorschau
- ...ällig (shuffle). Anmerkung: This functionassigns new keys for the elements in array .It will remove any existing keys you may have assigned, ratherthan just reordering the keys. Beispiel 1. shuffle() <?php $numbers = range ( 1 , 20 ); srand ((float) microtime () * 1000000 ); shuffle ( $numbers ); foreach ( $numbers as $number ) { echo "$number " ; } ?> Anmerkung: Seit PHP 4.2.0 besteht keineNotwendigkeit mehr, den Zufallsgenerator für ...
- PHP Manual
- [ shuffle php.net ]
- PHP Funktion
- XML Parser Functions ( phplist Code 16% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... as the source encoding, but this may be changed at any point. The target encoding will affect character data as well as tag names and processing instruction targets. If the XML parser encounters characters outside the range that its source encoding is capable of representing, it will return an error. If PHP encounters characters in the parsed XML document that can not be represented in the chosen target encoding, the problem characters will...
- PHP Manual
- [ XML Parser Functions php.net ]
- PHP Funktion
- DOMCharacterData->deleteData() ( phplist Code 15% Relevanz )
- Rubrik
- DOM Functions
- Kurzform
- DOMCharacterData->deleteData() -- Remove a range of characters from the node
- Vorschau
- ...-appenddata.html"> insertData()"HREF="function.dom-domcharacterdata-insertdata.html"> DOMCharacterData->deleteData() (no version information, might be only in CVS) DOMCharacterData->deleteData() -- Remove a range of characters from the node Beschreibung class DOMCharacterData { void deleteData ( int offset, int count ) } Deletes count characters starting from position offset . Parameter Liste offset The offset from which to ...
- PHP Manual
- [ DOMCharacterData->deleteData() php.net ]
- PHP Funktion
- DOMCharacterData->replaceData() ( phplist Code 15% Relevanz )
- Rubrik
- DOM Functions
- Kurzform
- DOMCharacterData->replaceData() -- Replace a substring within the DOMCharacterData node
- Vorschau
- ...offset from which to start replacing. count The number of characters to replace. If the sum of offset and count exceeds the length, then all characters to the end of the data are replaced. data The string with which the range must be replaced. Rückgabewerte No value is returned. Errors/Exceptions DOM_INDEX_SIZE_ERR Raised if offset is negative or greater than the number of 16-bit units in data, or if count is negative. Siehe auch ...
- PHP Manual
- [ DOMCharacterData->replaceData() php.net ]
- PHP Funktion
- xml_parse_into_struct ( phplist Code 15% Relevanz )
- Rubrik
- XML Parser Functions
- Kurzform
- xml_parse_into_struct -- Parse XML data into an array structure
- Vorschau
- ...XML_OPTION_SKIP_WHITE , 1 ); xml_parse_into_struct ( $parser , $data , $values , $tags ); xml_parser_free ( $parser ); // loop through the structures foreach ( $tags as $key => $val ) { if ( $key == "molecule" ) { $molranges = $val ; // each contiguous pair of array entries are the // lower and upper range for each molecule definition for ( $i = 0 ; $i < count ( $molranges ); $i += 2 ) { $offset = $molranges [ $i ] + 1 ; $len = $molranges...
- PHP Manual
- [ xml_parse_into_struct php.net ]
- PHP Funktion
- maxdb_fetch_field_direct ( phplist Code 14% Relevanz )
- Rubrik
- MaxDB PHP Extension
- Kurzform
- maxdb_fetch_field_direct (no version information might be only in CVS)result->fetch_field_direct -- Fetch meta-data for a single field
- Vorschau
- ...method): class result { mixed fetch_field_direct ( int fieldnr ) } maxdb_fetch_field_direct() returns an resource which contains field definition informations from specified resultset. The value of fieldnr must be in the range from 0 to number of fields - 1 . Return values Returns an resource which contains field definition informations or FALSE if no field information for specified fieldnr is available. Tabelle 1. Object attributes Attribute...
- PHP Manual
- [ maxdb_fetch_field_direct php.net ]
- PHP Funktion
- http_send_data ( phplist Code 11% Relevanz )
- Rubrik
- HTTP Funktionen
- Kurzform
- http_send_data -- Send arbitrary data
- Vorschau
- ...http_send_data http_send_data (PECL) http_send_data -- Send arbitrary data Beschreibung bool http_send_data ( string data ) Sends raw data with support for (multiple) range requests. Parameter Liste data data to send Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . http_send_content_type http_send_file...
- PHP Manual
- [ http_send_data php.net ]
- PHP Funktion
- http_send_file ( phplist Code 11% Relevanz )
- Rubrik
- HTTP Funktionen
- Kurzform
- http_send_file -- Send file
- Vorschau
- ...http_send_file http_send_file (PECL) http_send_file -- Send file Beschreibung bool http_send_file ( string file ) Sends a file with support for (multiple) range requests. Parameter Liste file the file to send Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . http_send_data http_send_last_modified...
- PHP Manual
- [ http_send_file php.net ]
- PHP Funktion
- DOM Functions ( phplist Code 11% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... no The value of the attribute DOMCharacterData Extends DOMNode . Methoden DOMCharacterData->appendData() - Append a string to the end of the character data of the node DOMCharacterData->deleteData() - Remove a range of characters from the node DOMCharacterData->insertData() - Insert a string at the specified 16-bit unit offset DOMCharacterData->replaceData() - Replace a substring within the DOMCharacterData node ...
- PHP Manual
- [ DOM Functions php.net ]
- PHP Funktion
- SDO Functions ( phplist Code 11% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... name is unknown SDO_InvalidConversionException - conversion between the types of the assignment is not possible SDO_IndexOutOfBoundsException - the numeric index into a data object, sequence or list is not in the valid range SDO_UnsupportedOperationException - the request cannot be completed because it is not allowed, for example an attempt to set a read-only property. Methoden One method is added to those inherited from the built in ...
- PHP Manual
- [ SDO Functions php.net ]
- PHP Funktion
- http_send_stream ( phplist Code 10% Relevanz )
- Rubrik
- HTTP Funktionen
- Kurzform
- http_send_stream -- Send stream
- Vorschau
- ...http_send_stream http_send_stream (PECL) http_send_stream -- Send stream Beschreibung bool http_send_stream ( resource stream ) Sends an already opened stream with support for (multiple) range requests. Parameter Liste stream stream to read from (must be seekable) Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . http_send_status http_throttle...
- PHP Manual
- [ http_send_stream php.net ]
- PHP Funktion
- SDO Relational Data Access Service Functions ( phplist Code 8% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... relationships and single-valued non-containment references. In SDO, whether a property describes a single- or multi-valued relationship, and whether it is containment or non-containment, are independent. The full range of possibilities that SDO allows cannot all be defined. There may be relationships that it would be useful to model but which the current implementation cannot manage. One example is a single-valued containment ...
- PHP Manual
- [ SDO Relational Data Access Service Functions php.net ]
- PHP Funktion
- mysqli_fetch_field_direct ( phplist Code 7% Relevanz )
- Rubrik
- Verbesserte MySQL Erweiterung
- Kurzform
- mysqli_fetch_field_direct (no version information might be only in CVS)result->fetch_field_direct -- Fetch meta-data for a single field
- Vorschau
- ...class mysqli_result { object fetch_field_direct ( int fieldnr ) } mysqli_fetch_field_direct() returns an object which contains field definition informations from specified resultset. The value of fieldnr must be in the range from 0 to number of fields - 1 . Rückgabewerte Returns an object which contains field definition information or FALSE if no field information for specified fieldnr is available. Tabelle 1. Object attributes Attribute ...
- PHP Manual
- [ mysqli_fetch_field_direct php.net ]