
PHP Funktionen : PHP Übersicht : PHP Manual
header
PHP
Function header / PHP
Funktion header
phplist »
Webkatalog Script - Link Script »
PHP Function Coder »
header
- PHP Funktion
- header ( phplist Code 100% Relevanz )
- Rubrik
- Netzwerk Funktionen
- Kurzform
- header -- Sendet einen HTTP-Header in Rohform
- Vorschau
- ...header header (PHP 3, PHP 4, PHP 5) header -- Sendet einen HTTP-Header in Rohform Beschreibung void header ( string string [, bool replace [, int http_response_code]] ) header() wird zum Senden von HTTP Anfangsinformationen (Headern) im Rohformat benutzt. e Informationen über die HTTP Header finden Sie in der HTTP/1.1 Spezifikation . Anmerkung: Seit PHP 4.4.2 und PHP 5.1.2 unterbindet die ...
- PHP Manual
- [ header php.net ]
- PHP Funktion
- get_headers ( phplist Code 71% Relevanz )
- Rubrik
- URL Funktionen
- Kurzform
- get_headers -- Ruft alle Header ab die der Server als Antwort auf einen HTTP-Request versendet
- Vorschau
- ...get_headers get_headers (PHP 5) get_headers -- Ruft alle Header ab, die der Server als Antwort auf einen HTTP-Request versendet Beschreibung array get_headers ( string url [, int format] ) get_headers() gibt ein Array , das die vom Server in seiner Antwort (Response) auf eine HTTP-Anfrage gesendeten Header enthält. Gibt im Fehlerfall FALSE , und ein Error des Levels E_WARNING wird ausgegeben. Hat der optionale ...
- PHP Manual
- [ get_headers php.net ]
- PHP Funktion
- headers_list ( phplist Code 67% Relevanz )
- Rubrik
- Netzwerk Funktionen
- Kurzform
- headers_list -- Gibt eine Liste der gesendeten (oder zum Senden vorbereiteten) Response Header zurück
- Vorschau
- ...headers_list headers_list (PHP 5) headers_list -- Gibt eine Liste der gesendeten (oder zum Senden vorbereiteten) Response Header Beschreibung array headers_list ( void ) headers_list() gibt ein numerisch indiziertes Array der Header , die zum Browser/Client gesendet werden. Um festzustellen, ob diese Header bereits gesendet worden sind, verwenden Sie headers_sent() . Beispiel 1. Beispiele zur ...
- PHP Manual
- [ headers_list php.net ]
- PHP Funktion
- headers_sent ( phplist Code 67% Relevanz )
- Rubrik
- Netzwerk Funktionen
- Kurzform
- headers_sent -- Prüft ob oder wo die Header bereits gesendet wurden
- Vorschau
- ...headers_sent headers_sent (PHP 3 >= 3.0.8, PHP 4, PHP 5) headers_sent -- Prüft, ob oder wo die Header bereits gesendet wurden Beschreibung bool headers_sent ( [string &file [, int &line]] ) headers_sent() gibt FALSE , wenn noch keine HTTP-Header gesendet wurden, ansonsten TRUE . Sind die optionalen Parameter file und line angegeben, schreibt headers_sent() den PHP-Dateinamen und die Zeilennummer, an denen die ...
- PHP Manual
- [ headers_sent php.net ]
- PHP Funktion
- imap_headerinfo ( phplist Code 57% Relevanz )
- Rubrik
- IMAP POP3 und NNTP Funktionen
- Kurzform
- imap_headerinfo -- Read the header of the message
- Vorschau
- ...imap_headerinfo imap_headerinfo (PHP 3, PHP 4, PHP 5) imap_headerinfo -- Read the header of the message Description object imap_headerinfo ( resource imap_stream, int msg_number [, int fromlength [, int subjectlength [, string defaulthost]]] ) This function returns an object of various header elements. remail, date, Date, subject, Subject, in_reply_to, ...
- PHP Manual
- [ imap_headerinfo php.net ]
- PHP Funktion
- ob_gzhandler ( phplist Code 56% Relevanz )
- Rubrik
- Funktionen zur Ausgabesteuerung
- Kurzform
- ob_gzhandler -- ob_start callback function to gzip output buffer
- Vorschau
- ..., it determines what type of content encoding the browser will accept ("gzip", "deflate" or none at all) and will return its output accordingly. All browsers are supported since it's up to the browser to send the correct header saying that it accepts compressed web pages. If a browser doesn't support compressed pages this function returns FALSE . Anmerkung: mode was added in PHP 4.0.5. Beispiel 1. ob_gzhandler() example <?php ob_start ( "...
- PHP Manual
- [ ob_gzhandler php.net ]
- PHP Funktion
- http_parse_headers ( phplist Code 50% Relevanz )
- Rubrik
- HTTP Funktionen
- Kurzform
- http_parse_headers -- Parse HTTP headers
- Vorschau
- ...http_parse_headers http_parse_headers (PECL) http_parse_headers -- Parse HTTP headers Beschreibung array http_parse_headers ( string header ) Parses HTTP headers into an associative array. Parameter Liste header String containing HTTP headers Rückgabewerte Returns an array on success, or FALSE on failure. Beispiele Beispiel 1. Using http_parse_headers() <?php $headers = "content-type: text/html; charset=UTF-8\r\n" . "Server...
- PHP Manual
- [ http_parse_headers php.net ]
- PHP Funktion
- recode ( phplist Code 50% Relevanz )
- Rubrik
- GNU Recode Funktionen
- Kurzform
- recode -- Dies ist ein Alias für recode_string().
- Vorschau
- ...recode recode (PHP 4, PHP 5) recode -- Dies ist ein Alias für recode_string() . Beschreibung Dies ist ein Alias für recode_string() . recode_string RPM Header Reading Funktionen...
- PHP Manual
- [ recode php.net ]
- PHP Funktion
- SAMMessage::header ( phplist Code 50% Relevanz )
- Rubrik
- SAM - Simple Asynchronous Messaging
- Kurzform
- SAMMessage::header -- The header properties of the message.
- Vorschau
- ...SAMMessage::header SAMMessage::header (no version information, might be only in CVS) SAMMessage::header -- The header properties of the message. Beschreibung The "header" property is a container for any system or user properties that area associated with the message. Properties may be assigned by the sender of a message to control the way the messaging systems handles it or may be ...
- PHP Manual
- [ SAMMessage::header php.net ]
- PHP Funktion
- sesam_query ( phplist Code 47% Relevanz )
- Rubrik
- SESAM Datenbankfunktionen
- Kurzform
- sesam_query -- Durchführen einer SESAM-SQL-Abfrage und aufbereiten der Ergebnisse
- Vorschau
- ...phonedb" , "demo" , "otto" )) die( "cannot connect" ); $result = sesam_query ( "select * from phone" ); if (! $result ) { $err = sesam_diagnostic (); die( $err [ "errmsg" ]); } echo "<TABLE BORDER>\n" ; // Add title header with column names above the result: if ( $cols = sesam_field_array ( $result )) { echo " <TR><TH COLSPAN=" . $cols [ "count" ]. ">Result:</TH></TR>\n" ; echo " <TR>\n" ; for ( $col = 0 ; $col...
- PHP Manual
- [ sesam_query php.net ]
- PHP Funktion
- mb_decode_mimeheader ( phplist Code 46% Relevanz )
- Rubrik
- Multibyte String Functions
- Kurzform
- mb_decode_mimeheader -- Decode string in MIME header field
- Vorschau
- ...mb_decode_mimeheader mb_decode_mimeheader (PHP 4 >= 4.0.6, PHP 5) mb_decode_mimeheader -- Decode string in MIME header field Description string mb_decode_mimeheader ( string str ) mb_decode_mimeheader() decodes encoded-word string str in MIME header. It returns decoded string in internal character encoding. See also mb_encode_mimeheader() . mb_convert_variables mb_decode_numericentity...
- PHP Manual
- [ mb_decode_mimeheader php.net ]
- PHP Funktion
- mb_encode_mimeheader ( phplist Code 46% Relevanz )
- Rubrik
- Multibyte String Functions
- Kurzform
- mb_encode_mimeheader -- Encode string for MIME header
- Vorschau
- ...mb_encode_mimeheader mb_encode_mimeheader (PHP 4 >= 4.0.6, PHP 5) mb_encode_mimeheader -- Encode string for MIME header Description string mb_encode_mimeheader ( string str [, string charset [, string transfer_encoding [, string linefeed]]] ) mb_encode_mimeheader() encodes a given string str by the MIME header encoding scheme. Returns a converted version of the string ...
- PHP Manual
- [ mb_encode_mimeheader php.net ]
- PHP Funktion
- dbase_get_header_info ( phplist Code 44% Relevanz )
- Rubrik
- dBase Funktionen
- Kurzform
- dbase_get_header_info -- Gets the header info of a database
- Vorschau
- ...dbase_get_header_info dbase_get_header_info (PHP 5) dbase_get_header_info -- Gets the header info of a database Beschreibung array dbase_get_header_info ( int dbase_identifier ) Returns information on the column structure of the given database link identifier. Parameter Liste dbase_identifier The database link identifier, returned by dbase_open() or dbase_create...
- PHP Manual
- [ dbase_get_header_info php.net ]
- PHP Funktion
- bcompiler_write_header ( phplist Code 43% Relevanz )
- Rubrik
- PHP bytecode Compiler
- Kurzform
- bcompiler_write_header -- Writes the bcompiler header
- Vorschau
- ...bcompiler_write_header bcompiler_write_header (PECL) bcompiler_write_header -- Writes the bcompiler header Description bool bcompiler_write_header ( resource filehandle [, string write_ver] ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ä...
- PHP Manual
- [ bcompiler_write_header php.net ]
- PHP Funktion
- gzencode ( phplist Code 43% Relevanz )
- Rubrik
- Zlib Komprimierungsfunktionen
- Kurzform
- gzencode -- Create a gzip compressed string
- Vorschau
- ... the default compression level of the zlib library. encoding_mode The encoding mode. Can be FORCE_GZIP (the default) or FORCE_DEFLATE . If you use FORCE_DEFLATE , you get a standard zlib deflated string (inclusive zlib headers) after the gzip file header but without the trailing crc32 checksum. Rückgabewerte The encoded string, or FALSE if an error occurred. Beispiele The resulting data contains the appropriate headers and data structure to ...
- PHP Manual
- [ gzencode php.net ]
- PHP Funktion
- mb_output_handler ( phplist Code 43% Relevanz )
- Rubrik
- Multibyte String Functions
- Kurzform
- mb_output_handler -- Callback function converts character encoding in output buffer
- Vorschau
- ...() is ob_start() callback function. mb_output_handler() converts characters in output buffer from internal character encoding to HTTP output character encoding. 4.1.0 or later version, this handler adds charset HTTP header when following conditions are met: Does not set Content-Type by header() Default MIME type begins with text/ http_output setting is other than pass contents : Output buffer contents status : Output buffer status ...
- PHP Manual
- [ mb_output_handler php.net ]
- PHP Funktion
- SWFShape ( phplist Code 43% Relevanz )
- Rubrik
- Ming functions for Flash
- Kurzform
- SWFShape -- Creates a new shape object
- Vorschau
- ... ); $s -> drawLineTo ( 6200 , 4600 ); $s -> drawCurveTo ( 200 , 4600 , 200 , 200 ); $m = new SWFMovie (); $m -> setDimension ( 6400 , 4800 ); $m -> setRate ( 12.0 ); $m -> add ( $s ); $m -> nextFrame (); header ( 'Content-type: application/x-shockwave-flash' ); $m -> output (); ?> SWFShape->setRightFill swfsprite->add...
- PHP Manual
- [ SWFShape php.net ]
- PHP Funktion
- apache_response_headers ( phplist Code 41% Relevanz )
- Rubrik
- Apache-spezifische Funktionen
- Kurzform
- apache_response_headers -- Liefert alle HTTP-Antwort Header
- Vorschau
- ...apache_response_headers apache_response_headers (PHP 4 >= 4.3.0, PHP 5) apache_response_headers -- Liefert alle HTTP-Antwort Header Beschreibung array apache_response_headers ( void ) Rückgabewert: ein assoziatives Array mit allen Apache-Antwort Headern. Beispiel 1. apache_response_headers() Beispiel <?php print_r ( apache_response_headers ()); ?> Das oben gezeigte Beispiel erzeugt ...
- PHP Manual
- [ apache_response_headers php.net ]
- PHP Funktion
- imap_mime_header_decode ( phplist Code 41% Relevanz )
- Rubrik
- IMAP POP3 und NNTP Funktionen
- Kurzform
- imap_mime_header_decode -- Decode MIME header elements
- Vorschau
- ...imap_mime_header_decode imap_mime_header_decode (PHP 3 >= 3.0.17, PHP 4, PHP 5) imap_mime_header_decode -- Decode MIME header elements Beschreibung array imap_mime_header_decode ( string text ) imap_mime_header_decode() decodiert MIME Headerfelder, die mehr als nur reinen ASCII-Text enthalten und gemäß RFC2047 codiert wurden. Die decodierten Teilstücke werden in einem Array von Objekten gegeben, wobei jedes Objekt die Felder "...
- PHP Manual
- [ imap_mime_header_decode php.net ]
- PHP Funktion
- Safe Mode ( phplist Code 40% Relevanz )
- Rubrik
- Features
- Kurzform
- -----
- Vorschau
- ...die gleiche UID Eigentümer haben wie das Skriptselbst. Überprüft ob das Verzeichnis in dem das Skriptausgeführt werden soll, die gleiche UID (Eigentümer) hat wie das Skript selbst. (note: only the target is checked) getallheaders() Header die mit 'authorization' (unabhängig von Groß- oder Kleinschreibung) beginnen, werden bei Verwendung von Safe Mode nicht gegeben. Achtung: Dies ist fehlerhaft bei der AOL-Server Implementation der Funktion ...
- PHP Manual
- [ Safe Mode php.net ]
- PHP Funktion
- http_match_request_header ( phplist Code 39% Relevanz )
- Rubrik
- HTTP Funktionen
- Kurzform
- http_match_request_header -- Match any header
- Vorschau
- ...http_match_request_header http_match_request_header (PECL) http_match_request_header -- Match any header Beschreibung bool http_match_request_header ( string header [, string value [, bool match_case = FALSE]] ) Match an incoming HTTP header. Parameter Liste header The header name (case-insensitive) value The header value that should be compared match_case Whether the value ...
- PHP Manual
- [ http_match_request_header php.net ]
- PHP Funktion
- iconv_mime_decode_headers ( phplist Code 39% Relevanz )
- Rubrik
- iconv Funktionen
- Kurzform
- iconv_mime_decode_headers -- Decodes multiple MIME header fields at once
- Vorschau
- ...iconv_mime_decode_headers iconv_mime_decode_headers (PHP 5) iconv_mime_decode_headers -- Decodes multiple MIME header fields at once Description array iconv_mime_decode_headers ( string encoded_headers [, int mode [, string charset]] ) Returns an associative array that holds a whole set of MIME header fields specified by encoded_headers on success, or FALSE if an error occurs during the decoding. Each key of the ...
- PHP Manual
- [ iconv_mime_decode_headers php.net ]
- PHP Funktion
- imap_rfc822_parse_headers ( phplist Code 39% Relevanz )
- Rubrik
- IMAP POP3 und NNTP Funktionen
- Kurzform
- imap_rfc822_parse_headers -- Parse mail headers from a string
- Vorschau
- ...imap_rfc822_parse_headers imap_rfc822_parse_headers (PHP 4, PHP 5) imap_rfc822_parse_headers -- Parse mail headers from a string Description object imap_rfc822_parse_headers ( string headers [, string defaulthost] ) This function returns an object of various header elements, similar to imap_header() , except without the flags and other elements that come from the IMAP server. imap_rfc822_parse_adrlist ...
- PHP Manual
- [ imap_rfc822_parse_headers php.net ]
- PHP Funktion
- PHP bytecode Compiler ( phplist Code 37% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...production of php-gtk applications that could be used on client desktops, without the need for a php.exe. To do the feasibility study for a PHP to C converter The first of these goals is achieved using the bcompiler_write_header() , bcompiler_write_file() and bcompiler_write_footer() functions. The bytecode files can be written as either uncompressed or plain. To use the generated bytecode, you can simply include it with include or require ...
- PHP Manual
- [ PHP bytecode Compiler php.net ]
- PHP Funktion
- imagecreate ( phplist Code 35% Relevanz )
- Rubrik
- Grafik-Funktionen
- Kurzform
- imagecreate -- Erzeugt ein neues Bild
- Vorschau
- ... Zeiger stellt ein leeres Bild mit der Größe x_size und y_size dar. Es wird empfohlen, die Funktion imagecreatetruecolor() zu verwenden. Beispiel 1. Erzeugung eines neuen GD-Bild-Streams und Ausgabe des Bildes: <?php header ( "Content-type: image/png" ); $im = @ ImageCreate ( 50 , 100 ) or die ( "Kann keinen neuen GD-Bild-Stream erzeugen" ); $background_color = ImageColorAllocate ( $im , 255 , 255 , 255 ); $text_color = ImageColorAllocate...
- PHP Manual
- [ imagecreate php.net ]
- PHP Funktion
- ps_add_note ( phplist Code 35% Relevanz )
- Rubrik
- PostScript document creation
- Kurzform
- ps_add_note -- Adds note to current page
- Vorschau
- ...The y-coordinate of the lower left corner. urx The x-coordinate of the upper right corner. ury The y-coordinate of the upper right corner. contents The text of the note. title The title of the note as displayed in the header of the note. icon The icon shown if the note is folded. This parameter can be set to comment , insert , note , paragraph , newparagraph , key , or help . open If open is unequal to zero the note will be shown unfolded ...
- PHP Manual
- [ ps_add_note php.net ]
- PHP Funktion
- SWFGradient ( phplist Code 35% Relevanz )
- Rubrik
- Ming functions for Flash
- Kurzform
- SWFGradient -- Creates a gradient object
- Vorschau
- ... ( 0.005 ); $f -> moveTo ( 160 , 120 ); $s -> setRightFill ( $f ); $s -> drawLine ( 320 , 0 ); $s -> drawLine ( 0 , 240 ); $s -> drawLine (- 320 , 0 ); $s -> drawLine ( 0 , - 240 ); $m -> add ( $s ); header ( 'Content-type: application/x-shockwave-flash' ); $m -> output (); ?> SWFGradient->addEntry SWFMorph->getshape1...
- PHP Manual
- [ SWFGradient php.net ]
- PHP Funktion
- SoapHeader->__construct() ( phplist Code 34% Relevanz )
- Rubrik
- SOAP Funktionen
- Kurzform
- SoapHeader->__construct() -- SoapHeader Konstruktor
- Vorschau
- ...SoapHeader->__construct() __construct()"HREF="function.soap-soapfault-construct.html"> __construct()"HREF="function.soap-soapparam-construct.html"> SoapHeader->__construct() (no version information, might be only in CVS) SoapHeader->__construct() -- SoapHeader Konstruktor Beschreibung class SoapHeader { __construct ( string namespace, string name [, mixed data [, bool ...
- PHP Manual
- [ SoapHeader->__construct() php.net ]
- PHP Funktion
- RPM Header Reading Funktionen ( phplist Code 34% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...RPM Header Reading Funktionen CXXXIV. RPM Header Reading Funktionen Einführung This module allows you to read the meta information stored in the headers of a RedHat Package Manager ( RPM ) file. Anforderungen The RPMReader extension requires PHP 5. Installation RPMReader is not bundled with PHP. It is a PECL extension and can be located here: http://pecl.php.net/...
- PHP Manual
- [ RPM Header Reading Funktionen php.net ]
- PHP Funktion
- PHP benutzen ( phplist Code 33% Relevanz )
- Rubrik
- FAQ: Frequently Asked Questions
- Kurzform
- -----
- Vorschau
- ...lt;pre> <?php echo "Das soll die erste Zeile sein." ; ?> <?php echo "Das soll nach dem obigen Zeilenumbruch erscheinen." ; ?> </pre> 6. Ich bekomme die Meldung 'Warning: Cannot send session cookie - headers already sent...' oder 'Cannot add header information - headers already sent...'. 7. Wie kann ich auf Informationen aus dem Request-Header zugreifen? 8. Wenn ich versuche, Authentifikation mit IIS zu nutzen, bekomme ich...
- PHP Manual
- [ PHP benutzen php.net ]
- PHP Funktion
- http_cache_last_modified ( phplist Code 33% Relevanz )
- Rubrik
- HTTP Funktionen
- Kurzform
- http_cache_last_modified -- Caching by last modification
- Vorschau
- ... time will be sent as Last-Modified date. If it's negative, it is handled as expiration time in seconds, which means that if the requested last modification date is not between the calculated timespan, the Last-Modified header is updated and the actual body will be sent. A log entry will be written to the cache log if the INI setting http.log.cache is set and the cache attempt was successful. Parameter Liste timestamp_or_expires Unix ...
- PHP Manual
- [ http_cache_last_modified php.net ]
- PHP Funktion
- PHP Handbuch ( phplist Code 33% Relevanz )
- Rubrik
- -----
- Kurzform
- -----
- Vorschau
- .... Funktionen zur Programmausführung CXXVII. PostScript document creation CXXVIII. Pspell Funktionen CXXIX. qtdom Functions CXXX. Radius CXXXI. Rar Functions CXXXII. GNU Readline CXXXIII. GNU Recode Funktionen CXXXIV. RPM Header Reading Funktionen CXXXV. runkit Functions CXXXVI. SAM - Simple Asynchronous Messaging CXXXVII. Satellite CORBA client extension [deprecated] CXXXVIII. SDO Functions CXXXIX. SDO XML Data Access Service Functions CXL. SDO ...
- PHP Manual
- [ PHP Handbuch php.net ]
- PHP Funktion
- PHP auf der Kommandozeile ( phplist Code 32% Relevanz )
- Rubrik
- Features
- Kurzform
- -----
- Vorschau
- ... wurde in PHP 4.3.2 hinzugefügt. Sie können sie ansehen, indem sie man php auf der Kommandozeile eintippen. Beachtenswerte Unterschiede des CLI SAPI verglichen mit anderen SAPI s: Anders als beim CGI SAPI werden keine Header auf der Standardausgabe ausgegeben. Obwohl das CGI SAPI einen Weg bietet, HTTP-Header zu unterdrücken, gibt es keine gleichwertige Option, sie im CLI SAPI anzuzeigen. CLI wird standardmäßig im stillen Modus gestartet, ...
- PHP Manual
- [ PHP auf der Kommandozeile php.net ]
- PHP Funktion
- getservbyport ( phplist Code 32% Relevanz )
- Rubrik
- Netzwerk Funktionen
- Kurzform
- getservbyport -- Ermittelt einen Internet-Dienst passend zu einem Port und Protokoll
- Vorschau
- ...() gibt den Internet-Dienst , der zu port für das angegebene protocol passt (anhand der Datei /etc/services ). Der Inhalt von protocol ist entweder TCP oder UDP . Siehe auch: getservbyname() . getservbyname header...
- PHP Manual
- [ getservbyport php.net ]
- PHP Funktion
- http_match_modified ( phplist Code 32% Relevanz )
- Rubrik
- HTTP Funktionen
- Kurzform
- http_match_modified -- Match last modification
- Vorschau
- ... -- Match last modification Beschreibung bool http_match_modified ( [int timestamp [, bool for_range = FALSE]] ) Matches the given unix timestamp against the clients "If-Modified-Since" resp. "If-Unmodified-Since" HTTP headers. Parameter Liste timestamp Unix timestamp; current time, if omitted for_range If set to TRUE, the header usually used to validate HTTP ranges will be checked Rückgabewerte Returns TRUE if timestamp represents an ...
- PHP Manual
- [ http_match_modified php.net ]
- PHP Funktion
- ps_begin_page ( phplist Code 32% Relevanz )
- Rubrik
- PostScript document creation
- Kurzform
- ps_begin_page -- Start a new page
- Vorschau
- .... Though PostScript does not know different page sizes, pslib places a bounding box for each page into the document. This size is evaluated by some PostScript viewers and will have precedence over the BoundingBox in the Header of the document. This can lead to unexpected results when you set a BoundingBox whose lower left corner is not (0, 0), because the bounding box of the page will always have a lower left corner (0, 0) and overwrites the ...
- PHP Manual
- [ ps_begin_page php.net ]
- PHP Funktion
- php_stream_is ( phplist Code 32% Relevanz )
- Rubrik
- Streams Common API Reference
- Kurzform
- -----
- Vorschau
- ..." are actually defined as pointers to the underlying stream operations structure. If your extension (or some other extension) defines additional streams, it should also declare a PHP_STREAM_IS_XXX constant in it's header file that you can use as the basis of this comparison. Anmerkung: This function is implemented as a simple (and fast) pointer comparison, and does not change the stream state in any way. See also php_stream_cast() and ...
- PHP Manual
- [ php_stream_is php.net ]
- PHP Funktion
- imagecreatetruecolor ( phplist Code 31% Relevanz )
- Rubrik
- Grafik-Funktionen
- Kurzform
- imagecreatetruecolor -- Create a new true color image
- Vorschau
- ... is different in issuing a warning instead of an error. Other versions only define this function, if the correct GD version is installed. Beispiel 1. Creating a new GD image stream and outputting an image. <?php header ( "Content-type: image/png" ); $im = @ imagecreatetruecolor ( 50 , 100 ) or die( "Cannot Initialize new GD image stream" ); $text_color = imagecolorallocate ( $im , 233 , 14 , 91 ); imagestring ( $im , 1 , 5 , 5 , "A ...
- PHP Manual
- [ imagecreatetruecolor php.net ]
- PHP Funktion
- imagecreatefromstring ( phplist Code 30% Relevanz )
- Rubrik
- Grafik-Funktionen
- Kurzform
- imagecreatefromstring -- Create a new image from the image stream in the string
- Vorschau
- .../0vXZDr' . 'EX4IJTRkb7lobNUStXsB0jIXIAMSsQnWlsV+wULF4Avk9fLq2r' . '8a5HSE35Q3eO2XP1A1wQkZSgETvDtKdQAAAABJRU5ErkJggg==' ; $data = base64_decode ( $data ); $im = imagecreatefromstring ( $data ); if ( $im !== false ) { header ( 'Content-Type: image/png' ); imagepng ( $im ); } else { echo 'An error occurred.' ; } ?> Siehe auch imagecreatefromjpeg() imagecreatefrompng() imagecreatefromgif() imagecreatetruecolor() imagecreatefrompng ...
- PHP Manual
- [ imagecreatefromstring php.net ]
- PHP Funktion
- imagefilledarc ( phplist Code 30% Relevanz )
- Rubrik
- Grafik-Funktionen
- Kurzform
- imagefilledarc -- Draw a partial ellipse and fill it
- Vorschau
- ... , 100 , 50 , 0 , 45 , $navy , IMG_ARC_PIE ); imagefilledarc ( $image , 50 , 50 , 100 , 50 , 45 , 75 , $gray , IMG_ARC_PIE ); imagefilledarc ( $image , 50 , 50 , 100 , 50 , 75 , 360 , $red , IMG_ARC_PIE ); // flush image header ( 'Content-type: image/png' ); imagepng ( $image ); imagedestroy ( $image ); ?> Anmerkung: Diese Funktion setzt die GD Bibliothek inder Version 2.0.1 oder höher voraus. imagefill imagefilledellipse...
- PHP Manual
- [ imagefilledarc php.net ]
- PHP Funktion
- pg_lo_read_all ( phplist Code 30% Relevanz )
- Rubrik
- PostgreSQL Funktionen
- Kurzform
- pg_lo_read_all -- Liest ein Large Object vollständig und reicht es direkt an den Browser weiter
- Vorschau
- ...ändig und reicht es direkt an den Browser Beschreibung int pg_lo_read_all ( resource large_object ) pg_lo_read_all() liest ein Large Object vollständig und übergibt es direkt an den Browser, nachdem alle entsprechenden Header gesendet wurden. Die Funktion wird hauptsächlich für Binärdaten wie Bilder oder Audiodaten genutzt. Um die Large Object Schnittstelle benutzen zu können, müssen die Kommandos innerhalb einer Transaktion ausgeführt werden...
- PHP Manual
- [ pg_lo_read_all php.net ]
- PHP Funktion
- session_cache_limiter ( phplist Code 30% Relevanz )
- Rubrik
- Session Funktionen
- Kurzform
- session_cache_limiter -- Liefert und/oder setzt die aktuelle Cacheverwaltung
- Vorschau
- ...() gibt die Bezeichnung der aktuellen Cacheverwaltung . Wenn Cacheverwaltung angegeben wurde, wird diese dem neuen Wert entsprechend geändert. Die Cacheverwaltung definiert, welche Cache-Kontroll-HTTP-Header, zum Client geschickt werden. Diese Header bestimmen die Regel, nach der der Seiteninhalt von Client und dazwischenliegenden Proxies in den Cachespeicher aufgenommen werden darf. Wird die Cacheverwaltung auf nocache ...
- PHP Manual
- [ session_cache_limiter php.net ]
- PHP Funktion
- SWFShape->addFill ( phplist Code 30% Relevanz )
- Rubrik
- Ming functions for Flash
- Kurzform
- SWFShape->addFill -- Adds a solid fill to the shape
- Vorschau
- ... (); $m -> setDimension ( $width , $height ); $i = $m -> add ( $p ); $i -> moveTo ( $width / 2 , $height / 2 ); for ( $n = 0 ; $n < 1.001 ; $n += 0.03 ) { $i -> setRatio ( $n ); $m -> nextFrame (); } header ( 'Content-type: application/x-shockwave-flash' ); $m -> output (); ?> See also SWFShape->setLeftFill() and SWFShape->setRightFill() . SWFMovie SWFShape->drawCurve...
- PHP Manual
- [ SWFShape->addFill php.net ]
- PHP Funktion
- sys_getloadavg ( phplist Code 30% Relevanz )
- Rubrik
- Sonstige Funktionen
- Kurzform
- sys_getloadavg -- get average system load
- Vorschau
- ... nicht implementiert. Rückgabewerte Returns an array with three samples (last 1, 5 and 15 minutes). Beispiele Beispiel 1. A sys_getloadavg() example <?php $load = sys_getloadavg (); if ( $load [ 0 ] > 80 ) { header ( 'HTTP/1.1 503 Too busy, try again later' ); die( 'Server too busy. Please try again later.' ); } ?> sleep time_nanosleep...
- PHP Manual
- [ sys_getloadavg php.net ]
- PHP Funktion
- HTTP and HTTPS ( phplist Code 30% Relevanz )
- Rubrik
- List of Supported Protocols/Wrappers
- Kurzform
- -----
- Vorschau
- ...:password@example.com https://example.com https://example.com/file.php?var1=val1&var2=val2 https://user:password@example.com Allows read-only access to files/resources via HTTP 1.0, using the HTTP GET method. A Host: header is sent with the request to handle name-based virtual hosts. If you have configured a user_agent string using your ini file or the stream context, it will also be included in the request. Warnung Bei SSL-Verbindungen ...
- PHP Manual
- [ HTTP and HTTPS php.net ]
- PHP Funktion
- Where to Go from Here ( phplist Code 30% Relevanz )
- Rubrik
- Zend API: Hacking the Core of PHP
- Kurzform
- -----
- Vorschau
- ... often had a mostly "referential" character, we hope that it gave you insight on how to start writing your own extensions. For the sake of space, we had to leave out a lot; we suggest that you take the time to study the header files and some modules (especially the ones in the ext/standard directory and the MySQL module, as these implement commonly known functionality). This will give you an idea of how other people have used the API functions...
- PHP Manual
- [ Where to Go from Here php.net ]
- PHP Funktion
- http_cache_etag ( phplist Code 29% Relevanz )
- Rubrik
- HTTP Funktionen
- Kurzform
- http_cache_etag -- Caching by ETag
- Vorschau
- ... bool http_cache_etag ( [string etag] ) Attempts to cache the sent entity by its ETag, either supplied or generated by the hash algorithm specified by the INI setting http.etag.mode . If the clients If-None-Match header matches the supplied/calculated ETag, the body is considered cached on the clients side and a 304 Not Modified status code is issued. A log entry is written to the cache log if the INI setting http.log.cache is set and ...
- PHP Manual
- [ http_cache_etag php.net ]
- PHP Funktion
- http_get ( phplist Code 29% Relevanz )
- Rubrik
- HTTP Funktionen
- Kurzform
- http_get -- Perform GET request
- Vorschau
- ... whether to allow gzip/deflate content encoding port int use another port as specified in the url referer string the referer to send useragent string the user agent to send (defaults to PECL::HTTP/version (PHP/version)) headers array list of custom headers as associative array like array("header" => "value") cookies array list of cookies as associative array like array("cookie" => "value") encodecookies bool whether to urlencode the ...
- PHP Manual
- [ http_get php.net ]
- PHP Funktion
- http_match_etag ( phplist Code 29% Relevanz )
- Rubrik
- HTTP Funktionen
- Kurzform
- http_match_etag -- Match ETag
- Vorschau
- ... http_match_etag (PECL) http_match_etag -- Match ETag Beschreibung bool http_match_etag ( [string etag [, bool for_range = FALSE]] ) Matches the given ETag against the clients If-Match resp. If-None-Match HTTP headers. Parameter Liste etag The ETag to match for_range If set to TRUE, the header usually used to validate HTTP ranges will be checked Rückgabewerte Returns TRUE if ETag matches or the header contained the asterisk...
- PHP Manual
- [ http_match_etag php.net ]
- PHP Funktion
- imagegif ( phplist Code 29% Relevanz )
- Rubrik
- Grafik-Funktionen
- Kurzform
- imagegif -- Ausgabe eines Bildes an den Browser oder in eine Datei
- Vorschau
- ...() als transparent formatiert. In diesem Fall wird das Bild im GIF89a -Format ausgegeben. Die Angabe des Dateinamens ist optional. Falls er fehlt, werden die Bilddaten direkt ausgegeben. Durch Verwendung der Funktion header() mit der "content-type"-Angabe "image/gif" können Sie PHP-Skripte erstellen, welche die GIF -Ausgabe direkt vornehmen. Anmerkung: ACHTUNG: Ab Version 1.6 wurde die GIF-Unterstützung komplett aus der GD-Bibliothek ...
- PHP Manual
- [ imagegif php.net ]
- PHP Funktion
- http_send_last_modified ( phplist Code 28% Relevanz )
- Rubrik
- HTTP Funktionen
- Kurzform
- http_send_last_modified -- Send Last-Modified
- Vorschau
- ...http_send_last_modified http_send_last_modified (PECL) http_send_last_modified -- Send Last-Modified Beschreibung bool http_send_last_modified ( [int timestamp] ) Send a Last-Modified header with a valid HTTP date. Parameter Liste timestamp a unix timestamp, converted it to a valid HTTP date; if omitted, the current time will be sent Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . ...
- PHP Manual
- [ http_send_last_modified php.net ]
- PHP Funktion
- Häufige Probleme ( phplist Code 27% Relevanz )
- Rubrik
- Steuerung von Dateiuploads
- Kurzform
- -----
- Vorschau
- ... zu prüfen an welcher Datei Sie arbeiten kann bedeuten, dass Benutzer auf sensible Informationen in anderen Verzeichnissen Zugriff erhalten. Beachten Sie, dass CERN httpd in dem vom Client erhaltenen Content-Type Mime Header alles nach dem ersten Whitespace wegzuschneiden scheint. Solange dies der Fall ist, unterstützt CERN httpd keine Dateiuploads. Aufgrund der vielen möglichen Arten der Darstellung von Verzeichnissen können wir nicht ...
- PHP Manual
- [ Häufige Probleme php.net ]
- PHP Funktion
- cpdf_add_outline ( phplist Code 27% Relevanz )
- Rubrik
- ClibPDF Funktionen
- Kurzform
- cpdf_add_outline -- Fügt ein Lesezeichen für die aktuelle Seite hinzu
- Vorschau
- ...ügen einer Seitenübersicht <?php $cpdf = cpdf_open ( 0 ); cpdf_page_init ( $cpdf , 1 , 0 , 595 , 842 ); cpdf_add_outline ( $cpdf , 0 , 0 , 0 , 1 , "Seite 1" ); // ... // etwas Zeichnung // ... cpdf_finalize ( $cpdf ); Header ( "Content-type: application/pdf" ); cpdf_output_buffer ( $cpdf ); cpdf_close ( $cpdf ); ?> cpdf_add_annotation cpdf_arc...
- PHP Manual
- [ cpdf_add_outline php.net ]
- PHP Funktion
- cpdf_rect ( phplist Code 27% Relevanz )
- Rubrik
- ClibPDF Funktionen
- Kurzform
- cpdf_rect -- Zeichnet ein Rechteck
- Vorschau
- ...die Füllfarbe auf Rot setzen cpdf_setrgbcolor ( $cpdf , 1 , 0 , 0 ); // ein (180 * 100) Rechteck zeichnen cpdf_rect ( $cpdf , 645 , 400 , 180 , 100 ); // das Rechteck füllen cpdf_fill ( $cpdf ); cpdf_finalize ( $cpdf ); Header ( "Content-type: application/pdf" ); cpdf_output_buffer ( $cpdf ); cpdf_close ( $cpdf ); ?> cpdf_place_inline_image cpdf_restore...
- PHP Manual
- [ cpdf_rect php.net ]
- PHP Funktion
- setcookie ( phplist Code 27% Relevanz )
- Rubrik
- Netzwerk Funktionen
- Kurzform
- setcookie -- Sendet ein Cookie
- Vorschau
- ...PHP 5) setcookie -- Sendet ein Cookie Beschreibung bool setcookie ( string name [, string value [, int expire [, string path [, string domain [, bool secure [, bool httponly]]]]]] ) setcookie() definiert ein mit den HTTP Header-Informationen zu übertragendes Cookie. Wie andere Header auch, müssen Cookies vor jeglicher Ausgabe Ihres Skriptes gesendet werden (dies ist eine Einschränkung des Protokolls). Das bedeutet, dass Sie diese Funktione ...
- PHP Manual
- [ setcookie php.net ]
- PHP Funktion
- PostgreSQL Session Save Handler ( phplist Code 27% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... if there are multiple PostgreSQL servers. short circuit UPDATE Anforderungen You need at least PHP >= 4.3.0, and PostgreSQL >=7.2.0 as database server. libpq that comes with PostgreSQL 7.2.0 or later (and header files to build) and libmm (and header files). Installation Short installation note: Untar the tar.gz archive into php4/ext (Latest official releases can be found at SourceForge PHP Form Extension Project ) If the new ...
- PHP Manual
- [ PostgreSQL Session Save Handler php.net ]
- PHP Funktion
- Extension Kategorisierung ( phplist Code 26% Relevanz )
- Rubrik
- Anhang
- Kurzform
- -----
- Vorschau
- ...Funktionen Verweis XXXVII, Forms Data Format Funktionen Verweis LI, gnupg Funktionen Verweis LXXXVI, Ming functions for Flash Verweis CXVIII, PDF-Funktionen Verweis CXXVII, PostScript document creation Verweis CXXXIV, RPM Header Reading Funktionen Verweis CLVII, Shockwave Flash Funktionen Bildverarbeitung und -erzeugung Verweis XXXIV, Exif Funktionen Verweis LXIII, Grafik-Funktionen Audioformat-Manipulation Verweis LXI, ID3 Funktionen Verweis ...
- PHP Manual
- [ Extension Kategorisierung php.net ]
- PHP Funktion
- Funktionsreferenz ( phplist Code 26% Relevanz )
- Rubrik
- -----
- Kurzform
- -----
- Vorschau
- .... Funktionen zur Programmausführung CXXVII. PostScript document creation CXXVIII. Pspell Funktionen CXXIX. qtdom Functions CXXX. Radius CXXXI. Rar Functions CXXXII. GNU Readline CXXXIII. GNU Recode Funktionen CXXXIV. RPM Header Reading Funktionen CXXXV. runkit Functions CXXXVI. SAM - Simple Asynchronous Messaging CXXXVII. Satellite CORBA client extension [deprecated] CXXXVIII. SDO Functions CXXXIX. SDO XML Data Access Service Functions CXL. SDO ...
- PHP Manual
- [ Funktionsreferenz php.net ]
- PHP Funktion
- http_parse_cookie ( phplist Code 26% Relevanz )
- Rubrik
- HTTP Funktionen
- Kurzform
- http_parse_cookie -- Parse HTTP cookie
- Vorschau
- ...object http_parse_cookie ( [string cookie [, int flags [, array allowed_extras]]] ) Parses HTTP cookies like sent in a response into a struct. Parameter Liste cookie String containing the value of a Set-Cookie response header flags Parse flags allowed_extras Array containing recognized extra keys. By default all unknown keys will be treated as cookie names. Rückgabewerte Returns an stdClass like shown in the example on success or FALSE on ...
- PHP Manual
- [ http_parse_cookie php.net ]
- PHP Funktion
- iconv_mime_decode ( phplist Code 26% Relevanz )
- Rubrik
- iconv Funktionen
- Kurzform
- iconv_mime_decode -- Decodes a MIME header field
- Vorschau
- ...iconv_mime_decode iconv_mime_decode (PHP 5) iconv_mime_decode -- Decodes a MIME header field Description string iconv_mime_decode ( string encoded_header [, int mode [, string charset]] ) Returns a decoded MIME field on success, or FALSE if an error occurs during the decoding. mode determines the behaviour in the event iconv_mime_decode() encounters a malformed MIME ...
- PHP Manual
- [ iconv_mime_decode php.net ]
- PHP Funktion
- iconv_mime_encode ( phplist Code 26% Relevanz )
- Rubrik
- iconv Funktionen
- Kurzform
- iconv_mime_encode -- Composes a MIME header field
- Vorschau
- ...iconv_mime_encode iconv_mime_encode (PHP 5) iconv_mime_encode -- Composes a MIME header field Description string iconv_mime_encode ( string field_name, string field_value [, array preferences] ) Composes and returns a string that represents a valid MIME header field, which looks like the following: Subject...
- PHP Manual
- [ iconv_mime_encode php.net ]
- PHP Funktion
- SoapClient->__getLastRequestHeaders() ( phplist Code 26% Relevanz )
- Rubrik
- SOAP Funktionen
- Kurzform
- SoapClient->__getLastRequestHeaders() -- Gibt den letzten SOAP Anfrage Header zurück
- Vorschau
- ...SoapClient->__getLastRequestHeaders() __getLastRequest()"HREF="function.soap-soapclient-getlastrequest.html"> __getLastResponse()"HREF="function.soap-soapclient-getlastresponse.html"> SoapClient->__getLastRequestHeaders() (no version information, might be only in CVS) SoapClient->__getLastRequestHeaders() -- Gibt den letzten SOAP Anfrage Header Beschreibung class SoapClient { string __getLastRequestHeaders ( void ) } Anmerkung: ...
- PHP Manual
- [ SoapClient->__getLastRequestHeaders() php.net ]
- PHP Funktion
- image2wbmp ( phplist Code 25% Relevanz )
- Rubrik
- Grafik-Funktionen
- Kurzform
- image2wbmp -- Output image to browser or file
- Vorschau
- ... one of the image create functions, such as imagecreatetruecolor() . The filename argument is optional, and if left off, the raw image stream will be output directly. By sending an image/vnd.wap.wbmp content-type using header() , you can create a PHP script that outputs WBMP images directly. Beispiel 1. image2wbmp() example <?php $file = 'php.png' ; $image = imagecreatefrompng ( $file ); header ( 'Content-type: ' . image_type_to_mime_type...
- PHP Manual
- [ image2wbmp php.net ]
- PHP Funktion
- imagecopyresampled ( phplist Code 25% Relevanz )
- Rubrik
- Grafik-Funktionen
- Kurzform
- imagecopyresampled -- Copy and resize part of an image with resampling
- Vorschau
- ... inder Version 2.0.1 oder höher voraus. Beispiele Beispiel 1. Simple example This example will resample an image to half its original size. <?php // The file $filename = 'test.jpg' ; $percent = 0.5 ; // Content type header ( 'Content-type: image/jpeg' ); // Get new dimensions list( $width , $height ) = getimagesize ( $filename ); $new_width = $width * $percent ; $new_height = $height * $percent ; // Resample $image_p = imagecreatetruecolor...
- PHP Manual
- [ imagecopyresampled php.net ]
- PHP Funktion
- imagefilledellipse ( phplist Code 25% Relevanz )
- Rubrik
- Grafik-Funktionen
- Kurzform
- imagefilledellipse -- Draw a filled ellipse
- Vorschau
- ...0 ); // choose a color for the ellipse $col_ellipse = imagecolorallocate ( $image , 255 , 255 , 255 ); // draw the white ellipse imagefilledellipse ( $image , 200 , 150 , 300 , 200 , $col_ellipse ); // output the picture header ( "Content-type: image/png" ); imagepng ( $image ); ?> Anmerkung: Diese Funktion setzt die GD Bibliothek inder Version 2.0.1 oder höher voraus. See also imageellipse() and imagefilledarc() . imagefilledarc ...
- PHP Manual
- [ imagefilledellipse php.net ]
- PHP Funktion
- SoapClient->__getLastResponseHeaders() ( phplist Code 25% Relevanz )
- Rubrik
- SOAP Funktionen
- Kurzform
- SoapClient->__getLastResponseHeaders() -- Gibt den letzten SOAP Antwort Header zurück
- Vorschau
- ...SoapClient->__getLastResponseHeaders() __getLastResponse()"HREF="function.soap-soapclient-getlastresponse.html"> __getTypes()"HREF="function.soap-soapclient-gettypes.html"> SoapClient->__getLastResponseHeaders() (no version information, might be only in CVS) SoapClient->__getLastResponseHeaders() -- Gibt den letzten SOAP Antwort Header Beschreibung class SoapClient { string __getLastResponseHeaders ( void ) } Anmerkung: ...
- PHP Manual
- [ SoapClient->__getLastResponseHeaders() php.net ]
- PHP Funktion
- Netzwerk Funktionen ( phplist Code 24% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... Protokoll-Namen anhand der Protokoll-Nummer getservbyname -- Ermittelt einen Port-Wert passend zu einem Internet-Dienst und Protokoll getservbyport -- Ermittelt einen Internet-Dienst passend zu einem Port und Protokoll header -- Sendet einen HTTP-Header in Rohform headers_list -- Gibt eine Liste der gesendeten (oder zum Senden vorbereiteten) Response Header headers_sent -- Prüft, ob oder wo die Header bereits gesendet wurden inet_ntop -- ...
- PHP Manual
- [ Netzwerk Funktionen php.net ]
- PHP Funktion
- Creating Extensions ( phplist Code 24% Relevanz )
- Rubrik
- Zend API: Hacking the Core of PHP
- Kurzform
- -----
- Vorschau
- ... extension at first, which basically does nothing more than implement a function that returns the integer it receives as parameter. Beispiel 46-2 shows the source. Beispiel 46-2. A simple extension. /* include standard header */#include "php.h" /* declaration of functions to be exported */ZEND_FUNCTION(first_module); /* compiled function list so Zend knows what's in this module */zend_function_entry firstmod_functions[] ={ ZEND_FE(first_module...
- PHP Manual
- [ Creating Extensions php.net ]
- PHP Funktion
- http_send_content_disposition ( phplist Code 23% Relevanz )
- Rubrik
- HTTP Funktionen
- Kurzform
- http_send_content_disposition -- Send Content-Disposition
- Vorschau
- ... (PECL) http_send_content_disposition -- Send Content-Disposition Beschreibung bool http_send_content_disposition ( [string filename [, bool inline = FALSE]] ) Send the Content-Disposition. The Content-Disposition header is very useful if the data actually sent came from a file or something similar, that should be "saved" by the client/user (i.e. by browsers "Save as..." popup window). Parameter Liste filename the file name the "Save as...
- PHP Manual
- [ http_send_content_disposition php.net ]
- PHP Funktion
- mysqli_connect_errno ( phplist Code 23% Relevanz )
- Rubrik
- Verbesserte MySQL Erweiterung
- Kurzform
- mysqli_connect_errno -- Returns the error code from last connect call
- Vorschau
- ...() function will return the last error code number for last call to mysqli_connect() . If no errors have occured, this function will return zero. Anmerkung: Client error message numbers are listed in the MySQL errmsg.h header file, server error message numbers are listed in mysqld_error.h . In the MySQL source distribution you can find a complete list of error messages and error numbers in the file Docs/mysqld_error.txt . Rückgabewerte An ...
- PHP Manual
- [ mysqli_connect_errno php.net ]
- PHP Funktion
- wddx_serialize_value ( phplist Code 23% Relevanz )
- Rubrik
- WDDX Funktionen
- Kurzform
- wddx_serialize_value -- Serialisiert einen einzelnen Wert in ein WDDX Paket
- Vorschau
- ... ( mixed wert [, string kommentar] ) wddx_serialize_value() wird verwendet um einen einzelnen Wert in ein WDDX Paket zu serialisieren. Übergeben wird der Wert in wert und ein optionaler Parameter kommentar , der im Header des WDDX Pakets erscheinen wird. gegeben wird das entsprechende WDDX Paket. wddx_packet_start wddx_serialize_vars...
- PHP Manual
- [ wddx_serialize_value php.net ]
- PHP Funktion
- HTTP-Authentifizierung mit PHP ( phplist Code 22% Relevanz )
- Rubrik
- Features
- Kurzform
- -----
- Vorschau
- ... mit PHP Die HTTP-Authentifizierung durch PHP ist nur verfügbar, wenn PHP als Apache-Modul läuft und funktioniert daher nicht mit der CGI-Version. In einem PHP-Skript für ein Apache-Modul kann man die Funktion header() benutzen, um die Nachricht "Authentifizierung notwendig" an den Client-Browser zu senden, damit dieser ein Fenster zur Eingabe von Benutzername/Passwort öffnet. Hat der Benutzer diese eingegeben, wird die URL des PHP-...
- PHP Manual
- [ HTTP-Authentifizierung mit PHP php.net ]
- PHP Funktion
- imageellipse ( phplist Code 22% Relevanz )
- Rubrik
- Grafik-Funktionen
- Kurzform
- imageellipse -- Draw an ellipse
- Vorschau
- ... , 0 , 0 , 0 ); // choose a color for the ellipse $col_ellipse = imagecolorallocate ( $image , 255 , 255 , 255 ); // draw the ellipse imageellipse ( $image , 200 , 150 , 300 , 200 , $col_ellipse ); // output the picture header ( "Content-type: image/png" ); imagepng ( $image ); ?> See also imagefilledellipse() and imagearc() . imagedestroy imagefill...
- PHP Manual
- [ imageellipse php.net ]
- PHP Funktion
- imagettftext ( phplist Code 22% Relevanz )
- Rubrik
- Grafik-Funktionen
- Kurzform
- imagettftext -- Erzeugt TTF-Text im Bild
- Vorschau
- ... gibt oben links die linke Ecke bei horizontaler Sichtweise an. Das Beispiel-Skript erzeugt eine schwarze GIF-Grafik von 400x30 Pixel mit dem weissen Text "Teste..." im TT-Font Arial. Beispiel 1. ImageTTFText <?php Header ( "Content-type: image/gif" ); $im = imagecreate ( 400 , 30 ); $black = ImageColorAllocate ( $im , 0 , 0 , 0 ); $white = ImageColorAllocate ( $im , 255 , 255 , 255 ); ImageTTFText ( $im , 20 , 0 , 10 , 20 , $white , "/...
- PHP Manual
- [ imagettftext php.net ]
- PHP Funktion
- mb_send_mail ( phplist Code 22% Relevanz )
- Rubrik
- Multibyte String Functions
- Kurzform
- mb_send_mail -- Send encoded mail
- Vorschau
- ...mb_send_mail mb_send_mail (PHP 4 >= 4.0.6, PHP 5) mb_send_mail -- Send encoded mail Description bool mb_send_mail ( string to, string subject, string message [, string additional_headers [, string additional_parameter]] ) mb_send_mail() sends email. Headers and message are converted and encoded according to mb_language() setting. mb_send_mail() is wrapper function of mail() . See mail() for details. to...
- PHP Manual
- [ mb_send_mail php.net ]
- PHP Funktion
- mysqli_errno ( phplist Code 22% Relevanz )
- Rubrik
- Verbesserte MySQL Erweiterung
- Kurzform
- mysqli_errno (no version information might be only in CVS)mysqli->errno -- Returns the error code for the most recent function call
- Vorschau
- ...that can succeed or fail with respect to the database link defined by the link parameter. If no errors have occured, this function will return zero. Anmerkung: Client error message numbers are listed in the MySQL errmsg.h header file, server error message numbers are listed in mysqld_error.h . In the MySQL source distribution you can find a complete list of error messages and error numbers in the file Docs/mysqld_error.txt . Rückgabewerte An ...
- PHP Manual
- [ mysqli_errno php.net ]
- PHP Funktion
- SWFShape->setLine ( phplist Code 22% Relevanz )
- Rubrik
- Ming functions for Flash
- Kurzform
- SWFShape->setLine -- Sets the shape's line style
- Vorschau
- ...f , '@' ); $m = new SWFMovie (); $m -> setDimension ( 3000 , 2000 ); $m -> setRate ( 12.0 ); $i = $m -> add ( $s ); $i -> moveTo ( 1500 - $f -> getWidth ( "!#%*@" )/ 2 , 1000 + $f -> getAscent ()/ 2 ); header ( 'Content-type: application/x-shockwave-flash' ); $m -> output (); ?> SWFShape->setLeftFill SWFShape->setRightFill...
- PHP Manual
- [ SWFShape->setLine php.net ]
- PHP Funktion
- Konstruktoren und Destruktoren ( phplist Code 22% Relevanz )
- Rubrik
- Klassen und Objekte (PHP 5)
- Kurzform
- -----
- Vorschau
- .... Um einen Vaterdestruktor zu benutzen muss man explizit die Funktion parent::__destruct() in der Destruktorimplementierung aufrufen Anmerkung: Der Destruktor wird während der Skript Abschaltung aufgerufen, weshalb die Header immer bereits gesendet sind. Anmerkung: Der Versucht eine Exception aus einem Destruktor heraus zu werfen wird einen fatalen Fehler auslösen. Autoloading Sichtbarkeit...
- PHP Manual
- [ Konstruktoren und Destruktoren php.net ]
- PHP Funktion
- Funktionen zur Ausgabesteuerung ( phplist Code 22% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...Ausgabesteuerung CXII. Funktionen zur Ausgabesteuerung Mit den Funktionen zur Ausgabesteuerung können Sie die Ausgabe eines Skripts steuern. Dies kann in verschiedenen Situationen ganz nützlich sein, besonders, wenn Sie header an den Browser schicken müssen, nachdem Ihr Skript bereits etwas ausgegeben hat. Die Ausgabesteuerungsfunktionen gelten nicht für header, die mit header() oder setcookie() geschickt wurden, sondern nur für Daten ,die mit ...
- PHP Manual
- [ Funktionen zur Ausgabesteuerung php.net ]
- PHP Funktion
- Zugehörigkeit ( phplist Code 21% Relevanz )
- Rubrik
- Extension Kategorisierung
- Kurzform
- -----
- Vorschau
- ... CLXV, Verisign Payflow Pro Funktionen Verweis CXXV, Drucker Funktionen Verweis CXXVII, PostScript document creation Verweis CXXIX, qtdom Functions Verweis CXXX, Radius Verweis CXXXI, Rar Functions Verweis CXXXIV, RPM Header Reading Funktionen Verweis CXXXV, runkit Functions Verweis CXXXVIII, SDO Functions Verweis CXXXIX, SDO XML Data Access Service Functions Verweis CXL, SDO Relational Data Access Service Functions Verweis CXLIII, PostgreSQL...
- PHP Manual
- [ Zugehörigkeit php.net ]
- PHP Funktion
- imagesetstyle ( phplist Code 21% Relevanz )
- Rubrik
- Grafik-Funktionen
- Kurzform
- imagesetstyle -- Set the style for line drawing
- Vorschau
- ... TRUE , im Fehlerfall FALSE . The style parameter is an array of pixels. Following example script draws a dashed line from upper left to lower right corner of the canvas: Beispiel 1. imagesetstyle() example <?php header ( "Content-type: image/jpeg" ); $im = imagecreatetruecolor ( 100 , 100 ); $w = imagecolorallocate ( $im , 255 , 255 , 255 ); $red = imagecolorallocate ( $im , 255 , 0 , 0 ); /* Draw a dashed line, 5 red pixels, 5 white ...
- PHP Manual
- [ imagesetstyle php.net ]
- PHP Funktion
- mb_preferred_mime_name ( phplist Code 21% Relevanz )
- Rubrik
- Multibyte String Functions
- Kurzform
- mb_preferred_mime_name -- Get MIME charset string
- Vorschau
- ... string for character encoding encoding . It returns charset string. Beispiel 1. mb_preferred_mime_string() example <?php $outputenc = "sjis-win" ; mb_http_output ( $outputenc ); ob_start ( "mb_output_handler" ); header ( "Content-Type: text/html; charset=" . mb_preferred_mime_name ( $outputenc )); ?> mb_parse_str mb_regex_encoding...
- PHP Manual
- [ mb_preferred_mime_name php.net ]
- PHP Funktion
- Vordefinierte Variablen ( phplist Code 21% Relevanz )
- Rubrik
- Reservierte Wörter in PHP
- Kurzform
- -----
- Vorschau
- ... abschalten. Server Variablen: $_SERVER Anmerkung: Dieses Array wurde mit PHP 4.1.0 eingeführt. In älteren Versionen benutzen Sie stattdessen $HTTP_SERVER_VARS . $_SERVER ist ein Array, in dem Informationen über Header, Pfade oder den Speicherort des Skripts gespeichert sind. Die Einträge dieses Arrays werden vom Webserver generiert. Es gibt keine Garantie, dass jeder Webserver alle diese Einträge erzeugt. Manche Server werden Einträge ...
- PHP Manual
- [ Vordefinierte Variablen php.net ]
- PHP Funktion
- exif_thumbnail ( phplist Code 20% Relevanz )
- Rubrik
- Exif Funktionen
- Kurzform
- exif_thumbnail -- Aufruf des eingebetteten Miniaturbildes eines TIFF- oder JPEG-Bildes
- Vorschau
- ... &imagetype]]] ) exif_thumbnail() liest das eingebettete Miniaturbild aus einem TIFF - oder JPEG -Bild. Wenn man das Miniaturbild mit dieser Funktion ausliefern möchte, sollte man den Mimetype mit Hilfe der Funktion header() mitschicken. Es kann passieren, das exif_thumbnail() das Bild nicht erzeugen, aber dessen Größe bestimmen kann. In diesem Fall, ist der Rückgabewert FALSE , obwohl width und height gesetzt sind. Parameter Liste ...
- PHP Manual
- [ exif_thumbnail php.net ]
- PHP Funktion
- mail ( phplist Code 20% Relevanz )
- Rubrik
- Mail-Funktionen
- Kurzform
- mail -- E-Mails senden
- Vorschau
- ...mail mail (PHP 3, PHP 4, PHP 5) mail -- E-Mails senden Beschreibung bool mail ( string to, string subject, string message [, string additional_headers [, string additional_parameters]] ) Sends an email. Parameter Liste to Empfänger (einer oder mehrere) der E-Mail. Das Format dieses String muss nach RFC 2822 erfolgen. Beispiele: benutzer@example.com benutzer@example...
- PHP Manual
- [ mail php.net ]
- PHP Funktion
- IBM DB2 Cloudscape and Apache Derby Functions ( phplist Code 20% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... in php.ini , or source the DB2 instance environment in your Web server start script (typically /etc/init.d/httpd or /etc/init.d/apache ). Installation To build the ibm_db2 extension, the DB2 application development header files and libraries must be installed on your system. DB2 does not install these by default, so you may have to return to your DB2 installer and add this option. The header files are included with the DB2 Application ...
- PHP Manual
- [ IBM DB2 Cloudscape and Apache Derby Functions php.net ]
- PHP Funktion
- PDF-Funktionen ( phplist Code 20% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... ( $p , 50 , 700 ); PDF_show ( $p , "Hello world!" ); PDF_continue_text ( $p , "(says PHP)" ); PDF_end_page_ext ( $p , "" ); PDF_end_document ( $p , "" ); $buf = PDF_get_buffer ( $p ); $len = strlen ( $buf ); header ( "Content-type: application/pdf" ); header ( "Content-Length: $len" ); header ( "Content-Disposition: inline; filename=hello.pdf" ); print $buf ; PDF_delete ( $p ); ?> Das folgende Code-Beispiel ist in der PDFlib-...
- PHP Manual
- [ PDF-Funktionen php.net ]
- PHP Funktion
- PDO-Funktionen ( phplist Code 20% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...where id=?" ); $stmt -> execute (array( $_GET [ 'id' ])); $stmt -> bindColumn ( 1 , $type , PDO :: PARAM_STR , 256 ); $stmt -> bindColumn ( 2 , $lob , PDO :: PARAM_LOB ); $stmt -> fetch ( PDO :: FETCH_BOUND ); header ( "Content-Type: $type" ); fpassthru ( $lob ); ?> Beispiel 12. Ein Bild in eine Datenbank einfügen Dieses Beispiel öffnet eine Datei und übergibt das File-Handle an PDO, damit sie als LOB eingefügt wird. PDO wird ...
- PHP Manual
- [ PDO-Funktionen php.net ]
- PHP Funktion
- Exif Funktionen ( phplist Code 19% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... Einführung Die Exif-Erung ermöglicht es mit Metadaten von Bildern zu arbeiten. Z.B. kann man die Exif-Funktionen nutzen, um die Metadaten von Bildern auszulesen, die mit Digitalkameras gemacht wurden, indem man die Header der JPEG - und TIFF -Bilder ausliest. Anforderungen PHP muss dafür mit --enable-exif kompiliert werden. PHP braucht keine en Bibliotheken für das Exif-Modul. Windows-Nutzer müssen zusätzlich noch die mbstring -Erung ...
- PHP Manual
- [ Exif Funktionen php.net ]
- PHP Funktion
- HTTP Funktionen ( phplist Code 19% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... -- Decode chunked-encoded data http_deflate -- Deflate data http_inflate -- Inflate data http_get_request_body_stream -- Get request body as stream http_get_request_body -- Get request body as string http_get_request_headers -- Get request headers as array http_date -- Compose HTTP RFC compliant date http_support -- Check builtin HTTP support http_match_etag -- Match ETag http_match_modified -- Match last modification ...
- PHP Manual
- [ HTTP Funktionen php.net ]
- PHP Funktion
- SOAP Funktionen ( phplist Code 19% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...->__doRequest() - Ausführen eine SOAP Anfrage SoapClient->__getFunctions() - Gibt eine Liste der SOAP Funktionen SoapClient->__getLastRequest() - Gibt letzte SOAP Anfrage SoapClient->__getLastRequestHeaders() - Gibt letzten SOAP Anfrage Header SoapClient->__getLastResponse() - Gibt letzte SOAP Antwort SoapClient->__getLastResponseHeaders() - Gibt letzten SOAP Antwort Header SoapClient->__getTypes() - Gibt ...
- PHP Manual
- [ SOAP Funktionen php.net ]
- PHP Funktion
- SWFDisplayItem->rotateTo ( phplist Code 18% Relevanz )
- Rubrik
- Ming functions for Flash
- Kurzform
- SWFDisplayItem->rotateTo -- Rotates the object in global coordinates
- Vorschau
- ...04 , $thetext ); $i3 = text ( 0xff , 0xff , 0xff , 0x9f , 180 , 1200 , 800 , 0.001 , $thetext ); for ( $i = 1 ; $i <= 100 ; ++ $i ) { $i1 = step ( $i1 ); $i2 = step ( $i2 ); $i3 = step ( $i3 ); $m -> nextFrame (); } header ( 'Content-type: application/x-shockwave-flash' ); $m -> output (); ?> See also swfdisplayitem->rotate() . SWFDisplayItem->Rotate SWFDisplayItem->scale...
- PHP Manual
- [ SWFDisplayItem->rotateTo php.net ]
- PHP Funktion
- SWFDisplayItem->setRatio ( phplist Code 18% Relevanz )
- Rubrik
- Ming functions for Flash
- Kurzform
- SWFDisplayItem->setRatio -- Sets the object's ratio
- Vorschau
- ...240 ); $m = new SWFMovie (); $m -> setDimension ( 320 , 240 ); $i = $m -> add ( $p ); $i -> moveTo ( 160 , 120 ); for ( $n = 0 ; $n <= 1.001 ; $n += 0.01 ) { $i -> setRatio ( $n ); $m -> nextFrame (); } header ( 'Content-type: application/x-shockwave-flash' ); $m -> output (); ?> SWFDisplayItem->setName SWFDisplayItem->skewX...
- PHP Manual
- [ SWFDisplayItem->setRatio php.net ]
- PHP Funktion
- dBase Funktionen ( phplist Code 18% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... -- Hängt einen neuen Datensatz an eine dBase-Datenbank an dbase_close -- Schließt eine dBase-Datenbank dbase_create -- Erzeugt eine dBase-Datenbank dbase_delete_record -- Markiert einen Datensatz als gelöscht dbase_get_header_info -- Gets the header info of a database dbase_get_record_with_names -- Gibt einen Datensatz einer dBase-Datenbank als assoziatives Array dbase_get_record -- Liest einen Datensatz aus einer dBase-Datenbank ...
- PHP Manual
- [ dBase Funktionen php.net ]
- PHP Funktion
- mysqli_stmt_errno ( phplist Code 17% Relevanz )
- Rubrik
- Verbesserte MySQL Erweiterung
- Kurzform
- mysqli_stmt_errno (no version information might be only in CVS)mysqli_stmt->errno -- Returns the error code for the most recent statement call
- Vorschau
- ... statement specified by stmt , mysqli_stmt_errno() returns the error code for the most recently invoked statement function that can succeed or fail. Anmerkung: Client error message numbers are listed in the MySQL errmsg.h header file, server error message numbers are listed in mysqld_error.h . In the MySQL source distribution you can find a complete list of error messages and error numbers in the file Docs/mysqld_error.txt . Rückgabewerte An ...
- PHP Manual
- [ mysqli_stmt_errno php.net ]
- PHP Funktion
- pg_unescape_bytea ( phplist Code 17% Relevanz )
- Rubrik
- PostgreSQL Funktionen
- Kurzform
- pg_unescape_bytea -- Entfernt Maskierungen für den Typ bytea
- Vorschau
- ... ( 'dbname=foo' ); // Die Daten vom Typ bytea holen $res = pg_query ( "SELECT data FROM gallery WHERE name='Pine trees'" ); $raw = pg_fetch_result ( $res , 'data' ); // In Binärdaten konvertieren und an den Browser senden header ( 'Content-type: image/jpeg' ); echo pg_unescape_bytea ( $raw ); ?> Siehe auch pg_escape_bytea() pg_escape_string() pg_tty pg_untrace...
- PHP Manual
- [ pg_unescape_bytea php.net ]
- PHP Funktion
- SWFDisplayItem->multColor ( phplist Code 17% Relevanz )
- Rubrik
- Ming functions for Flash
- Kurzform
- SWFDisplayItem->multColor -- Multiplies the item's color transform
- Vorschau
- ... (), $b -> getHeight ()); $i = $m -> add ( $s ); for ( $n = 0 ; $n <= 20 ; ++ $n ) { $i -> multColor ( 1.0 - $n / 10 , 1.0 , 1.0 ); $i -> addColor ( 0xff * $n / 20 , 0 , 0 ); $m -> nextFrame (); } header ( 'Content-type: application/x-shockwave-flash' ); $m -> output (); ?> SWFDisplayItem->moveTo SWFDisplayItem->remove...
- PHP Manual
- [ SWFDisplayItem->multColor php.net ]
- PHP Funktion
- Apache-spezifische Funktionen ( phplist Code 17% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... Gibt an, ob PHP Skripte veranlassen, dass Kindprozesse nach dem Request beendet werden, siehe auch apache_child_terminate() . last_modified boolean Das letzte Datum der Änderung des PHP Skripts wird als Last-Modified: header für diesen Request gesendet. xbithack boolean Dateien mit gesetztem ausführbaren Bit werden unabhängig von ihrer Dateiendung durch PHP geparst. Resource Typen Diese Erung definiert keine Resource-Typen. Vordefinierte ...
- PHP Manual
- [ Apache-spezifische Funktionen php.net ]
- PHP Funktion
- ClibPDF Funktionen ( phplist Code 17% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... ( $cpdf , "Times Roman outlined" , 50 , 50 ); cpdf_end_text ( $cpdf ); cpdf_moveto ( $cpdf , 50 , 50 ); cpdf_lineto ( $cpdf , 740 , 330 ); cpdf_stroke ( $cpdf ); cpdf_finalize_page ( $cpdf , 1 ); cpdf_finalize ( $cpdf ); Header ( "Content-type: application/pdf" ); cpdf_output_buffer ( $cpdf ); cpdf_close ( $cpdf ); ?> Die pdflib-Distribution enthält ein komplexeres Beispiel, das eine Reihe von Seiten mit einer Analoguhr erzeugt. Hier ist ...
- PHP Manual
- [ ClibPDF Funktionen php.net ]
- PHP Funktion
- IMAP POP3 und NNTP Funktionen ( phplist Code 17% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... internet text messages RFC2060 : Internet Message Access Protocol (IMAP) Version 4rev1 RFC1939 : Post Office Protocol Version 3 (POP3) RFC977 : Network News Transfer Protocol (NNTP) RFC2076 : Common Internet Message Headers RFC2045 , RFC2046 , RFC2047 , RFC2048 & RFC2049 : Multipurpose Internet Mail Extensions (MIME) Eine ausführliche Übersicht bietet auch das Buch Programming Internet Email von David Wood. Inhaltsverzeichnis imap_8bit...
- PHP Manual
- [ IMAP POP3 und NNTP Funktionen php.net ]
- PHP Funktion
- OpenSSL Funktionen ( phplist Code 17% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... nutzen Flags die sich dadurch auszeichnen, dass sie ein Bitfeld benutzen, das einen oder mehrere der folgenden Werte enthalten kann: Tabelle 1. PKCS7 KONSTANTEN Konstante Beschreibung PKCS7_TEXT Fügt den Inhaltstyp Header text/plain einer verschlüsselten/signierten Nachricht hinzu. Wenn Sie entschlüsseln oder überprüfen, werden diese Header von der Ausgabe entfernt. Entspricht die entschlüsselte oder geprüfte Nachricht nicht dem MIME Typ ...
- PHP Manual
- [ OpenSSL Funktionen php.net ]
- PHP Funktion
- Beschreibung der core php.ini Einstellungen ( phplist Code 16% Relevanz )
- Rubrik
- php.ini Einstellungen
- Kurzform
- -----
- Vorschau
- ... zu kennzeichnen. Siehe auch Referenzen in PHP . expose_php boolean Bestimmt, ob PHP die Tatsache, dass es auf dem Server installiert ist, bekannt geben darf (z.B. durch Hinzufügen seiner Signatur zum Header des Webservers). Die Sicherheit wird hierdurch nicht beeinträchtigt, aber es kann bestimmt werden, ob PHP auf Ihrem Server läuft oder nicht. zend.ze1_compatibility_mode boolean Aktiviert den Kompatibilätsmodus mit der ...
- PHP Manual
- [ Beschreibung der core php.ini Einstellungen php.net ]
- PHP Funktion
- Cookies ( phplist Code 15% Relevanz )
- Rubrik
- Features
- Kurzform
- -----
- Vorschau
- ... Client zu speichern und somit wiederkehrende Besucher zu identifizieren oder ihren Weg innerhalb des Angebotes nachzuvollziehen. Cookies können durch die Funktion setcookie() gesetzt werden. Sie sind Bestandteil des HTTP-Headers, was bedeutet, dass die Funktion setcookie() aufgerufen werden muss, bevor irgendeine Ausgabe an den Browser erfolgt. Dies ist die gleiche Einschränkung, der auch die Funktion header() unterliegt. Sie können die ...
- PHP Manual
- [ Cookies php.net ]
- PHP Funktion
- SAMConnection::send() ( phplist Code 15% Relevanz )
- Rubrik
- SAM - Simple Asynchronous Messaging
- Kurzform
- SAMConnection::send() -- Send a message to a queue or publish an item to a topic.
- Vorschau
- ... a queue before discarding it. The default value is 0 indicating the message should be retained indefinitely. SAM_WMQ_TARGET_CLIENT This property is only valid when using WebSphere MQ and indicates whether or not an RFH2 header should be included with the message. This option may be set to either 'jms' or 'mq'. The default is 'jms' which means that an RFH2 header is included. If the value 'mq' is specified then no RFH2 is included with the ...
- PHP Manual
- [ SAMConnection::send() php.net ]
- PHP Funktion
- SWFText ( phplist Code 15% Relevanz )
- Rubrik
- Ming functions for Flash
- Kurzform
- SWFText -- Creates a new SWFText object
- Vorschau
- ...200 , 2400 ); $t -> setColor ( 0xff , 0xff , 0 ); $t -> setHeight ( 1200 ); $t -> addString ( "PHP generates Flash with Ming!!" ); $m = new SWFMovie (); $m -> setDimension ( 5400 , 3600 ); $m -> add ( $t ); header ( 'Content-type: application/x-shockwave-flash' ); $m -> output (); ?> SWFText->setSpacing SWFTextField->addstring...
- PHP Manual
- [ SWFText php.net ]
- PHP Funktion
- virtual ( phplist Code 15% Relevanz )
- Rubrik
- Apache-spezifische Funktionen
- Kurzform
- virtual -- Führt eine Apache-Unteranfrage durch
- Vorschau
- ...führt eine Unteranfrage durch. Das ist nützlich für das Einbinden von CGI-Skripten, .shtml-Dateien oder allen anderen Inhalten, die von Apache verarbeitet werden sollen. Beachten Sie bitte, dass ein CGI-Skript gültige CGI-Header generieren muss, mindestens einen Content-type-Header. Um die Unteranfrage auszuführen, werden alle Buffer beendet und der Inhalt im Browser ausgegeben. Anstehende Header werden ebenfalls abgeschickt. Warnung Diese ...
- PHP Manual
- [ virtual php.net ]
- PHP Funktion
- Cookies ( phplist Code 15% Relevanz )
- Rubrik
- Migrating from PHP 3 to PHP 4
- Kurzform
- -----
- Vorschau
- ... PHP Handbuch Anhang C. Migrating from PHP 3 to PHP 4 Cookies PHP 3 had the bad habit of setting cookies in the reverse order of the setcookie() calls in your code. PHP 4 breaks with this habit and creates the cookie header lines in exactly the same order as you set the cookies in the code. This might break some existing code, but the old behaviour was so strange to understand that it deserved a change to prevent further problems in the ...
- PHP Manual
- [ Cookies php.net ]
- PHP Funktion
- SAM - Simple Asynchronous Messaging ( phplist Code 15% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...the PHP source tree for the version of PHP you wish to buildthe SAM extension against which you can obtain from php.net. This should beunpacked into a working directory of your choice. You will also need the libraries and headers used by PHP extensions availablefrom http://www.php.net/extra/win32build.zip and this should be unzipped sothat is in your working directory. You should have something like: c:\php-build\- | |---php-5.0.5--|---build...
- PHP Manual
- [ SAM - Simple Asynchronous Messaging php.net ]
- PHP Funktion
- image_type_to_mime_type ( phplist Code 14% Relevanz )
- Rubrik
- Grafik-Funktionen
- Kurzform
- image_type_to_mime_type -- Get Mime-Type for image-type returned by getimagesize exif_read_data exif_thumbnail exif_imagetype
- Vorschau
- ... Description string image_type_to_mime_type ( int imagetype ) The image_type_to_mime_type() function will determine the Mime-Type for an IMAGETYPE constant. Beispiel 1. image_type_to_mime_type (file) <?php header ( "Content-type: " . image_type_to_mime_type ( IMAGETYPE_PNG )); ?> The returned values are as follows Tabelle 1. Returned values Constants imagetype Returned value IMAGETYPE_GIF image/gif IMAGETYPE_JPEG image/jpeg ...
- PHP Manual
- [ image_type_to_mime_type php.net ]
- PHP Funktion
- imagecolorallocatealpha ( phplist Code 14% Relevanz )
- Rubrik
- Grafik-Funktionen
- Kurzform
- imagecolorallocatealpha -- Allocate a color for an image
- Vorschau
- ...radius , $radius , $yellow ); imagefilledellipse ( $image , $red_x , $red_y , $radius , $radius , $red ); imagefilledellipse ( $image , $blue_x , $blue_y , $radius , $radius , $blue ); // don't forget to output a correct header! header ( 'Content-type: image/png' ); // and finally, output the result imagepng ( $image ); imagedestroy ( $image ); ?> Anmerkung: Diese Funktion setzt die GD Bibliothek inder Version 2.0.1 oder höher voraus. See ...
- PHP Manual
- [ imagecolorallocatealpha php.net ]
- PHP Funktion
- SWFMorph ( phplist Code 14% Relevanz )
- Rubrik
- Ming functions for Flash
- Kurzform
- SWFMorph -- Creates a new SWFMorph object
- Vorschau
- ... ( 3000 , 2000 ); $m -> setBackground ( 0xff , 0xff , 0xff ); $i = $m -> add ( $p ); $i -> moveTo ( 1500 , 1000 ); for ( $r = 0.0 ; $r <= 1.0 ; $r += 0.1 ) { $i -> setRatio ( $r ); $m -> nextFrame (); } header ( 'Content-type: application/x-shockwave-flash' ); $m -> output (); ?> SWFMorph->getshape2 SWFMovie->add...
- PHP Manual
- [ SWFMorph php.net ]
- PHP Funktion
- SWFMovie->streammp3 ( phplist Code 14% Relevanz )
- Rubrik
- Ming functions for Flash
- Kurzform
- SWFMovie->streammp3 -- Streams a MP3 file
- Vorschau
- ...example <?php $m = new SWFMovie (); $m -> setRate ( 12.0 ); $m -> streamMp3 ( file_get_contents ( "distortobass.mp3" )); // use your own MP3 // 11.85 seconds at 12.0 fps = 142 frames $m -> setFrames ( 142 ); header ( 'Content-type: application/x-shockwave-flash' ); $m -> output (); ?> SWFMovie->setrate SWFMovie...
- PHP Manual
- [ SWFMovie->streammp3 php.net ]
- PHP Funktion
- Reference: Some Configuration Macros ( phplist Code 14% Relevanz )
- Rubrik
- Zend API: Hacking the Core of PHP
- Kurzform
- -----
- Vorschau
- ... Macros config.m4 The file config.m4 is processed by buildconf and must contain all the instructions to be executed during configuration. For example, these can include tests for required external files, such as header files, libraries, and so on. PHP defines a set of macros that can be used in this process, the most useful of which are described in Tabelle 46-18 . Tabelle 46-18. M4 Macros for config.m4 Macro Description AC_MSG_CHECKING...
- PHP Manual
- [ Reference: Some Configuration Macros php.net ]
- PHP Funktion
- gzcompress ( phplist Code 13% Relevanz )
- Rubrik
- Zlib Komprimierungsfunktionen
- Kurzform
- gzcompress -- Compress a string
- Vorschau
- ... data format. For details on the ZLIB compression algorithm see the document " ZLIB Compressed Data Format Specification version 3.3 " (RFC 1950). Anmerkung: This is not the same as gzip compression, which includes some header data. See gzencode() for gzip compression. Parameter Liste data The data to compress. level The level of compression. Can be given as 0 for no compression up to 9 for maximum compression. Rückgabewerte The compressed ...
- PHP Manual
- [ gzcompress php.net ]
- PHP Funktion
- rpm_close ( phplist Code 13% Relevanz )
- Rubrik
- RPM Header Reading Funktionen
- Kurzform
- rpm_close -- Closes an RPM file
- Vorschau
- ... Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Beispiele Beispiel 1. rpm_close() example <?php $file = "/path/to/file.rpm" ; $rpmr = rpm_open ( $file ); rpm_close ( $rpmr ); ?> Siehe auch rpm_open() RPM Header Reading Funktionen rpm_get_tag...
- PHP Manual
- [ rpm_close php.net ]
- PHP Funktion
- SWFAction ( phplist Code 13% Relevanz )
- Rubrik
- Ming functions for Flash
- Kurzform
- SWFAction -- Creates a new Action
- Vorschau
- ... ( 1 ); $i -> moveTo (- 500 , 2000 ); $i -> setName ( "box" ); $m -> add (new SWFAction ( "/box.x += 3;" )); $m -> nextFrame (); $m -> add (new SWFAction ( "gotoFrame(0); play();" )); $m -> nextFrame (); header ( 'Content-type: application/x-shockwave-flash' ); $m -> output (); ?> This simple example tracks down your mouse on the screen. Beispiel 2. swfaction() example <?php $m = new SWFMovie (); $m -> setRate ( 36....
- PHP Manual
- [ SWFAction php.net ]
- PHP Funktion
- SWFBitmap ( phplist Code 13% Relevanz )
- Rubrik
- Ming functions for Flash
- Kurzform
- SWFBitmap -- Loads Bitmap object
- Vorschau
- ...setRightFill ( $f ); $s -> drawLine ( 32 , 0 ); $s -> drawLine ( 0 , 32 ); $s -> drawLine (- 32 , 0 ); $s -> drawLine ( 0 , - 32 ); $m = new SWFMovie (); $m -> setDimension ( 32 , 32 ); $m -> add ( $s ); header ( 'Content-type: application/x-shockwave-flash' ); $m -> output (); ?> And you can put an alpha mask on a jpeg fill. Beispiel 2. swfbitmap() example <?php $s = new SWFShape (); // .msk file generated with "...
- PHP Manual
- [ SWFBitmap php.net ]
- PHP Funktion
- SWFSprite ( phplist Code 13% Relevanz )
- Rubrik
- Ming functions for Flash
- Kurzform
- SWFSprite -- Creates a movie clip (a sprite)
- Vorschau
- ...p -> nextFrame (); $m = new SWFMovie (); $i = $m -> add ( $p ); $i -> moveTo ( 1500 , 1000 ); $i -> setName ( "blah" ); $m -> setBackground ( 0xff , 0xff , 0xff ); $m -> setDimension ( 3000 , 2000 ); header ( 'Content-type: application/x-shockwave-flash' ); $m -> output (); ?> SWFSprite->setframes SWFText->addString...
- PHP Manual
- [ SWFSprite php.net ]
- PHP Funktion
- Constants ( phplist Code 13% Relevanz )
- Rubrik
- PDO Driver How-To
- Kurzform
- -----
- Vorschau
- ... Scrollable cursor The values for the attributes above are all defined in terms of the Zend API. The Zend API contains macros that can be used to convert a *zval to a value. These macros are defined in the Zend header file, zend_API.h in the Zend directory of your PHP build directory. Some of these attributes can be used with the statement attribute handlers such as the PDO_ATTR_CURSOR and PDO_ATTR_CURSOR_NAME. See the statement ...
- PHP Manual
- [ Constants php.net ]
- PHP Funktion
- Fleshing out your skeleton ( phplist Code 13% Relevanz )
- Rubrik
- PDO Driver How-To
- Kurzform
- -----
- Vorschau
- ...62;= 220050617static zend_module_dep pdo_SKEL_deps[] = { ZEND_MOD_REQUIRED("pdo") {NULL, NULL, NULL}};#endif/* }}} */ zend_module_entry pdo_SKEL_module_entry = {#if ZEND_EXTENSION_API_NO >= 220050617 STANDARD_MODULE_HEADER_EX, NULL, pdo_SKEL_deps,#else STANDARD_MODULE_HEADER,#endif "pdo_SKEL", pdo_SKEL_functions, PHP_MINIT(pdo_SKEL), PHP_MSHUTDOWN(pdo_SKEL), NULL, NULL, PHP_MINFO(pdo_SKEL), PHP_PDO_<DB>_MODULE_VERSION, ...
- PHP Manual
- [ Fleshing out your skeleton php.net ]
- PHP Funktion
- Abgrenzung von Anweisungen ( phplist Code 13% Relevanz )
- Rubrik
- Grundlagen der Syntax
- Kurzform
- -----
- Vorschau
- ... Datei ist optional, und in einigen Fällen ist das Weglassen hilfreich, wenn Sie include() oder require() verwenden, so dass ungewollte Whitespaces nicht am Ende einer Datei auftreten und Sie noch im Stande sind, später e Header an die Response hinzuzufügen. Es ist ebenfalls praktisch, wenn Sie Output Buffering verwenden und keine ungewollten Whitespaces am Ende eines durch die eingebundenen Dateien erzeugten Parts sehen wollen. Grundlagen der...
- PHP Manual
- [ Abgrenzung von Anweisungen php.net ]
- PHP Funktion
- Multibyte String Functions ( phplist Code 13% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... used by browsers. Although popular browsers are capable of giving a reasonably accurate guess to the character encoding of a given HTML document, it would be better to set the charset parameter in the Content-Type HTTP header to the appropriate value by header() or default_charset ini setting. Beispiel 1. php.ini setting examples ; Set default languagembstring.language = Neutral; Set default language to Neutral(UTF-8) (default)mbstring....
- PHP Manual
- [ Multibyte String Functions php.net ]
- PHP Funktion
- curl_setopt ( phplist Code 12% Relevanz )
- Rubrik
- cURL Client URL Bibiothek-Funktionen
- Kurzform
- curl_setopt -- Eine Option für einen cRUL Transfer setzen
- Vorschau
- ... genutzt werden, um PHP mitzuteilen welche erwartete Größe das Infile hat. CURLOPT_VERBOSE : Bei Setzen dieser Option auf einen Wert ungleich ungleich 0 (Null) wird cURL eine sehr detailierte Ausgabe vornehmen. CURLOPT_HEADER : Bei Setzen dieser Option auf einen Wert ungleich 0 (Null) wird cURL den Header in die Ausgabe aufnehmen. CURLOPT_NOPROGRESS : Bei Setzen dieser Option auf einen Wert ungleich 0 (Null) wird PHP angewiesen kein cURL ...
- PHP Manual
- [ curl_setopt php.net ]
- PHP Funktion
- ps_findfont ( phplist Code 12% Relevanz )
- Rubrik
- PostScript document creation
- Kurzform
- ps_findfont -- Loads a font
- Vorschau
- ...the afm file must be fontname .afm . If the font shall be embedded the file fontname .pfb containing the font outline must be present as well. Calling ps_findfont() before the first page requires to output the postscript header which includes the BoundingBox for the whole document. Usually the BoundingBox is set with the first call of ps_begin_page() which now comes after ps_findfont() . Consequently the BoundingBox has not been set and a ...
- PHP Manual
- [ ps_findfont php.net ]
- PHP Funktion
- ps_set_info ( phplist Code 12% Relevanz )
- Rubrik
- PostScript document creation
- Kurzform
- ps_set_info -- Sets information fields of document
- Vorschau
- ...PECL) ps_set_info -- Sets information fields of document Beschreibung bool ps_set_info ( resource p, string key, string val ) Sets certain information fields of the document. This fields will be shown as a comment in the header of the PostScript file. If the document is converted to pdf this fields will also be used for the document information. The BoundingBox is usually set to the value given to the first page. This only works if ps_findfont...
- PHP Manual
- [ ps_set_info php.net ]
- PHP Funktion
- rpm_get_tag ( phplist Code 12% Relevanz )
- Rubrik
- RPM Header Reading Funktionen
- Kurzform
- rpm_get_tag -- Retrieves a header tag from an RPM file
- Vorschau
- ...rpm_get_tag rpm_get_tag (no version information, might be only in CVS) rpm_get_tag -- Retrieves a header tag from an RPM file Beschreibung mixed rpm_get_tag ( resource rpmr, int tagnum ) rpm_get_tag() will retrieve a given tag from the RPM file's header and return it. Parameter Liste rpmr A file pointer resource ...
- PHP Manual
- [ rpm_get_tag php.net ]
- PHP Funktion
- SoapFault->__construct() ( phplist Code 12% Relevanz )
- Rubrik
- SOAP Funktionen
- Kurzform
- SoapFault->__construct() -- SoapFault Konstruktor
- Vorschau
- ...SoapFault->__construct() __soapCall()"HREF="function.soap-soapclient-soapcall.html"> __construct()"HREF="function.soap-soapheader-construct.html"> SoapFault->__construct() (no version information, might be only in CVS) SoapFault->__construct() -- SoapFault Konstruktor Beschreibung class SoapFault { __construct ( string faultcode, string ...
- PHP Manual
- [ SoapFault->__construct() php.net ]
- PHP Funktion
- Compiling shared PECL extensions with phpize ( phplist Code 12% Relevanz )
- Rubrik
- Installation of PECL extensions
- Kurzform
- -----
- Vorschau
- ... is missing the phpize command, and precompiled packages (like RPM's) are used, be sure to also install the appropriate devel version of the PHP package as they often include the phpize command along with the appropriate header files to build PHP and its extensions. Execute phpize --help to display additional usage information. Compiling shared PECL extensions with PEAR Compiling PECL extensions statically into PHP...
- PHP Manual
- [ Compiling shared PECL extensions with phpize php.net ]
- PHP Funktion
- curl_getinfo ( phplist Code 11% Relevanz )
- Rubrik
- cURL Client URL Bibiothek-Funktionen
- Kurzform
- curl_getinfo -- Informationen zu einem bestimmten Transfer abfragen
- Vorschau
- ..." - Anzahl der Bytes, die heruntergeladen worden sind "CURLINFO_SPEED_DOWNLOAD" - Durchschnittliche Download-Geschwindigkeit "CURLINFO_SPEED_UPLOAD" - Durchschnittliche Upload-Geschwindigkeit "CURLINFO_HEADER_SIZE" - Gesamtgröße aller empfangenen Header "CURLINFO_REQUEST_SIZE" - Gesamtgröße aller ausgestellten Abfragen, momentan nur für das HTTP gültig "CURLINFO_SSL_VERIFYRESULT" - Ergebnis der SSL Zertifikat-Überprüfung, ...
- PHP Manual
- [ curl_getinfo php.net ]
- PHP Funktion
- New Functions ( phplist Code 11% Relevanz )
- Rubrik
- Migrating from PHP 4 to PHP 5
- Kurzform
- -----
- Vorschau
- ... manager ibase_set_event_handler() - Register a callback function to be called when events are posted ibase_wait_event() - Wait for an event to be posted by the database iconv : iconv_mime_decode() - Decodes a MIME header field iconv_mime_decode_headers() - Decodes multiple MIME header fields at once iconv_mime_encode() - Composes a MIME header field iconv_strlen() - Returns the character count of string iconv_strpos() - Finds position...
- PHP Manual
- [ New Functions php.net ]
- PHP Funktion
- Source Layout ( phplist Code 11% Relevanz )
- Rubrik
- Zend API: Hacking the Core of PHP
- Kurzform
- -----
- Vorschau
- ...navigate through PHP's files. This is a must-have ability to implement and debug extensions. The following table describes the contents of the major directories. Directory Contents php-src Main PHP source files and main header files; here you'll find all of PHP's API definitions, macros, etc. (important). Everything else is below this directory. php-src/ext Repository for dynamic and built-in modules; by default, these are the "official" PHP ...
- PHP Manual
- [ Source Layout php.net ]
- PHP Funktion
- DB++ Functions ( phplist Code 10% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... for Linux, some other Unix versions. There is also a Windows version of db++, but this extension doesn't support it (yet). Installation In order to build this extension yourself you need the db++ client libraries and header files to be installed on your system (these are included in the db++ installation archives by default). You have to run configure with option --with-dbplus to build this extension. configure looks for the client ...
- PHP Manual
- [ DB++ Functions php.net ]
- PHP Funktion
- URL Funktionen ( phplist Code 10% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... ( integer ) PHP_URL_PATH ( integer ) PHP_URL_QUERY ( integer ) PHP_URL_FRAGMENT ( integer ) Inhaltsverzeichnis base64_decode -- DekodiertMIME base64-kodierte Daten base64_encode -- Kodiert Daten MIME base64 get_headers -- Ruft alle Header ab, die der Server als Antwort auf einen HTTP-Request versendet get_meta_tags -- Liest alle content-Attribute der Meta-Tags einer Datei aus und gibt ein Array http_build_query -- Erstellen eines URL-...
- PHP Manual
- [ URL Funktionen php.net ]
- PHP Funktion
- Troubleshooting ( phplist Code 10% Relevanz )
- Rubrik
- Zend API: Hacking the Core of PHP
- Kurzform
- -----
- Vorschau
- ... troubleshooting can be done when compiling static or dynamic modules. The only problem that could arise is that the compiler will complain about missing definitions or something similar. In this case, make sure that all header files are available and that you specified their path correctly in the compilation command. To be sure that everything is located correctly, extract a clean PHP source tree and use the automatic build in the ext directory...
- PHP Manual
- [ Troubleshooting php.net ]
- PHP Funktion
- iconv Funktionen ( phplist Code 9% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...Erung definiert keine Resource-Typen. Vordefinierte Konstanten Diese Erung definiert keine Konstanten. Inhaltsverzeichnis iconv_get_encoding -- Aktuelle Einstellung für Zeichensatz-Konvertierung auslesen iconv_mime_decode_headers -- Decodes multiple MIME header fields at once iconv_mime_decode -- Decodes a MIME header field iconv_mime_encode -- Composes a MIME header field iconv_set_encoding -- Einstellungen für die Zeichensatzkonvertierung ...
- PHP Manual
- [ iconv Funktionen php.net ]
- PHP Funktion
- Grafik-Funktionen ( phplist Code 9% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... ) IMAGETYPE_IFF ( integer ) IMAGETYPE_JB2 ( integer ) IMAGETYPE_JPC ( integer ) IMAGETYPE_JP2 ( integer ) IMAGETYPE_JPX ( integer ) IMAGETYPE_SWC ( integer ) Beispiele Beispiel 1. PNG erzeugen mit PHP <?php header ( "Content-type: image/png" ); $string = $_GET [ 'text' ]; $im = imagecreatefrompng ( "images/button1.png" ); $orange = imagecolorallocate ( $im , 220 , 210 , 60 ); $px = ( imagesx ( $im ) - 7.5 * strlen ( $string )) / 2...
- PHP Manual
- [ Grafik-Funktionen php.net ]
- PHP Funktion
- Source Discussion ( phplist Code 9% Relevanz )
- Rubrik
- Zend API: Hacking the Core of PHP
- Kurzform
- -----
- Vorschau
- ... Discussion Now that you've got a safe build environment and you're able to include the modules into PHP files, it's time to discuss how everything works. Module Structure All PHP modules follow a common structure: Header file inclusions (to include all required macros, API definitions, etc.) C declaration of exported functions (required to declare the Zend function block) Declaration of the Zend function block Declaration of the Zend ...
- PHP Manual
- [ Source Discussion php.net ]
- PHP Funktion
- SWFMovie->output ( phplist Code 8% Relevanz )
- Rubrik
- Ming functions for Flash
- Kurzform
- SWFMovie->output -- Dumps your lovingly prepared movie out
- Vorschau
- ... PHP-Versionen ohneAnkündigung ändern. Seien Sie gewarnt und verwenden Sie diese Funktion aufeigenes Risiko. swfmovie->output() dumps your lovingly prepared movie out. In PHP, preceding this with the command <?php header ( 'Content-type: application/x-shockwave-flash' ); ?> convinces the browser to display this as a flash movie. The compression level can be a value between 0 and 9, defining the swf compression similar to gzip ...
- PHP Manual
- [ SWFMovie->output php.net ]
- PHP Funktion
- Ingres II Funktionen ( phplist Code 8% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... zugreifen. Damit Ihnen diese Funktionen zur Verfügung stehen, müssen Sie php mit der Ingres-Unterstützung kompilieren, indem Sie die Option --with-ingres angeben. Ausserdem brauchen Sie die Open API Bibliothek sowie header Dateien, die in Ingres II eingebunden werden. Falls die II_SYSTEM Umgebungsvariable nicht korrekt gesetzt ist, müssen Sie vielleicht --with-ingres=DIR benutzen, um Ihr Inges Installationsverzeichnis anzugeben. Wenn Sie ...
- PHP Manual
- [ Ingres II Funktionen php.net ]
- PHP Funktion
- Printing Information ( phplist Code 8% Relevanz )
- Rubrik
- Zend API: Hacking the Core of PHP
- Kurzform
- -----
- Vorschau
- ... prints a section in phpinfo() for you if you specify the ZEND_MINFO function, including the module name in the heading. Everything else must be formatted and printed by you. Typically, you can print an HTML table header using php_info_print_table_start() and then use the standard functions php_info_print_table_header() and php_info_print_table_row() . As arguments, both take the number of columns (as integers) and the column contents (as...
- PHP Manual
- [ Printing Information php.net ]
- PHP Funktion
- IBM Functions (PDO_IBM) ( phplist Code 7% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... separately purchased DB2 Connect product . PDO_IBM is a PECL extension, so follow the instructions in Kapitel 7 to install the PDO_IBM extension. Issue the configure command to point to the location of your DB2 Client header files and libraries as follows: bash$ ./configure --with-pdo-ibm=/path/to/sqllib[,shared] The configure command defaults to the value of the DB2DIR environment variable. Inhaltsverzeichnis PDO_IBM DSN -- Connecting to IBM...
- PHP Manual
- [ IBM Functions (PDO_IBM) php.net ]
- PHP Funktion
- Preparation and Housekeeping ( phplist Code 6% Relevanz )
- Rubrik
- PDO Driver How-To
- Kurzform
- -----
- Vorschau
- ....m4 config.w32 CREDITS package.xml pdo_SKEL.c php_pdo_SKEL.h php_pdo_SKEL_int.h SKEL_dbh.c SKEL_stmt.c unix build script win32 build script meta information about the package standard PHP extension glue driver private header contains the implementation of the PDO driver interface contains the implementation of the PDO statement interface The contents of these files are defined later in this document. Creating a skeleton The easiest way to ...
- PHP Manual
- [ Preparation and Housekeeping php.net ]
- PHP Funktion
- Forms Data Format Funktionen ( phplist Code 6% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...Von Adobe unterstütze Plattformen sind Win32, Linux, Solaris und AIX. Installation You must compile PHP with --with-fdftk[=DIR] . Anmerkung: If you run into problems configuring PHP with fdftk support, check whether the header file fdftk.h and the library libfdftk.so are at the right place. The configure script supports both the directory structure of the FDF SDK distribution and the usual DIR/include / DIR/lib layout, so you can point it ...
- PHP Manual
- [ Forms Data Format Funktionen php.net ]
- PHP Funktion
- Informix Functions (PDO_INFORMIX) ( phplist Code 5% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... Informix Support Site . PDO_INFORMIX is a PECL extension, so follow the instructions in Kapitel 7 to install the PDO_INFORMIX extension. Issue the configure command to point to the location of your Informix Client SDK header files and libraries as follows: bash$ ./configure --with-pdo-informix=/path/to/SDK[,shared] The configure command defaults to the value of the INFORMIXDIR environment variable. Scrollable cursors PDO_INFORMIX supports ...
- PHP Manual
- [ Informix Functions (PDO_INFORMIX) php.net ]
- PHP Funktion
- SWFbutton ( phplist Code 0% Relevanz )
- Rubrik
- Ming functions for Flash
- Kurzform
- SWFbutton -- Creates a new Button
- Vorschau
- ... ); $m = new SWFMovie (); $m -> setDimension ( 4000 , 3000 ); $i = $m -> add ( $p ); $i -> setName ( "label" ); $i -> moveTo ( 400 , 1900 ); $i = $m -> add ( $b ); $i -> moveTo ( 400 , 900 ); header ( 'Content-type: application/x-shockwave-flash' ); $m -> output (); ?> This simple example will enables you to drag draw a big red button on the windows. No drag-and-drop, just moving around. Beispiel 2. swfbutton...
- PHP Manual
- [ SWFbutton php.net ]