file PHP Funktionen : PHP Übersicht : PHP Manual

file

PHP Function file / PHP Funktion file

phplist » Webkatalog Script - Link Script » PHP Function Coder » file
PHP Funktion
file ( phplist Code 100% Relevanz )
Rubrik
Funktionen des Dateisystems
Kurzform
file -- Liest eine Datei komplett in ein Array
Vorschau
...file file (PHP 3, PHP 4, PHP 5) file -- Liest eine Datei komplett in ein Array Beschreibung array file ( string filename [, int use_include_path] ) Die Funktion file() ist identisch mit readfile() , außer dass die eingelesene Datei als Array gegeben wird. Jedes Feld des Arrays korrespondiert mit einer Zeile der Datei. Der Zeilenumbruch bleibt erhalten. Im Fehlerfall gibt file() FALSE . Anmerkung: Jede Zeile in dem...
PHP Manual
[ file php.net ]

PHP Funktion
gzfile ( phplist Code 80% Relevanz )
Rubrik
Zlib Komprimierungsfunktionen
Kurzform
gzfile -- Read entire gz-file into an array
Vorschau
...gzfile gzfile (PHP 3, PHP 4, PHP 5) gzfile -- Read entire gz-file into an array Beschreibung array gzfile ( string filename [, int use_include_path] ) This function is identical to readgzfile() , except that it returns the file in an array. Parameter Liste filename The file name. use_include_path You can set this optional parameter to 1 , if you want to search for the file in the include_path too. Rü...
PHP Manual
[ gzfile php.net ]

PHP Funktion
filetype ( phplist Code 67% Relevanz )
Rubrik
Funktionen des Dateisystems
Kurzform
filetype -- Liefert den Typ einer Datei
Vorschau
...filetype filetype (PHP 3, PHP 4, PHP 5) filetype -- Liefert den Typ einer Datei Beschreibung string filetype ( string filename ) Gibt den Typ einer Datei . Mögliche Werte sind fifo, char, dir, block, link, file und unknown. Gibt FALSE , wenn ein Fehler auftrat. filetype() erzeugt auch eine E_NOTICE Meldung, wenn der stat-Aufruf fehlschlägt oder der Dateityp ubekannt ist. Das Ergebnis dieses Funktionsaufrufes wird ...
PHP Manual
[ filetype php.net ]

PHP Funktion
fileatime ( phplist Code 62% Relevanz )
Rubrik
Funktionen des Dateisystems
Kurzform
fileatime -- Liefert Datum und Uhrzeit des letzten Zugriffs auf eine Datei
Vorschau
...fileatime fileatime (PHP 3, PHP 4, PHP 5) fileatime -- Liefert Datum und Uhrzeit des letzten Zugriffs auf eine Datei Beschreibung int fileatime ( string filename ) Gibt Datum und Uhrzeit des letzten Zugriffs auf eine Datei , oder FALSE wenn ein Fehler auftrat. Das Datum wird als UNIX-Timestamp gegeben. Das Ergebnis dieses Funktionsaufrufes wird zwischengespeichert. Siehe ...
PHP Manual
[ fileatime php.net ]

PHP Funktion
hash_file ( phplist Code 62% Relevanz )
Rubrik
hash Functions
Kurzform
hash_file -- Generate a hash value using the contents of a given file
Vorschau
...hash_file hash_file (no version information, might be only in CVS) hash_file -- Generate a hash value using the contents of a given file Beschreibung string hash_file ( string algo, string filename [, bool raw_output] ) Parameter Liste algo Name of selected hashing algorithm (i.e. "md5", "sha256", "haval160,4", etc..) filename URL describing location of file to be hashed; Supports fopen wrappers. raw_output ...
PHP Manual
[ hash_file php.net ]

PHP Funktion
finfo_file ( phplist Code 57% Relevanz )
Rubrik
Fileinfo Functions
Kurzform
finfo_file -- Return information about a file
Vorschau
...finfo_file finfo_file (PECL) finfo_file -- Return information about a file Beschreibung string finfo_file ( resource finfo, string file_name [, int options [, resource context]] ) class finfo { string file ( string file_name [, int options [, resource context]] ) } This function is used to get information about a file. Parameter Liste finfo Fileinfo resource returned by finfo_open() . file_name Name of a file to be checked. options ...
PHP Manual
[ finfo_file php.net ]

PHP Funktion
readgzfile ( phplist Code 57% Relevanz )
Rubrik
Zlib Komprimierungsfunktionen
Kurzform
readgzfile -- Output a gz-file
Vorschau
...readgzfile readgzfile (PHP 3, PHP 4, PHP 5) readgzfile -- Output a gz-file Beschreibung int readgzfile ( string filename [, int use_include_path] ) Reads a file, decompresses it and writes it to standard output. readgzfile() can be used to read a file which is not in gzip format; in this case readgzfile() will directly read from the file without decompression. Parameter Liste filename The file name. This file will be opened from the ...
PHP Manual
[ readgzfile php.net ]

PHP Funktion
ps_fill ( phplist Code 55% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_fill -- Fills the current path
Vorschau
... -- Fills the current path Beschreibung bool ps_fill ( resource psdoc ) Fills the path constructed with previously called drawing functions like ps_lineto() . Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_fill_stroke() ps_stroke() ps_fill_stroke ps_findfont...
PHP Manual
[ ps_fill php.net ]

PHP Funktion
file_exists ( phplist Code 53% Relevanz )
Rubrik
Funktionen des Dateisystems
Kurzform
file_exists -- Prüft ob eine Datei oder ein Verzeichnis existiert
Vorschau
...file_exists file_exists (PHP 3, PHP 4, PHP 5) file_exists -- Prüft, ob eine Datei oder ein Verzeichnis existiert Beschreibung bool file_exists ( string filename ) Gibt TRUE , wenn die mit filename spezifizierte Datei bzw. das Verzeichnis existiert, andernfalls FALSE . Zum Prüfen von Dateien auf Windows network shares verwenden Sie bitte //computername/share/filename oder \\computername\share\filename . ...
PHP Manual
[ file_exists php.net ]

PHP Funktion
ps_open_file ( phplist Code 50% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_open_file -- Opens a file for output
Vorschau
...ps_open_file ps_open_file (PECL) ps_open_file -- Opens a file for output Beschreibung bool ps_open_file ( resource psdoc [, string filename] ) Creates a new file on disk and writes the PostScript document into it. The file will be closed when ps_close() is called. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . filename The name of the postscript file. If filename is not passed the document will ...
PHP Manual
[ ps_open_file php.net ]

PHP Funktion
http_put_file ( phplist Code 47% Relevanz )
Rubrik
HTTP Funktionen
Kurzform
http_put_file -- Perform PUT request with file
Vorschau
...http_put_file http_put_file (PECL) http_put_file -- Perform PUT request with file Beschreibung string http_put_file ( string url [, string file [, array options [, array &info]]] ) Performs an HTTP PUT request on the supplied url. See http_get() for a full list of available parameters and options . Parameter Liste url URL file The file to put options ...
PHP Manual
[ http_put_file php.net ]

PHP Funktion
ps_circle ( phplist Code 46% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_circle -- Draws a circle
Vorschau
... within a path it will add the circle as a subpath. If the last drawing operation does not end in point ( x + radius , y ) then there will be a gap in the path. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . x The x-coordinate of the circle's middle point. y The y-coordinate of the circle's middle point. radius The radius of the circle Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . ...
PHP Manual
[ ps_circle php.net ]

PHP Funktion
ps_shfill ( phplist Code 46% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_shfill -- Fills an area with a shading
Vorschau
... before with ps_shading() . This is an alternative way to creating a pattern from a shading ps_shading_pattern() and using the pattern as the filling color. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . shadingid The identifier of a shading previously created with ps_shading() . Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_shading() ps_shading_pattern() ...
PHP Manual
[ ps_shfill php.net ]

PHP Funktion
fread ( phplist Code 44% Relevanz )
Rubrik
Funktionen des Dateisystems
Kurzform
fread -- Liest Binärdaten aus einer Datei
Vorschau
...5) fread -- Liest Binärdaten aus einer Datei Beschreibung string fread ( resource handle, int length ) fread() liest length Bytes vom Dateizeiger handle . Das Lesen wird beendet, wenn length Bytes gelesen oder EOF (end of file bzw. Dateiende) erreicht wurde (was eben früher zutrifft). <?php // liest den Inhalt einer Datei in einen String $filename = "/usr/local/simi.txt" ; $handle = fopen ( $filename , "r" ); $contents = fread ( $handle , ...
PHP Manual
[ fread php.net ]

PHP Funktion
hash_hmac_file ( phplist Code 44% Relevanz )
Rubrik
hash Functions
Kurzform
hash_hmac_file -- Generate a keyed hash value using the HMAC method and the contents of a given file
Vorschau
...hash_hmac_file hash_hmac_file (no version information, might be only in CVS) hash_hmac_file -- Generate a keyed hash value using the HMAC method and the contents of a given file Beschreibung string hash_hmac_file ( string algo, string filename, string key [, bool raw_output] ) Parameter Liste algo Name of selected hashing algorithm (i.e. "md5", "sha256", "haval160,4", etc..) filename URL describing location of file to be hashed...
PHP Manual
[ hash_hmac_file php.net ]

PHP Funktion
http_send_file ( phplist Code 44% 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
ps_fill_stroke ( phplist Code 44% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_fill_stroke -- Fills and strokes the current path
Vorschau
... path Beschreibung bool ps_fill_stroke ( resource psdoc ) Fills and draws the path constructed with previously called drawing functions like ps_lineto() . Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_fill() ps_stroke() ps_end_template ps_fill...
PHP Manual
[ ps_fill_stroke php.net ]

PHP Funktion
m_setssl_cafile ( phplist Code 42% Relevanz )
Rubrik
MCVE (Monetra) Payment Functions
Kurzform
m_setssl_cafile -- Set SSL CA (Certificate Authority) file for verification of server certificate
Vorschau
...m_setssl_cafile m_setssl_cafile (PHP 5 >= 5.1.0RC1) m_setssl_cafile -- Set SSL CA (Certificate Authority) file for verification of server certificate Beschreibung int m_setssl_cafile ( resource conn, string cafile ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. Parameter Liste conn Its description cafile Its description Rückgabewerte What the function returns, first ...
PHP Manual
[ m_setssl_cafile php.net ]

PHP Funktion
tidy_parse_file ( phplist Code 42% Relevanz )
Rubrik
Tidy Functions
Kurzform
tidy_parse_file -- Parse markup in file or URI
Vorschau
...tidy_parse_file prev"HREF="function.tidy-node-prev.html"> tidy_parse_file (PHP 5) tidy_parse_file -- Parse markup in file or URI Description Procedural style: tidy tidy_parse_file ( string filename [, mixed config [, string encoding [, bool use_include_path]]] ) Object oriented style: bool tidy->parseFile ( string filename [, mixed config [, string encoding [, bool use_include_path]]] ) This function parses ...
PHP Manual
[ tidy_parse_file php.net ]

PHP Funktion
xdiff_file_diff ( phplist Code 42% Relevanz )
Rubrik
xdiff Functions
Kurzform
xdiff_file_diff -- Make unified diff of two files
Vorschau
...xdiff_file_diff xdiff_file_diff (PECL) xdiff_file_diff -- Make unified diff of two files Description bool xdiff_file_diff ( string file1, string file2, string dest [, int context [, bool minimal]] ) xdiff_file_diff() makes unified diff of files file1 and file2 and stores result in file dest . context indicated how many lines of context you want to include in diff result. Set minimal to TRUE if you want to minimalize size of diff...
PHP Manual
[ xdiff_file_diff php.net ]

PHP Funktion
delete ( phplist Code 40% Relevanz )
Rubrik
Funktionen des Dateisystems
Kurzform
delete -- Siehe unlink() oder unset()
Vorschau
...delete delete (no version information, might be only in CVS) delete -- Siehe unlink() oder unset() Beschreibung void delete ( string file ) Dieses ist ein "Dummy Handbuch Eintrag" für diejenigen, die nach einer Funktion wie unlink() oder unset() an der falschen Stelle suchen. Siehe auch unlink() um Dateien zu löschen, unset() um Variablen zu löschen. ...
PHP Manual
[ delete php.net ]

PHP Funktion
domxml_open_file ( phplist Code 40% Relevanz )
Rubrik
DOM XML Funktionen
Kurzform
domxml_open_file -- Creates a DOM object from an XML file
Vorschau
...domxml_open_file domxml_open_file (PHP 4 >= 4.2.1, PECL) domxml_open_file -- Creates a DOM object from an XML file Beschreibung DomDocument domxml_open_file ( string filename [, int mode [, array &error]] ) The function parses the XML document in the given file. Parameter Liste filename The path to the XML file. The file is accessed in read-only mode. mode This optional parameter ...
PHP Manual
[ domxml_open_file php.net ]

PHP Funktion
fam_monitor_file ( phplist Code 40% Relevanz )
Rubrik
File Alteration Monitor Functions
Kurzform
fam_monitor_file -- Monitor a regular file for changes
Vorschau
...fam_monitor_file fam_monitor_file (PHP 5 <= 5.0.4) fam_monitor_file -- Monitor a regular file for changes Beschreibung resource fam_monitor_file ( resource fam, string filename ) fam_monitor_file() requests monitoring for a single file. A FAM event will be generated whenever the file status (i.e. the result of function stat() on that file) changes. The possible event codes are described in detail in the constants ...
PHP Manual
[ fam_monitor_file php.net ]

PHP Funktion
hash_update_file ( phplist Code 40% Relevanz )
Rubrik
hash Functions
Kurzform
hash_update_file -- Pump data into an active hashing context from a file
Vorschau
...hash_update_file hash_update_file (no version information, might be only in CVS) hash_update_file -- Pump data into an active hashing context from a file Beschreibung bool hash_update_file ( resource context, string filename [, resource context] ) Parameter Liste context Hashing context returned by hash_init() . filename URL describing location of file to be hashed; Supports fopen wrappers. context Stream context as returned by ...
PHP Manual
[ hash_update_file php.net ]

PHP Funktion
px_set_blob_file ( phplist Code 40% Relevanz )
Rubrik
Paradox File Access
Kurzform
px_set_blob_file -- Sets the file where blobs are read from
Vorschau
...px_set_blob_file px_set_blob_file (PECL) px_set_blob_file -- Sets the file where blobs are read from Beschreibung bool px_set_blob_file ( resource pxdoc, string filename ) Sets the name of the file where blobs are going to be read from or written into. Without calling this function, px_get_record() or px_retrieve_record() will only return data in blob fields if the data is part of the record and not stored in the ...
PHP Manual
[ px_set_blob_file php.net ]

PHP Funktion
runkit_lint_file ( phplist Code 40% Relevanz )
Rubrik
runkit Functions
Kurzform
runkit_lint_file -- Check the PHP syntax of the specified file
Vorschau
...runkit_lint_file runkit_lint_file (PECL) runkit_lint_file -- Check the PHP syntax of the specified file Beschreibung bool runkit_lint_file ( string filename ) The runkit_lint_file() function performs a syntax (lint) check on the specified filename testing for scripting errors. This is similar to using php -l from the commandline. Anmerkung: Sandbox support (required for runkit_lint() , ...
PHP Manual
[ runkit_lint_file php.net ]

PHP Funktion
tidy_repair_file ( phplist Code 40% Relevanz )
Rubrik
Tidy Functions
Kurzform
tidy_repair_file -- Repair a file and return it as a string
Vorschau
...tidy_repair_file tidy_repair_file (PHP 5) tidy_repair_file -- Repair a file and return it as a string Description string tidy_repair_file ( string filename [, mixed config [, string encoding [, bool use_include_path]]] ) This function repairs the given file and returns it as a string. Den config Parameterkönnen Sie entweder als Array oder String übergeben. Bei der Ü...
PHP Manual
[ tidy_repair_file php.net ]

PHP Funktion
xdiff_file_patch ( phplist Code 40% Relevanz )
Rubrik
xdiff Functions
Kurzform
xdiff_file_patch -- Patch a file with an unified diff
Vorschau
...xdiff_file_patch xdiff_file_patch (PECL) xdiff_file_patch -- Patch a file with an unified diff Description mixed xdiff_file_patch ( string file, string patch, string dest [, int flags] ) xdiff_file_patch() patches file file with unified patch in file patch and stores result in file dest . flags can be either XDIFF_PATCH_NORMAL (default mode, normal patch) or XDIFF_PATCH_REVERSE (reversed patch). Returns FALSE if an internal error happened, ...
PHP Manual
[ xdiff_file_patch php.net ]

PHP Funktion
file_put_contents ( phplist Code 38% Relevanz )
Rubrik
Funktionen des Dateisystems
Kurzform
file_put_contents -- Write a string to a file
Vorschau
...file_put_contents file_put_contents (PHP 5) file_put_contents -- Write a string to a file Beschreibung int file_put_contents ( string filename, mixed data [, int flags [, resource context]] ) Identical to calling fopen() , fwrite() , and fclose() successively. You can also specify the data parameter as an array (not multi-dimension arrays). This is ...
PHP Manual
[ file_put_contents php.net ]

PHP Funktion
finfo_buffer ( phplist Code 38% Relevanz )
Rubrik
Fileinfo Functions
Kurzform
finfo_buffer -- Return information about a string buffer
Vorschau
... ( resource finfo, string string [, int options] ) class finfo { string buffer ( string string [, int options] ) } This function is used to get information about binary data in a string. Parameter Liste finfo Fileinfo resource returned by finfo_open() . string Content of a file to be checked. options One or disjunction of more Fileinfo constants . Rückgabewerte Returns a textual description of the string argument, or FALSE if an ...
PHP Manual
[ finfo_buffer php.net ]

PHP Funktion
xdiff_file_merge3 ( phplist Code 38% Relevanz )
Rubrik
xdiff Functions
Kurzform
xdiff_file_merge3 -- Merge 3 files into one
Vorschau
...xdiff_file_merge3 xdiff_file_merge3 (PECL) xdiff_file_merge3 -- Merge 3 files into one Description mixed xdiff_file_merge3 ( string file1, string file2, string file3, string dest ) xdiff_file_merge3() merges files file1 , file2 and file3 into one and stores result in file dest . Returns TRUE if merge was successful, string with rejected chunks if it was not or FALSE if an internal error happened. Beispiel 1. xdiff_file_merge3() example...
PHP Manual
[ xdiff_file_merge3 php.net ]

PHP Funktion
Encryption Filters ( phplist Code 36% Relevanz )
Rubrik
List of Available Filters
Kurzform
-----
Vorschau
...modes_dir') Location of modes modules iv Required N/A Typically 8, 16, or 32 bytes of binary data. Depends on cipher key Required N/A Typically 8, 16, or 32 bytes of binary data. Depends on cipher Beispiel N-10. Encrypting file output using 3DES <?php $passphrase = 'My secret' ; /* Turn a human readable passphrase * into a reproducable iv/key pair */ $iv = substr ( md5 ( 'iv' . $passphrase , true ), 0 , 8 ); $key = substr ( md5 ( 'pass1' . $...
PHP Manual
[ Encryption Filters php.net ]

PHP Funktion
gzclose ( phplist Code 36% Relevanz )
Rubrik
Zlib Komprimierungsfunktionen
Kurzform
gzclose -- Close an open gz-file pointer
Vorschau
...gzclose gzclose (PHP 3, PHP 4, PHP 5) gzclose -- Close an open gz-file pointer Beschreibung bool gzclose ( resource zp ) Closes the given gz-file pointer. Parameter Liste zp The gz-file pointer. It must be valid, and must point to a file successfully opened by gzopen() . Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Beispiele Beispiel 1. gzclose() example <?php $gz = gzopen ( 'somefile....
PHP Manual
[ gzclose php.net ]

PHP Funktion
gzwrite ( phplist Code 36% Relevanz )
Rubrik
Zlib Komprimierungsfunktionen
Kurzform
gzwrite -- Binary-safe gz-file write
Vorschau
...gzwrite gzwrite (PHP 3, PHP 4, PHP 5) gzwrite -- Binary-safe gz-file write Beschreibung int gzwrite ( resource zp, string string [, int length] ) gzwrite() writes the contents of string to the given gz-file. Parameter Liste zp The gz-file pointer. It must be valid, and must point to a file successfully opened by gzopen() . string The string to write. length The number of uncompressed bytes to write. If supplied, writing ...
PHP Manual
[ gzwrite php.net ]

PHP Funktion
imagegd ( phplist Code 36% Relevanz )
Rubrik
Grafik-Funktionen
Kurzform
imagegd -- Output GD image to browser or file
Vorschau
...imagegd imagegd (PHP 4 >= 4.1.0, PHP 5) imagegd -- Output GD image to browser or file Description bool imagegd ( resource image [, string filename] ) imagegd() outputs a GD image to filename . The image argument is the return from the imagecreatetruecolor() function. The filename parameter is optional, and if left off, the raw image stream will be output directly. Anmerkung: The GD format is commonly used...
PHP Manual
[ imagegd php.net ]

PHP Funktion
ini_get ( phplist Code 36% Relevanz )
Rubrik
PHP Optionen & Informationen
Kurzform
ini_get -- Gets the value of a configuration option
Vorschau
... values: A boolean ini value of off will be returned as an empty string or "0" while a boolean ini value of on will be returned as "1". When querying memory size values: Many ini memory size values, such as upload_max_filesize , are stored in the php.ini file in shorthand notation. ini_get() will return the exact string stored in the php.ini file and NOT its integer equivalent. Attempting normal arithmetic functions on these values will not ...
PHP Manual
[ ini_get php.net ]

PHP Funktion
ps_open_image_file ( phplist Code 36% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_open_image_file -- Opens image from file
Vorschau
...ps_open_image_file ps_open_image_file (PECL) ps_open_image_file -- Opens image from file Beschreibung int ps_open_image_file ( resource psdoc, string type, string filename [, string stringparam [, int intparam]] ) Loads an image for later use. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . type The type of the image. Possible values are png...
PHP Manual
[ ps_open_image_file php.net ]

PHP Funktion
Fileinfo Functions ( phplist Code 36% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...Fileinfo Functions XXXVIII. Fileinfo Functions Einführung The functions in this module try to guess the content type and encoding of a file by looking for certain magic byte sequences at specific positions within the file. While this is not a bullet proof approach the heuristics used do a very good job. Anforderungen magic_open library is needed to build this extension. Installation A short installation note: just type $ pear install ...
PHP Manual
[ Fileinfo Functions php.net ]

PHP Funktion
Compression Filters ( phplist Code 35% Relevanz )
Rubrik
List of Available Filters
Kurzform
-----
Vorschau
...Compression Filters PHP Handbuch Anhang N. List of Available Filters Compression Filters While the Compression Wrappers provide a way of creating gzip and bz2 compatible files on the local filesystem, they do not provide a means for generalized compression over network streams, nor do they provide a means to begin with a non-compressed stream and transition to a compressed one. For this, a compression filter may ...
PHP Manual
[ Compression Filters php.net ]

PHP Funktion
simplexml_load_file ( phplist Code 35% Relevanz )
Rubrik
SimpleXML Funktionen
Kurzform
simplexml_load_file -- Übersetzt ein XML File in ein Objekt
Vorschau
...simplexml_load_file simplexml_load_file (PHP 5) simplexml_load_file -- Übersetzt ein XML File in ein Objekt Beschreibung object simplexml_load_file ( string filename [, string class_name [, int options [, string ns [, bool is_prefix]]]] ) Die Funktion wandelt das wohlgeformte (well-formed) XML-Dokument, das Sie im Parameter filename angegeben haben, in ein Objekt der Klasse ...
PHP Manual
[ simplexml_load_file php.net ]

PHP Funktion
ZipArchive::addFile ( phplist Code 35% Relevanz )
Rubrik
ZIP Funktionen (Lesezugriff)
Kurzform
ZipArchive::addFile -- Adds a file to a ZIP archive from the given path
Vorschau
...ZipArchive::addFile ZipArchive::addFile (no version information, might be only in CVS) ZipArchive::addFile -- Adds a file to a ZIP archive from the given path Beschreibung bool ZipArchive::addFile ( string filename [, string localname] ) Adds a file to a ZIP archive from a given path Parameter Liste filename The path to the file to add. localname local name inside ZIP archive. Rückgabewerte Gibt bei Erfolg TRUE , im ...
PHP Manual
[ ZipArchive::addFile php.net ]

PHP Funktion
Paradox File Access ( phplist Code 35% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...Paradox File Access CXIV. Paradox File Access Einführung Warnung Diese Erung ist EXPERIMENTELL . Das Verhalten dieser Erung,einschließlich der Funktionsnamen, und alles Andere was hier dokumentiertist, kann sich in zukünftigen PHP-Versionen ohne Ankündigung ä...
PHP Manual
[ Paradox File Access php.net ]

PHP Funktion
bcompiler_load ( phplist Code 33% Relevanz )
Rubrik
PHP bytecode Compiler
Kurzform
bcompiler_load -- Reads and creates classes from a bz compressed file
Vorschau
...bcompiler_load bcompiler_load (PECL) bcompiler_load -- Reads and creates classes from a bz compressed file Description bool bcompiler_load ( string filename ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. Seien Sie gewarnt und verwenden ...
PHP Manual
[ bcompiler_load php.net ]

PHP Funktion
bcompiler_read ( phplist Code 33% Relevanz )
Rubrik
PHP bytecode Compiler
Kurzform
bcompiler_read -- Reads and creates classes from a filehandle
Vorschau
...bcompiler_read bcompiler_read (PECL) bcompiler_read -- Reads and creates classes from a filehandle Description bool bcompiler_read ( resource filehandle ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. Seien Sie gewarnt und verwenden ...
PHP Manual
[ bcompiler_read php.net ]

PHP Funktion
bcompiler_write_file ( phplist Code 33% Relevanz )
Rubrik
PHP bytecode Compiler
Kurzform
bcompiler_write_file -- Writes a php source file as bytecodes
Vorschau
...bcompiler_write_file bcompiler_write_file (PECL) bcompiler_write_file -- Writes a php source file as bytecodes Description bool bcompiler_write_file ( resource filehandle, string filename ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. Seien Sie gewarnt und verwenden ...
PHP Manual
[ bcompiler_write_file php.net ]

PHP Funktion
imagegd2 ( phplist Code 33% Relevanz )
Rubrik
Grafik-Funktionen
Kurzform
imagegd2 -- Output GD2 image to browser or file
Vorschau
...imagegd2 imagegd2 (PHP 4 >= 4.1.0, PHP 5) imagegd2 -- Output GD2 image to browser or file Description bool imagegd2 ( resource image [, string filename [, int chunk_size [, int type]]] ) imagegd2() outputs a GD2 image to filename . The image parameter is the return from the imagecreatetruecolor() function. The filename parameter is optional, and if left off, the raw...
PHP Manual
[ imagegd2 php.net ]

PHP Funktion
imagexbm ( phplist Code 33% Relevanz )
Rubrik
Grafik-Funktionen
Kurzform
imagexbm -- Output XBM image to browser or file
Vorschau
...imagexbm imagexbm (PHP 5) imagexbm -- Output XBM image to browser or file Description bool imagexbm ( resource image, string filename [, int foreground] ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. Anmerkung: Diese Funktion steht nur zur Verfügung,wenn PHP mit der GD Bibliothek ü...
PHP Manual
[ imagexbm php.net ]

PHP Funktion
ps_close ( phplist Code 33% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_close -- Closes a PostScript document
Vorschau
... tree. ps_close() does not free any resources, which is done by ps_delete() . This function is also called by ps_delete() if it has not been called before. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_open_file() ps_delete() ps_close_image ps_closepath_stroke...
PHP Manual
[ ps_close php.net ]

PHP Funktion
ps_scale ( phplist Code 33% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_scale -- Sets scaling factor
Vorschau
...ps_scale -- Sets scaling factor Beschreibung bool ps_scale ( resource psdoc, float x, float y ) Sets horizontal and vertical scaling of the coordinate system. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . x Scaling factor in horizontal direction. y Scaling factor in vertical direction. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_rotate() ps_translate() ps_save ...
PHP Manual
[ ps_scale php.net ]

PHP Funktion
px_close ( phplist Code 33% Relevanz )
Rubrik
Paradox File Access
Kurzform
px_close -- Closes a paradox database
Vorschau
...px_close px_close (PECL) px_close -- Closes a paradox database Beschreibung bool px_close ( resource pxdoc ) Closes the paradox database. This function will not close the file. You will have to call fclose() afterwards. Parameter Liste pxdoc Resource identifier of the paradox database as returned by px_new() . Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch px_open_fp...
PHP Manual
[ px_close php.net ]

PHP Funktion
stream_filter_append ( phplist Code 33% Relevanz )
Rubrik
Stream Functions
Kurzform
stream_filter_append -- Attach a filter to a stream
Vorschau
...will therefore be called last during stream operations. To add a filter to the beginning of the list, use stream_filter_prepend() . By default, stream_filter_append() will attach the filter to the read filter chain if the file was opened for reading (i.e. File Mode: r , and/or + ). The filter will also be attached to the write filter chain if the file was opened for writing (i.e. File Mode: w , a , and/or + ). STREAM_FILTER_READ , ...
PHP Manual
[ stream_filter_append php.net ]

PHP Funktion
stream_filter_remove ( phplist Code 33% Relevanz )
Rubrik
Stream Functions
Kurzform
stream_filter_remove -- Remove a filter from a stream
Vorschau
...() or stream_filter_append() . Any data remaining in the filter's internal buffer will be flushed through to the next filter before removing it. Beispiel 1. Dynamicly refiltering a stream <?php /* Open a test file for reading and writing */ $fp = fopen ( "test.txt" , "rw" ); $rot13_filter = stream_filter_append ( $fp , "string.rot13" , STREAM_FILTER_WRITE ); fwrite ( $fp , "This is " ); stream_filter_remove ( $rot13_filter ); fwrite...
PHP Manual
[ stream_filter_remove php.net ]

PHP Funktion
Building ( phplist Code 33% Relevanz )
Rubrik
PDO Driver How-To
Kurzform
-----
Vorschau
...Building PHP Handbuch Kapitel 45. PDO Driver How-To Building The build process is designed to work with PEAR (see http://pear.php.net/ for more information about PEAR). There are two files that are used to assist in configuring your package for building. The first is config.m4 which is the autoconf configuration file for all platforms except Win32. The second is config.w32 which a build configuration file ...
PHP Manual
[ Building php.net ]

PHP Funktion
FTP-Funktionen ( phplist Code 33% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...FTP-Funktionen XLVI. FTP-Funktionen Einführung Die Funktionen dieser Erung implementieren den Zugriff auf Server über das File Transfer Protocol (FTP), wie unter http://www.faqs.org/rfcs/rfc959 definiert. Wenn Sie ausschließlich eine Datei von einem FTP-Server lesen oder Schreiben wollen, sollten Sie die Verwendung der ftp:// Wrapper zusammen mit ...
PHP Manual
[ FTP-Funktionen php.net ]

PHP Funktion
PDF-Funktionen ( phplist Code 33% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... einiger Dokumentinfofelder, lädt die Schrift Helvetica-Bold und gibt den Text "Hello world! (says PHP)" aus. Beispiel 1. Beispiel "Hello World" der PDFlib-Distribution für PHP 4 <?php $p = PDF_new (); /* open new PDF file; insert a file name to create the PDF on disk */ if ( PDF_begin_document ( $p , "" , "" ) == 0 ) { die( "Error: " . PDF_get_errmsg ( $p )); } PDF_set_info ( $p , "Creator" , "hello.php" ); PDF_set_info ( $p , "Author" , "...
PHP Manual
[ PDF-Funktionen php.net ]

PHP Funktion
PDO-Funktionen ( phplist Code 33% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... :: 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 sein Möglichstes tun, den Inhalt der Datei auf möglichst effiziente Weise in die Datenbank zu bekommen. <?php $db = new PDO ( 'odbc:SAMPLE' , 'db2inst1' , '...
PHP Manual
[ PDO-Funktionen php.net ]

PHP Funktion
virtual_access ( phplist Code 33% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int virtual_access ( const char* pathname int mode magic TSRMLS_DC ) virtual_access() thread safe wrapper around the access() function that takes per-thread virtual working directories into account. See also VCWD_ACCESS().
Vorschau
...virtual_access virtual_access virtual_access -- Check users permissions for a file Beschreibung #include <tsrm_virtual_cwd.h> int virtual_access ( const char* pathname, int mode, magic TSRMLS_DC ) virtual_access() thread safe wrapper around the access() function that takes per-thread virtual ...
PHP Manual
[ virtual_access php.net ]

PHP Funktion
__halt_compiler ( phplist Code 32% Relevanz )
Rubrik
Sonstige Funktionen
Kurzform
__halt_compiler -- Halts the compiler execution
Vorschau
... in CVS) __halt_compiler -- Halts the compiler execution Beschreibung void __halt_compiler ( void ) This function halts the execution of the compiler. This can be useful to embed data in PHP scripts, like the installation files. Byte position of the data start can be determined by the __COMPILER_HALT_OFFSET__ constant which is defined only if there is a __halt_compiler() presented in the file. Anmerkung: __halt_compiler() can only be used from ...
PHP Manual
[ __halt_compiler php.net ]

PHP Funktion
parsekit_compile_file ( phplist Code 32% Relevanz )
Rubrik
Parsekit Functions
Kurzform
parsekit_compile_file -- Compile a string of PHP code and return the resulting op array
Vorschau
...parsekit_compile_file parsekit_compile_file (PECL) parsekit_compile_file -- Compile a string of PHP code and return the resulting op array Beschreibung array parsekit_compile_file ( string filename [, array &errors [, int options]] ) 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
[ parsekit_compile_file php.net ]

PHP Funktion
php_ini_scanned_files ( phplist Code 32% Relevanz )
Rubrik
PHP Optionen & Informationen
Kurzform
php_ini_scanned_files -- Return a list of .ini files parsed from the additional ini dir
Vorschau
...php_ini_scanned_files php_ini_scanned_files (PHP 4 >= 4.3.0, PHP 5) php_ini_scanned_files -- Return a list of .ini files parsed from the additional ini dir Description string php_ini_scanned_files ( void ) php_ini_scanned_files() returns a comma-separated list of configuration files parsed after php.ini . These files are found in a directory defined by the --with-config-file-scan-dir option which is set during ...
PHP Manual
[ php_ini_scanned_files php.net ]

PHP Funktion
SDO_DAS_XML::loadFile ( phplist Code 32% Relevanz )
Rubrik
SDO XML Data Access Service Functions
Kurzform
SDO_DAS_XML::loadFile -- Returns SDO_DAS_XML_Document object for a given path to xml instance document
Vorschau
...SDO_DAS_XML::loadFile SDO_DAS_XML::loadFile (no version information, might be only in CVS) SDO_DAS_XML::loadFile -- Returns SDO_DAS_XML_Document object for a given path to xml instance document Beschreibung SDO_XMLDocument SDO_DAS_XML::loadFile ( string xml_file ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der ...
PHP Manual
[ SDO_DAS_XML::loadFile php.net ]

PHP Funktion
SDO_DAS_XML::saveFile ( phplist Code 32% Relevanz )
Rubrik
SDO XML Data Access Service Functions
Kurzform
SDO_DAS_XML::saveFile -- Saves the SDO_DAS_XML_Document object to a file
Vorschau
...SDO_DAS_XML::saveFile SDO_DAS_XML::saveFile (no version information, might be only in CVS) SDO_DAS_XML::saveFile -- Saves the SDO_DAS_XML_Document object to a file Beschreibung void SDO_DAS_XML::saveFile ( SDO_XMLDocument xdoc, string xml_file [, int indent] ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnk...
PHP Manual
[ SDO_DAS_XML::saveFile php.net ]

PHP Funktion
stream_filter_prepend ( phplist Code 32% Relevanz )
Rubrik
Stream Functions
Kurzform
stream_filter_prepend -- Attach a filter to a stream
Vorschau
... and will therefore be called first during stream operations. To add a filter to the end of the list, use stream_filter_append() . By default, stream_filter_prepend() will attach the filter to the read filter chain if the file was opened for reading (i.e. File Mode: r , and/or + ). The filter will also be attached to the write filter chain if the file was opened for writing (i.e. File Mode: w , a , and/or + ). STREAM_FILTER_READ , ...
PHP Manual
[ stream_filter_prepend php.net ]

PHP Funktion
HTTP Funktionen ( phplist Code 32% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... http_head -- Perform HEAD request http_post_data -- Perform POST request with pre-encoded data http_post_fields -- Perform POST request with data to be encoded http_put_data -- Perform PUT request with data http_put_file -- Perform PUT request with file http_put_stream -- Perform PUT request with stream http_request_method_exists -- Check whether request method exists http_request_method_name -- Get request method name ...
PHP Manual
[ HTTP Funktionen php.net ]

PHP Funktion
SNMP Funktionen ( phplist Code 32% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... snmp_get_quick_print -- Holt den aktuellen Wert der quick_print Einstellung der UCD Bibliothek snmp_get_valueretrieval -- Return the method how the SNMP values will be returned snmp_read_mib -- Reads and parses a MIB file into the active MIB tree snmp_set_enum_print -- Return all values that are enums with their enum value instead of the raw integer snmp_set_oid_numeric_print -- Return all objects including their respective object id within...
PHP Manual
[ SNMP Funktionen php.net ]

PHP Funktion
Safe Mode ( phplist Code 31% Relevanz )
Rubrik
Features
Kurzform
-----
Vorschau
... der mit Hilfe der Dateifunktionen gearbeitet werden soll. Beispiel: -rw-rw-r-- 1 rasmus rasmus 33 Jul 1 19:20 script.php -rw-r--r-- 1 root root 1116 May 26 18:01 /etc/passwd Bei der Ausführung dieses Skriptes <?php readfile ( '/etc/passwd' ); ?> erscheint bei aktiviertem Safe Mode folgende Warnung: Warning: SAFE MODE Restriction in effect. The script whose uid is 500 is not allowed to access /etc/passwd owned by uid 0 in /docroot/script....
PHP Manual
[ Safe Mode php.net ]

PHP Funktion
fam_monitor_collection ( phplist Code 31% Relevanz )
Rubrik
File Alteration Monitor Functions
Kurzform
fam_monitor_collection -- Monitor a collection of files in a directory for changes
Vorschau
...fam_monitor_collection fam_monitor_collection (PHP 5 <= 5.0.4) fam_monitor_collection -- Monitor a collection of files in a directory for changes Beschreibung resource fam_monitor_collection ( resource fam, string dirname, int depth, string mask ) fam_monitor_collection() requests monitoring for a collection of files within a directory. ...
PHP Manual
[ fam_monitor_collection php.net ]

PHP Funktion
ftp_alloc ( phplist Code 31% Relevanz )
Rubrik
FTP-Funktionen
Kurzform
ftp_alloc -- Allocates space for a file to be uploaded
Vorschau
...ftp_alloc ftp_alloc (PHP 5) ftp_alloc -- Allocates space for a file to be uploaded Beschreibung bool ftp_alloc ( resource ftp_stream, int filesize [, string &result] ) Sends an ALLO command to the remote FTP server to allocate space for a file to be uploaded. Anmerkung: Many FTP servers do not support this command. These servers may return a failure code ( ...
PHP Manual
[ ftp_alloc php.net ]

PHP Funktion
imagewbmp ( phplist Code 31% Relevanz )
Rubrik
Grafik-Funktionen
Kurzform
imagewbmp -- Output image to browser or file
Vorschau
...imagewbmp imagewbmp (PHP 3 >= 3.0.15, PHP 4 >= 4.0.1, PHP 5) imagewbmp -- Output image to browser or file Description bool imagewbmp ( resource image [, string filename [, int foreground]] ) imagewbmp() creates the WBMP file in filename from the image image . The image argument is the return from the imagecreatetruecolor() function. The filename argument is optional, and if left off...
PHP Manual
[ imagewbmp php.net ]

PHP Funktion
ircg_list ( phplist Code 31% Relevanz )
Rubrik
IRC Gateway Funktionen
Kurzform
ircg_list -- List topic/user count of channel(s)
Vorschau
... -- List topic/user count of channel(s) Description bool ircg_list ( resource connection, string channel ) ircg_list() will request a list of users in the channel . The answer is sent to the output defined by ircg_set_file() or ircg_set_current() . Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Beispiel 1. ircg_list() example <?php // connect to server $id = ircg_pconnect ( $nickname , $ip , $port ); // set to output to a file ...
PHP Manual
[ ircg_list php.net ]

PHP Funktion
OrbitEnum ( phplist Code 31% Relevanz )
Rubrik
Satellite CORBA client extension [deprecated]
Kurzform
OrbitEnum -- Use CORBA enums
Vorschau
... the enumeration identified with the id parameter. Parameter Liste id Can be either the name of the enumeration (e.g "MyEnum"), or the full repository id (e.g. "IDL:MyEnum:1.0"). Beispiele Beispiel 1. Sample IDL file enum MyEnum { a,b,c,d,e}; Beispiel 2. PHP code for accessing MyEnum <?php $enum = new OrbitEnum ( "MyEnum" ); echo $enum -> a ; /* write 0 */ echo $enum -> c ; /* write 2 */ echo $enum -> e ; /* write 4 */ ?&...
PHP Manual
[ OrbitEnum php.net ]

PHP Funktion
ps_delete ( phplist Code 31% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_delete -- Deletes all resources of a PostScript document
Vorschau
...ps_delete ps_delete (PECL) ps_delete -- Deletes all resources of a PostScript document Beschreibung bool ps_delete ( resource psdoc ) Mainly frees memory used by the document. Also closes a file, if it was not closed before with ps_close() . You should in any case close the file with ps_close() before, because ps_close() not just closes the file but also outputs a trailor containing PostScript comments like the ...
PHP Manual
[ ps_delete php.net ]

PHP Funktion
ps_lineto ( phplist Code 31% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_lineto -- Draws a line
Vorschau
... x, float y ) Adds a straight line from the current point to the given coordinates to the current path. Use ps_moveto() to set the starting point of the line. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . x x-coordinate of the end point of the line. y y-coordinate of the end point of the line. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Beispiele Beispiel 1. Drawing a rectangle &...
PHP Manual
[ ps_lineto php.net ]

PHP Funktion
px_delete ( phplist Code 31% Relevanz )
Rubrik
Paradox File Access
Kurzform
px_delete -- Deletes resource of paradox database
Vorschau
...px_delete px_delete (PECL) px_delete -- Deletes resource of paradox database Beschreibung bool px_delete ( resource pxdoc ) Deletes the resource of the paradox file and frees all memory. Parameter Liste pxdoc Resource identifier of the paradox database as returned by px_new() . Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . px_delete_record px_get_field...
PHP Manual
[ px_delete php.net ]

PHP Funktion
rpm_close ( phplist Code 31% Relevanz )
Rubrik
RPM Header Reading Funktionen
Kurzform
rpm_close -- Closes an RPM file
Vorschau
...rpm_close rpm_close (no version information, might be only in CVS) rpm_close -- Closes an RPM file Beschreibung bool rpm_close ( resource rpmr ) rpm_close() will close an RPM file pointer. Parameter Liste rpmr A file pointer resource successfully opened by rpm_open() . Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Beispiele Beispiel 1. rpm_close() example <?php $file = "/path/to/file.rpm" ; $rpmr = rpm_open ( $file...
PHP Manual
[ rpm_close php.net ]

PHP Funktion
SWFBitmap ( phplist Code 31% Relevanz )
Rubrik
Ming functions for Flash
Kurzform
SWFBitmap -- Loads Bitmap object
Vorschau
...SWFBitmap getWidth"HREF="function.swfbitmap.getwidth.html"> addAction"HREF="function.swfbutton.addaction.html"> SWFBitmap (PHP 4 >= 4.0.5) SWFBitmap -- Loads Bitmap object Description SWFBitmap swfbitmap ( mixed file [, mixed alphafile] ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. Seien Sie gewarnt ...
PHP Manual
[ SWFBitmap php.net ]

PHP Funktion
xdiff_file_diff_binary ( phplist Code 31% Relevanz )
Rubrik
xdiff Functions
Kurzform
xdiff_file_diff_binary -- Make binary diff of two files
Vorschau
...xdiff_file_diff_binary xdiff_file_diff_binary (PECL) xdiff_file_diff_binary -- Make binary diff of two files Description bool xdiff_file_diff_binary ( string file1, string file2, string dest ) xdiff_file_diff_binary() makes binary diff of files file1 and file2 and stores result in file dest . This function works with both text and binary files. Resulting file is in binary format. Anmerkung: Both files will be loaded into ...
PHP Manual
[ xdiff_file_diff_binary php.net ]

PHP Funktion
xdiff_file_patch_binary ( phplist Code 30% Relevanz )
Rubrik
xdiff Functions
Kurzform
xdiff_file_patch_binary -- Patch a file with a binary diff
Vorschau
...xdiff_file_patch_binary xdiff_file_patch_binary (PECL) xdiff_file_patch_binary -- Patch a file with a binary diff Description bool xdiff_file_patch_binary ( string file, string patch, string dest ) xdiff_file_patch_binary() patches file file with binary patch in file patch and stores result in file dest . Anmerkung: Both files (file and patch) will be loaded into memory so ensure that your memory_limit is set high enough. Gibt...
PHP Manual
[ xdiff_file_patch_binary php.net ]

PHP Funktion
Configure options ( phplist Code 29% Relevanz )
Rubrik
Anhang
Kurzform
-----
Vorschau
... in PHP 3, some only in PHP 4.1.0. If you want to compile an older version, some options will probably not be available. Misc options --enable-debug Compile with debugging symbols. --with-layout=TYPE Sets how installed files will be laid out. Type is one of PHP (default) or GNU. --with-pear=DIR Install PEAR in DIR (default PREFIX/lib/php). --without-pear Do not install PEAR. --enable-sigchild Enable PHP's own SIGCHLD handler. --disable-...
PHP Manual
[ Configure options php.net ]

PHP Funktion
Funktionsreferenz ( phplist Code 29% Relevanz )
Rubrik
-----
Kurzform
-----
Vorschau
... Ein-/Ausgabe Funktionen XXIX. Verzeichnis-Funktionen XXX. DOM Functions XXXI. DOM XML Funktionen XXXII. enchant Functions XXXIII. Error Handling and Logging Functions XXXIV. Exif Funktionen XXXV. Expect Functions XXXVI. File Alteration Monitor Functions XXXVII. Forms Data Format Funktionen XXXVIII. Fileinfo Functions XXXIX. filePro Funktionen XL. Funktionen des Dateisystems XLI. Filter Functions XLII. InterBase-Funktionen XLIII. Firebird/...
PHP Manual
[ Funktionsreferenz php.net ]

PHP Funktion
image2wbmp ( phplist Code 29% Relevanz )
Rubrik
Grafik-Funktionen
Kurzform
image2wbmp -- Output image to browser or file
Vorschau
...image2wbmp image2wbmp (PHP 4 >= 4.0.5, PHP 5) image2wbmp -- Output image to browser or file Description int image2wbmp ( resource image [, string filename [, int threshold]] ) image2wbmp() creates the WBMP file in filename from the image image . The image argument is the return from 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 ...
PHP Manual
[ image2wbmp php.net ]

PHP Funktion
mailparse_msg_parse_file ( phplist Code 29% Relevanz )
Rubrik
mailparse Functions
Kurzform
mailparse_msg_parse_file -- Parse file and return a resource representing the structure
Vorschau
...mailparse_msg_parse_file mailparse_msg_parse_file (4.1.0 - 4.1.2 only, PECL) mailparse_msg_parse_file -- Parse file and return a resource representing the structure Beschreibung resource mailparse_msg_parse_file ( string filename ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. Seien Sie gewarnt und verwenden ...
PHP Manual
[ mailparse_msg_parse_file php.net ]

PHP Funktion
Grafik-Funktionen ( phplist Code 29% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... generiert. Inhaltsverzeichnis gd_info -- Retrieve information about the currently installed GD library getimagesize -- Ermittelt die Ausmaße einer GIF-, JPEG-, PNG- oder SWF-Grafik-Datei image_type_to_extension -- Get file extension for image type image_type_to_mime_type -- Get Mime-Type for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype image2wbmp -- Output image to browser or file imagealphablending -- ...
PHP Manual
[ Grafik-Funktionen php.net ]

PHP Funktion
php_stream_fopen_tmpfile ( phplist Code 29% Relevanz )
Rubrik
Streams File API Reference
Kurzform
-----
Vorschau
...php_stream_fopen_tmpfile php_stream_fopen_tmpfile php_stream_fopen_tmpfile -- Open a FILE* with tmpfile() and convert into a stream Description php_stream * php_stream_fopen_tmpfile ( void ) php_stream_fopen_tmpfile() returns a stream based on a temporary file opened with a mode of "w+b". The temporary file will be deleted automatically when the stream is closed or the process terminates. php_stream_fopen_from_file ...
PHP Manual
[ php_stream_fopen_tmpfile php.net ]

PHP Funktion
VCWD_FOPEN ( phplist Code 29% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
FILE * VCWD_FOPEN ( char * path char * mode ) ...
Vorschau
...VCWD_FOPEN VCWD_FOPEN VCWD_FOPEN -- ... Beschreibung #include <tsrm_virtual_cwd.h> FILE * VCWD_FOPEN ( char * path, char * mode ) ... Parameter Liste path ... mode ... Rückgabewerte ... VCWD_CREAT VCWD_GETCWD...
PHP Manual
[ VCWD_FOPEN php.net ]

PHP Funktion
PHP auf der Kommandozeile ( phplist Code 28% Relevanz )
Rubrik
Features
Kurzform
-----
Vorschau
... es auf der Kommandozeile gestartet wird. Die Liste der Kommandozeilenoptionen, die das PHP-Binary bereitstellt, können jederzeit abgerufen werden, wenn man PHP mit der Option -h startet: Usage: php [options] [-f] <file> [--] [args...] php [options] -r <code> [--] [args...] php [options] [-B <begin_code>] -R <code> [-E <end_code>] [--] [args...] php [options] [-B <begin_code>] -F <file>...
PHP Manual
[ PHP auf der Kommandozeile php.net ]

PHP Funktion
DirectoryIterator::isFile ( phplist Code 28% Relevanz )
Rubrik
Standard PHP Library (SPL) Functions
Kurzform
DirectoryIterator::isFile -- Returns true if file is a regular file
Vorschau
...DirectoryIterator::isFile DirectoryIterator::isFile (no version information, might be only in CVS) DirectoryIterator::isFile -- Returns true if file is a regular file Description bool DirectoryIterator::isFile ( void ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. DirectoryIterator::isExecutable DirectoryIterator::isLink...
PHP Manual
[ DirectoryIterator::isFile php.net ]

PHP Funktion
bcompiler_load_exe ( phplist Code 27% Relevanz )
Rubrik
PHP bytecode Compiler
Kurzform
bcompiler_load_exe -- Reads and creates classes from a bcompiler exe file
Vorschau
...bcompiler_load_exe bcompiler_load_exe (PECL) bcompiler_load_exe -- Reads and creates classes from a bcompiler exe file Description bool bcompiler_load_exe ( string filename ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. Seien Sie gewarnt und verwenden ...
PHP Manual
[ bcompiler_load_exe php.net ]

PHP Funktion
dbplus_open ( phplist Code 27% Relevanz )
Rubrik
DB++ Functions
Kurzform
dbplus_open -- Open relation file
Vorschau
...dbplus_open dbplus_open (4.1.0 - 4.2.3 only, PECL) dbplus_open -- Open relation file Description resource dbplus_open ( string name ) 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
[ dbplus_open php.net ]

PHP Funktion
imagecopyresampled ( phplist Code 27% Relevanz )
Rubrik
Grafik-Funktionen
Kurzform
imagecopyresampled -- Copy and resize part of an image with resampling
Vorschau
...() . Anmerkung: Diese Funktion setzt die GD Bibliothek 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...
PHP Manual
[ imagecopyresampled php.net ]

PHP Funktion
imagerotate ( phplist Code 27% Relevanz )
Rubrik
Grafik-Funktionen
Kurzform
imagerotate -- Rotate an image with a given angle
Vorschau
... is set and non-zero, transparent colors are ignored (otherwise kept). This parameter was added in PHP 5.1. Beispiel 1. Rotate an image 180 degrees This example rotates an image 180 degrees - upside down. // File and rotation $filename = 'test.jpg'; $degrees = 180; // Content type header('Content-type: image/jpeg'); // Load $source = imagecreatefromjpeg($filename); // Rotate $rotate = imagerotate($source, $degrees, 0); // Output ...
PHP Manual
[ imagerotate php.net ]

PHP Funktion
OrbitObject ( phplist Code 27% Relevanz )
Rubrik
Satellite CORBA client extension [deprecated]
Kurzform
OrbitObject -- Access CORBA objects
Vorschau
... Risiko. This class provides access to a CORBA object. Parameter Liste ior Should be a string containing the IOR (Interoperable Object Reference) that identifies the remote object. Beispiele Beispiel 1. Sample IDL file interface MyInterface { void SetInfo (string info); string GetInfo(); attribute int value;} Beispiel 2. PHP code for accessing MyInterface <?php $obj = new OrbitObject ( $ior ); $obj -> SetInfo ( "A 2GooD object...
PHP Manual
[ OrbitObject php.net ]

PHP Funktion
ps_findfont ( phplist Code 27% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_findfont -- Loads a font
Vorschau
... ( resource psdoc, string fontname, string encoding [, bool embed] ) Loads a font for later use. Before text is output with a loaded font it must be set with ps_setfont() . This function needs the adobe font metric file in order to calculate the space used up by the characters. A font which is loaded within a page will only be available on that page. Fonts which are to be used in the complete document have to be loaded before the first ...
PHP Manual
[ ps_findfont php.net ]

PHP Funktion
runkit_lint ( phplist Code 27% Relevanz )
Rubrik
runkit Functions
Kurzform
runkit_lint -- Check the PHP syntax of the specified php code
Vorschau
...The runkit_lint() function performs a syntax (lint) check on the specified php code testing for scripting errors. This is similar to using php -l from the commandline except runkit_lint() accepts actual code rather than a filename. Anmerkung: Sandbox support (required for runkit_lint() , runkit_lint_file() ,and the Runkit_Sandbox class) is only available with PHP 5.1 or speciallypatched versions of PHP 5.0 and requires that thread safety be ...
PHP Manual
[ runkit_lint php.net ]

PHP Funktion
sqlite_exec ( phplist Code 27% Relevanz )
Rubrik
SQLite
Kurzform
sqlite_exec (no version information might be only in CVS)SQLiteDatabase->exec -- Executes a result-less query against a given database
Vorschau
... query against a given database handle (specified by the dbhandle parameter). Warnung SQLite will execute multiple queries separated by semicolons, so you can use it to execute a batch of SQL that you have loaded from a file or have embedded in a script. Parameter Liste dbhandle The SQLite Database resource; returned from sqlite_open() when used procedurally. This parameter is not required when using the object-oriented method. query The ...
PHP Manual
[ sqlite_exec php.net ]

PHP Funktion
SWFMovie->save ( phplist Code 27% Relevanz )
Rubrik
Ming functions for Flash
Kurzform
SWFMovie->save -- Saves your movie in a file
Vorschau
...62;save remove"HREF="function.swfmovie.remove.html"> setbackground"HREF="function.swfmovie.setbackground.html"> SWFMovie->save (no version information, might be only in CVS) SWFMovie->save -- Saves your movie in a file Description int swfmovie->save ( string filename [, int compression] ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP...
PHP Manual
[ SWFMovie->save php.net ]

PHP Funktion
Streams File API Reference ( phplist Code 27% Relevanz )
Rubrik
Streams API for PHP Extension Authors
Kurzform
-----
Vorschau
...Streams File API Reference PHP Handbuch Kapitel 44. Streams API for PHP Extension Authors Streams File API Reference Inhaltsverzeichnis php_stream_fopen_from_file -- Convert an ANSI FILE* into a stream php_stream_fopen_tmpfile -- Open a FILE* with tmpfile() and convert into a stream php_stream_fopen_temporary_file -- Generate a temporary file name and open a stream on it php_stream_closedir ...
PHP Manual
[ Streams File API Reference php.net ]

PHP Funktion
php_stream_fopen_from_file ( phplist Code 27% Relevanz )
Rubrik
Streams File API Reference
Kurzform
-----
Vorschau
...php_stream_fopen_from_file php_stream_fopen_from_file php_stream_fopen_from_file -- Convert an ANSI FILE* into a stream Description php_stream * php_stream_fopen_from_file ( FILE * file, char * mode ) php_stream_fopen_from_file() returns a stream based on the file . mode must be the same as the mode used to open file , otherwise strange errors may occur when trying to write when the mode of the stream is...
PHP Manual
[ php_stream_fopen_from_file php.net ]

PHP Funktion
Creating Variables ( phplist Code 27% Relevanz )
Rubrik
Zend API: Hacking the Core of PHP
Kurzform
-----
Vorschau
... is never possible directly - only via a provided API. As soon as all references to a specific resource are lost, a corresponding shutdown function is called. For example, resources are used to store database links and file descriptors. The de facto standard implementation can be found in the MySQL module, but other modules such as the Oracle module also make use of resources. Anmerkung: In fact, a resource can be a pointer to anything you ...
PHP Manual
[ Creating Variables php.net ]

PHP Funktion
domxml_xslt_stylesheet_file ( phplist Code 26% Relevanz )
Rubrik
DOM XML Funktionen
Kurzform
domxml_xslt_stylesheet_file -- Creates a DomXsltStylesheet Object from an XSL document in a file
Vorschau
...domxml_xslt_stylesheet_file domxml_xslt_stylesheet_file (PHP 4 >= 4.2.0, PECL) domxml_xslt_stylesheet_file -- Creates a DomXsltStylesheet Object from an XSL document in a file Beschreibung DomXsltStylesheet domxml_xslt_stylesheet_file ( string xsl_file ) Creates a DomXsltStylesheet object from the given XSL file. Parameter Liste xsl_file The path to the XSL document, as a string. Rü...
PHP Manual
[ domxml_xslt_stylesheet_file php.net ]

PHP Funktion
OCI-Lob->export ( phplist Code 26% Relevanz )
Rubrik
Oracle 8 Funktionen
Kurzform
OCI-Lob->export -- Exports LOB's contents to a file
Vorschau
...OCI-Lob->export erase"HREF="function.oci-lob-erase.html"> flush"HREF="function.oci-lob-flush.html"> OCI-Lob->export (no version information, might be only in CVS) OCI-Lob->export -- Exports LOB's contents to a file Beschreibung class OCI-Lob { bool export ( string filename [, int start [, int length]] ) } Exports LOB contents to a file. The file name is given in the parameter filename . The optional parameter start indicates from ...
PHP Manual
[ OCI-Lob->export php.net ]

PHP Funktion
openssl_pkey_export_to_file ( phplist Code 26% Relevanz )
Rubrik
OpenSSL Funktionen
Kurzform
openssl_pkey_export_to_file -- Liefert eine exportierbare Representation eines Schlüssels in einer Datei
Vorschau
...openssl_pkey_export_to_file openssl_pkey_export_to_file (PHP 4 >= 4.2.0, PHP 5) openssl_pkey_export_to_file -- Liefert eine exportierbare Representation eines Schlüssels in einer Datei Beschreibung bool openssl_pkey_export_to_file ( mixed key, string outfilename [, string passphrase [, array configargs]] ) ...
PHP Manual
[ openssl_pkey_export_to_file php.net ]

PHP Funktion
mailparse Functions ( phplist Code 26% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... DLL fürdiese PECL Erung entweder von PHP Downloads oder von http://snaps.php.net/ herunterladen. Inhaltsverzeichnis mailparse_determine_best_xfer_encoding -- Figures out the best way of encoding the content read from the file pointer fp, which must be seek-able mailparse_msg_create -- Returns a handle that can be used to parse a message mailparse_msg_extract_part_file -- Extracts/decodes a message section, decoding the transfer encoding ...
PHP Manual
[ mailparse Functions php.net ]

PHP Funktion
Initialization File Support ( phplist Code 26% Relevanz )
Rubrik
Zend API: Hacking the Core of PHP
Kurzform
-----
Vorschau
...Initialization File Support PHP Handbuch Kapitel 46. Zend API: Hacking the Core of PHP Initialization File Support PHP 4 features a redesigned initialization file support. It's now possible to specify default initialization entries directly in your code, read and change these values at runtime, and create message handlers for change notifications. To create an .ini section in your ...
PHP Manual
[ Initialization File Support php.net ]

PHP Funktion
dbplus_ropen ( phplist Code 25% Relevanz )
Rubrik
DB++ Functions
Kurzform
dbplus_ropen -- Open relation file local
Vorschau
...dbplus_ropen dbplus_ropen (4.1.0 - 4.2.3 only, PECL) dbplus_ropen -- Open relation file local Description resource dbplus_ropen ( string name ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkü...
PHP Manual
[ dbplus_ropen php.net ]

PHP Funktion
ftok ( phplist Code 25% Relevanz )
Rubrik
Semaphor und Shared Memory Funktionen
Kurzform
ftok -- Convert a pathname and a project identifier to a System V IPC key
Vorschau
...ftok (PHP 4 >= 4.2.0, PHP 5) ftok -- Convert a pathname and a project identifier to a System V IPC key Description int ftok ( string pathname, string proj ) The function converts the pathname of an existing accessible file and a project identifier ( proj ) into a integer for use with for example shmop_open() and other System V IPC keys. The proj parameter must be a one character string. On success the return value will be the created key ...
PHP Manual
[ ftok php.net ]

PHP Funktion
glob ( phplist Code 25% Relevanz )
Rubrik
Funktionen des Dateisystems
Kurzform
glob -- Find pathnames matching a pattern
Vorschau
... matching pattern according to the rules used by the libc glob() function, which is similar to the rules used by common shells. No tilde expansion or parameter substitution is done. Returns an array containing the matched files/directories, an empty array if no file matched or FALSE on error. Valid flags: GLOB_MARK - Adds a slash to each item returned GLOB_NOSORT - Return files as they appear in the directory (no sorting) GLOB_NOCHECK - ...
PHP Manual
[ glob php.net ]

PHP Funktion
mysqli_debug ( phplist Code 25% Relevanz )
Rubrik
Verbesserte MySQL Erweiterung
Kurzform
mysqli_debug -- Performs debugging operations
Vorschau
... you must complile the MySQL client library to support debugging. Rückgabewerte mysqli_debug() doesn't return any value. Siehe auch mysqli_dump_debug_info() und mysqli_report() . Beispiele Beispiel 1. Generating a Trace File <?php /* Create a trace file in '/tmp/client.trace' on the local (client) machine: */ mysqli_debug ( "d:t:0,/tmp/client.trace" ); ?> mysqli_data_seek mysqli_disable_reads_from_master...
PHP Manual
[ mysqli_debug php.net ]

PHP Funktion
mysqli_errno ( phplist Code 25% 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
... 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 error ...
PHP Manual
[ mysqli_errno php.net ]

PHP Funktion
ps_closepath ( phplist Code 25% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_closepath -- Closes path
Vorschau
... ps_closepath ( resource psdoc ) Connects the last point with the first point of a path. The resulting path can be used for stroking, filling, clipping, etc.. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_clip() ps_closepath_stroke() ps_closepath_stroke ps_continue_text...
PHP Manual
[ ps_closepath php.net ]

PHP Funktion
ps_translate ( phplist Code 25% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_translate -- Sets translation
Vorschau
... (PECL) ps_translate -- Sets translation Beschreibung bool ps_translate ( resource psdoc, float x, float y ) Sets a new initial point of the coordinate system. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . x x-coordinate of the origin of the translated coordinate system. y y-coordinate of the origin of the translated coordinate system. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . ...
PHP Manual
[ ps_translate php.net ]

PHP Funktion
rpm_is_valid ( phplist Code 25% Relevanz )
Rubrik
RPM Header Reading Funktionen
Kurzform
rpm_is_valid -- Tests a filename for validity as an RPM file
Vorschau
...rpm_is_valid rpm_is_valid (no version information, might be only in CVS) rpm_is_valid -- Tests a filename for validity as an RPM file Beschreibung bool rpm_is_valid ( string filename ) rpm_is_valid() will test an RPM file for validity as an RPM file. This is not the same as rpm_open() as it only checks the file for validity but does not return a file pointer to be used by further functions. Parameter Liste filename The filename of the RPM...
PHP Manual
[ rpm_is_valid php.net ]

PHP Funktion
sqlite_popen ( phplist Code 25% Relevanz )
Rubrik
SQLite
Kurzform
sqlite_popen -- Opens a persistent handle to an SQLite database. Will create the database if it does not exist
Vorschau
...sqlite_popen sqlite_popen (PHP 5) sqlite_popen -- Opens a persistent handle to an SQLite database. Will create the database if it does not exist Description resource sqlite_popen ( string filename [, int mode [, string &errmessage]] ) This function behaves identically to sqlite_open() except that is uses the persistent resource mechanism of PHP. For information about the meaning of the parameters, read the ...
PHP Manual
[ sqlite_popen php.net ]

PHP Funktion
sqlite_query ( phplist Code 25% Relevanz )
Rubrik
SQLite
Kurzform
sqlite_query -- Führt auf einer Datenbank eine Abfrage durch und liefert das Abfrageergebnis zurück.
Vorschau
... the first one, where the db parameter is the first parameter to the function. Warnung SQLite will execute multiple queries separated by semicolons, so you can use it to execute a batch of SQL that you have loaded from a file or have embedded in a script. When executing multiple queries, the return value of this function will be FALSE if the was an error, but undefined otherwise (it might be TRUE for success or it might return a result handle...
PHP Manual
[ sqlite_query php.net ]

PHP Funktion
xslt_set_log ( phplist Code 25% Relevanz )
Rubrik
XSLT Funktionen
Kurzform
xslt_set_log -- Set the log file to write log messages to
Vorschau
...xslt_set_log xslt_set_log (PHP 4 >= 4.0.6, PECL) xslt_set_log -- Set the log file to write log messages to Description void xslt_set_log ( resource xh [, mixed log] ) xh A reference to the XSLT parser. log This parameter is either a boolean value which toggles logging on and off, or a string ...
PHP Manual
[ xslt_set_log php.net ]

PHP Funktion
Building from source ( phplist Code 25% Relevanz )
Rubrik
Installation on Windows systems
Kurzform
-----
Vorschau
... Visual C++ .NET versions will also work. Since PHP 5 the free Microsoft .NET toolchain is also supported (you need to install Windows Platform SDK, Visual C++ Toolkit and .NET Framework SDK). To extract the downloaded files you will also need a ZIP extraction utility. Windows XP and newer already include this functionality built-in. Before you get started, you have to download: the win32 buildtools from the PHP site at http://www.php.net/...
PHP Manual
[ Building from source php.net ]

PHP Funktion
SimpleXML Funktionen ( phplist Code 25% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
..., verwenden Sie die Konfigurations-Option --disable-simplexml . Beispiele Viele Beispiele in dieser Referenz benötigen einen XML String. Anstatt diesen String in jedem Beispiel zu wiederholen, haben wir ihn als File abgelegt, das wir in den Beispielen inkludieren. Diese eingebundene Datei zeigen wir Ihnen im folgenden Beispiel. Alternativ dazu können Sie ein XML Dokument erstellen und es mit simplexml_load_file() einlesen. Beispiel 1...
PHP Manual
[ SimpleXML Funktionen php.net ]

PHP Funktion
bcompiler_write_class ( phplist Code 24% Relevanz )
Rubrik
PHP bytecode Compiler
Kurzform
bcompiler_write_class -- Writes an defined class as bytecodes
Vorschau
...bcompiler_write_class bcompiler_write_class (PECL) bcompiler_write_class -- Writes an defined class as bytecodes Description bool bcompiler_write_class ( resource filehandle, string className [, string extends] ) 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_class php.net ]

PHP Funktion
dio_tcsetattr ( phplist Code 24% Relevanz )
Rubrik
Direkte Ein-/Ausgabe Funktionen
Kurzform
dio_tcsetattr -- Sets terminal attributes and baud rate for a serial port
Vorschau
... dio_tcsetattr ( resource fd, array options ) dio_tcsetattr() sets the terminal attributes and baud rate of the open fd . Anmerkung: Diese Funktion ist aufWindows-Plattformen nicht implementiert. Parameter Liste fd The file descriptor returned by dio_open() . options The currently available options are: 'baud' - baud rate of the port - can be 38400,19200,9600,4800,2400,1800, 1200,600,300,200,150,134,110,75 or 50, default value is 9600. '...
PHP Manual
[ dio_tcsetattr php.net ]

PHP Funktion
http_throttle ( phplist Code 24% Relevanz )
Rubrik
HTTP Funktionen
Kurzform
http_throttle -- HTTP throttling
Vorschau
... process resp. thread until the entity has been completely sent, though. Parameter Liste sec seconds to sleep after each chunk sent bytes the chunk size in bytes Beispiele Beispiel 1. A http_throttle() example Send file with approximately 20 kbyte/s. <?php // ~ 20 kbyte/s # http_throttle(1, 20000); # http_throttle(0.5, 10000); # http_throttle(0.1, 2000); http_send_file ( 'document.pdf' ); ?> ?> http_send_stream http_build_str...
PHP Manual
[ http_throttle php.net ]

PHP Funktion
imageloadfont ( phplist Code 24% Relevanz )
Rubrik
Grafik-Funktionen
Kurzform
imageloadfont -- Lädt einen neuen Font
Vorschau
...imageloadfont imageloadfont (PHP 3, PHP 4, PHP 5) imageloadfont -- Lädt einen neuen Font Beschreibung: int imageloadfont ( string file ) ImageLoadFont() lädt einen vom Benutzer definierten Bitmap-Font und gibt einen Zeiger auf diesen . Dessen Wert ist immer grösser als 5, um Konflikte mit den eingebauten Fonts zu vermeiden. Das Font-Datei-Format ...
PHP Manual
[ imageloadfont php.net ]

PHP Funktion
radius_config ( phplist Code 24% Relevanz )
Rubrik
Radius
Kurzform
radius_config -- Causes the library to read the given configuration file
Vorschau
...radius_config radius_config (PECL) radius_config -- Causes the library to read the given configuration file Beschreibung bool radius_config ( resource radius_handle, string file ) Before issuing any Radius requests, the library must be made aware of the servers it can contact. The easiest way to configure the library is to call radius_config() . radius_config() causes the library to read a ...
PHP Manual
[ radius_config php.net ]

PHP Funktion
stream_select ( phplist Code 24% Relevanz )
Rubrik
Stream Functions
Kurzform
stream_select -- Runs the equivalent of the select() system call on the given arrays of streams with a timeout specified by tv_sec and tv_usec
Vorschau
... streams. The streams listed in the read array will be watched to see if characters become available for reading (more precisely, to see if a read will not block - in particular, a stream resource is also ready on end-of-file, in which case an fread() will return a zero length string). The streams listed in the write array will be watched to see if a write will not block. The streams listed in the except array will be watched for high ...
PHP Manual
[ stream_select php.net ]

PHP Funktion
Migrating Configuration Files ( phplist Code 24% Relevanz )
Rubrik
Migrating from PHP 3 to PHP 4
Kurzform
-----
Vorschau
...Migrating Configuration Files PHP Handbuch Anhang C. Migrating from PHP 3 to PHP 4 Migrating Configuration Files The global configuration file, php3.ini , has changed its name to php.ini . For the Apache configuration file, there are slightly more changes. The MIME types recognized by the PHP module have changed. application/x-httpd-php3 --> application/x-httpd-phpapplication/x-httpd-php3-source --> application/x-httpd-php-source ...
PHP Manual
[ Migrating Configuration Files php.net ]

PHP Funktion
PHP bytecode Compiler ( phplist Code 24% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... 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 statements. The second of these...
PHP Manual
[ PHP bytecode Compiler php.net ]

PHP Funktion
DOM Functions ( phplist Code 24% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... DOMDocument->getElementsByTagNameNS() - Searches for all elements with given tag name in specified namespace DOMDocument->importNode() - Import node into current document DOMDocument->load() - Load XML from a file DOMDocument->loadHTML() - Load HTML from a string DOMDocument->loadHTMLFile() - Load HTML from a file DOMDocument->loadXML() - Load XML from a string DOMDocument->normalizeDocument() - Normalizes the ...
PHP Manual
[ DOM Functions php.net ]

PHP Funktion
Rar Functions ( phplist Code 24% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
..../configure && make && make install Windows users can download the extension dll php_rar.dll here: http://snaps.php.net/win32/PECL_STABLE/ . Resource Typen There is one resource used in Rar extension: a file descriptor returned by rar_open() . Vordefinierte Konstanten RAR_HOST_MSDOS ( integer ) RAR_HOST_OS2 ( integer ) RAR_HOST_WIN32 ( integer ) RAR_HOST_UNIX ( integer ) RAR_HOST_BEOS ( integer ) Beispiele Beispiel 2. ...
PHP Manual
[ Rar Functions php.net ]

PHP Funktion
YAZ Functions ( phplist Code 24% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... old version of yaz.dll (version 1.9.1 < required version 2.0.13). If that's the case use the yaz.dll from a newer YAZ WIN32 install . On windows, don't forget to add the PHP directory to the PATH, so that the yaz.dll file can be found by the system. If you are using YAZ as a shared extension, add (or uncomment) the following line in php.ini on Unix: extension=yaz.so And for Windows: extension=php_yaz.dll Warnung Die IMAP Erung kann nicht ...
PHP Manual
[ YAZ Functions php.net ]

PHP Funktion
Audio Streams ( phplist Code 24% Relevanz )
Rubrik
List of Supported Protocols/Wrappers
Kurzform
-----
Vorschau
...Audio Streams PHP Handbuch Anhang M. List of Supported Protocols/Wrappers Audio Streams ogg:// PHP 4.3.0 and up (PECL) ogg://soundfile.ogg ogg:///path/to/soundfile.ogg ogg://http://www.example.com/path/to/soundstream.ogg This wrapper is not enabled by default: In order to use the ogg:// wrapper you must install the OGG/Vorbis extension available from PECL . Files opened for reading ...
PHP Manual
[ Audio Streams php.net ]

PHP Funktion
DOMDocument->loadHTMLFile() ( phplist Code 23% Relevanz )
Rubrik
DOM Functions
Kurzform
DOMDocument->loadHTMLFile() -- Load HTML from a file
Vorschau
...DOMDocument->loadHTMLFile() loadHTML()"HREF="function.dom-domdocument-loadhtml.html"> loadXML()"HREF="function.dom-domdocument-loadxml.html"> DOMDocument->loadHTMLFile() (no version information, might be only in CVS) DOMDocument->loadHTMLFile() -- Load HTML from a file Beschreibung class DOMDocument { bool loadHTMLFile ( string filename ) } The function parses the HTML document in ...
PHP Manual
[ DOMDocument->loadHTMLFile() php.net ]

PHP Funktion
DOMDocument->saveHTMLFile() ( phplist Code 23% Relevanz )
Rubrik
DOM Functions
Kurzform
DOMDocument->saveHTMLFile() -- Dumps the internal document into a file using HTML formatting
Vorschau
...DOMDocument->saveHTMLFile() saveHTML()"HREF="function.dom-domdocument-savehtml.html"> saveXML()"HREF="function.dom-domdocument-savexml.html"> DOMDocument->saveHTMLFile() (no version information, might be only in CVS) DOMDocument->saveHTMLFile() -- Dumps the internal document into a file using HTML formatting Beschreibung class DOMDocument { int saveHTMLFile ( string filename ) } ...
PHP Manual
[ DOMDocument->saveHTMLFile() php.net ]

PHP Funktion
mailparse_uudecode_all ( phplist Code 23% Relevanz )
Rubrik
mailparse Functions
Kurzform
mailparse_uudecode_all -- Scans the data from fp and extract each embedded uuencoded file
Vorschau
...mailparse_uudecode_all mailparse_uudecode_all (PECL) mailparse_uudecode_all -- Scans the data from fp and extract each embedded uuencoded file Beschreibung array mailparse_uudecode_all ( resource fp ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ...
PHP Manual
[ mailparse_uudecode_all php.net ]

PHP Funktion
ZipArchive::deleteName ( phplist Code 23% Relevanz )
Rubrik
ZIP Funktionen (Lesezugriff)
Kurzform
ZipArchive::deleteName -- delete an entry in the archive using its name
Vorschau
...::deleteName ( string name ) Delete an entry in the archive using its name. Parameter Liste name Name of the entry to delete. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Beispiele Beispiel 1. Delete file from archive using its name <?php $zip = new ZipArchive ; if ( $zip -> open ( 'test1.zip' ) === TRUE ) { $zip -> deleteName ( 'testfromfile.php' ); $zip -> close (); echo 'ok' ; } else { echo 'failed' ; } ?>...
PHP Manual
[ ZipArchive::deleteName php.net ]

PHP Funktion
php_stream_fopen_temporary_file ( phplist Code 23% Relevanz )
Rubrik
Streams File API Reference
Kurzform
-----
Vorschau
...php_stream_fopen_temporary_file php_stream_fopen_temporary_file php_stream_fopen_temporary_file -- Generate a temporary file name and open a stream on it Description php_stream * php_stream_fopen_temporary_file ( const char * dir, const char * pfx, char ** opened ) php_stream_fopen_temporary_file() generates a temporary file name in the directory specified by dir and with a prefix of pfx . The generated file name is returns in ...
PHP Manual
[ php_stream_fopen_temporary_file php.net ]

PHP Funktion
php_stream_open_wrapper_as_file ( phplist Code 23% Relevanz )
Rubrik
Streams Common API Reference
Kurzform
-----
Vorschau
...php_stream_open_wrapper_as_file php_stream_open_wrapper_as_file php_stream_open_wrapper_as_file -- Opens a stream on a file or URL, and converts to a FILE* Description FILE * php_stream_open_wrapper_as_file ( char * path, char * mode, int options, char ** opened ) php_stream_open_wrapper_as_file() is exactly like php_stream_open_wrapper() , but converts the stream into an ANSI stdio FILE* and returns that instead of the ...
PHP Manual
[ php_stream_open_wrapper_as_file php.net ]

PHP Funktion
domxml_xmltree ( phplist Code 22% Relevanz )
Rubrik
DOM XML Funktionen
Kurzform
domxml_xmltree -- Creates a tree of PHP objects from an XML document
Vorschau
... is isolated from the other functions, which means you cannot access the tree with any of the other functions. Modifying it, for example by adding nodes, makes no sense since there is currently no way to dump it as an XML file. However this function may be valuable if you want to read a file and investigate the content. Parameter Liste str The contents of the XML file. Rückgabewerte Returns a tree of Dom objects starting by a DomDocument...
PHP Manual
[ domxml_xmltree php.net ]

PHP Funktion
fam_next_event ( phplist Code 22% Relevanz )
Rubrik
File Alteration Monitor Functions
Kurzform
fam_next_event -- Get next pending FAM event
Vorschau
... FAM event. The function will block until an event is available which can be checked for using fam_pending() . fam_next_event() will return an array that contains a FAM event code in element ' code ', the path of the file this event applies to in element ' filename ' and optionally a hostname in element ' hostname '. The possible event codes are described in detail in the constants part of this section. See also fam_pending() . ...
PHP Manual
[ fam_next_event php.net ]

PHP Funktion
gzeof ( phplist Code 22% Relevanz )
Rubrik
Zlib Komprimierungsfunktionen
Kurzform
gzeof -- Test for end-of-file on a gz-file pointer
Vorschau
...gzeof gzeof (PHP 3, PHP 4, PHP 5) gzeof -- Test for end-of-file on a gz-file pointer Beschreibung int gzeof ( resource zp ) Tests the given GZ file pointer for EOF (end-of-file). Parameter Liste zp The gz-file pointer. It must be valid, and must point to a file successfully opened by gzopen() . Rückgabewerte Returns TRUE if the gz-file pointer is at EOF or an error occurs; otherwise returns FALSE . Beispiele Beispiel 1. gzeof...
PHP Manual
[ gzeof php.net ]

PHP Funktion
mailparse_stream_encode ( phplist Code 22% Relevanz )
Rubrik
mailparse Functions
Kurzform
mailparse_stream_encode -- Streams data from source file pointer apply encoding and write to destfp
Vorschau
...mailparse_stream_encode mailparse_stream_encode (4.1.0 - 4.1.2 only, PECL) mailparse_stream_encode -- Streams data from source file pointer, apply encoding and write to destfp Beschreibung bool mailparse_stream_encode ( resource sourcefp, resource destfp, string encoding ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und ...
PHP Manual
[ mailparse_stream_encode php.net ]

PHP Funktion
ps_add_pdflink ( phplist Code 22% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_add_pdflink -- Adds link to a page in a second pdf document
Vorschau
...ps_add_pdflink ps_add_pdflink (PECL) ps_add_pdflink -- Adds link to a page in a second pdf document Beschreibung bool ps_add_pdflink ( resource psdoc, float llx, float lly, float urx, float ury, string filename, int page, string dest ) Places a hyperlink at the given position pointing to a second pdf document. Clicking on the link will branch to the document at the given page. The first page in a document has number 1. The ...
PHP Manual
[ ps_add_pdflink php.net ]

PHP Funktion
ps_close_image ( phplist Code 22% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_close_image -- Closes image and frees memory
Vorschau
... Beschreibung void ps_close_image ( resource psdoc, int imageid ) Closes an image and frees its resources. Once an image is closed it cannot be used anymore. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . imageid Resource identifier of the image as returned by ps_open_image() or ps_open_image_file() . Rückgabewerte Returns NULL on success or FALSE on failure. Siehe auch ps_open_image() ...
PHP Manual
[ ps_close_image php.net ]

PHP Funktion
ps_place_image ( phplist Code 22% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_place_image -- Places image on the page
Vorschau
... image on the page. The image can be scaled. If the image shall be rotated as well, you will have to rotate the coordinate system before with ps_rotate() . Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . imageid The resource identifier of the image as returned by ps_open_image() or ps_open_image_file() . x x-coordinate of the lower left corner of the image. y y-coordinate of the lower left ...
PHP Manual
[ ps_place_image php.net ]

PHP Funktion
ps_symbol_name ( phplist Code 22% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_symbol_name -- Gets name of a glyph
Vorschau
...ps_symbol_name ps_symbol_name (PECL) ps_symbol_name -- Gets name of a glyph Beschreibung string ps_symbol_name ( resource psdoc, int ord [, int fontid] ) This function needs an Adobe font metrics file to know which glyphs are available. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . ord The parameter ord is the position of the glyph in the font encoding vector. fontid The ...
PHP Manual
[ ps_symbol_name php.net ]

PHP Funktion
SWFMovie->streammp3 ( phplist Code 22% Relevanz )
Rubrik
Ming functions for Flash
Kurzform
SWFMovie->streammp3 -- Streams a MP3 file
Vorschau
...SWFMovie->streammp3 setrate"HREF="function.swfmovie.setrate.html"> SWFMovie->streammp3 (no version information, might be only in CVS) SWFMovie->streammp3 -- Streams a MP3 file Description void swfmovie->streammp3 ( mixed mp3File ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ...
PHP Manual
[ SWFMovie->streammp3 php.net ]

PHP Funktion
ZipArchive::deleteIndex ( phplist Code 22% Relevanz )
Rubrik
ZIP Funktionen (Lesezugriff)
Kurzform
ZipArchive::deleteIndex -- delete an entry in the archive using its index
Vorschau
...::deleteIndex ( int index ) Delete an entry in the archive using its index. Parameter Liste index Index of the entry to delete. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Beispiele Beispiel 1. Delete file from archive using its index <?php $zip = new ZipArchive ; if ( $zip -> open ( 'test.zip' ) === TRUE ) { $zip -> deleteIndex ( 2 ); $zip -> close (); echo 'ok' ; } else { echo 'failed' ; } ?> ZipArchive::...
PHP Manual
[ ZipArchive::deleteIndex php.net ]

PHP Funktion
HP-UX specific installation notes ( phplist Code 22% Relevanz )
Rubrik
Installation auf Unix-Systemen
Kurzform
-----
Vorschau
... uk). Anmerkung: These tips were written for PHP 4.0.4 and Apache 1.3.9. You need gzip, download a binary distribution from http://hpux.connect.org.uk/ftp/hpux/Gnu/gzip-1.2.4a/gzip-1.2.4a-sd-10.20.depot.Z uncompress the file and install using swinstall. You need gcc, download a binary distribution from http://gatekeep.cs.utah.edu/ftp/hpux/Gnu/gcc-2.95.2/gcc-2.95.2-sd-10.20.depot.gz . uncompress this file and install gcc using swinstall. You ...
PHP Manual
[ HP-UX specific installation notes php.net ]

PHP Funktion
Usage ( phplist Code 22% Relevanz )
Rubrik
oggvorbis
Kurzform
Usage -- Examples on using the ogg:// wrapper.
Vorschau
...Usage Usage (no version information, might be only in CVS) Usage -- Examples on using the ogg:// wrapper. Beispiele Beispiel 1. Reading an OGG/Vorbis file <?php dl ( "oggvorbis.so" ); /* By default, ogg:// will decode to Signed 16-bit Little Endian */ $fp = fopen ( 'ogg://myaudio.ogg' , 'r' ); /* Collect some information about the file. */ $metadata = stream_get_meta_data...
PHP Manual
[ Usage php.net ]

PHP Funktion
DB++ Functions ( phplist Code 22% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... 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 libraries and ...
PHP Manual
[ DB++ Functions php.net ]

PHP Funktion
File Alteration Monitor Functions ( phplist Code 22% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...File Alteration Monitor Functions XXXVI. File Alteration Monitor Functions Einführung FAM monitors files and directories, notifying interested applications of changes. More information about FAM is available at http://oss.sgi.com/projects/fam/ . A PHP script may specify a list of files for FAM to monitor using the functions...
PHP Manual
[ File Alteration Monitor Functions php.net ]

PHP Funktion
hash Functions ( phplist Code 22% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... ) Optional flag for hash_init() . Indicates that the HMAC digest-keying algorithm should be applied to the current hashing context. Inhaltsverzeichnis hash_algos -- Return a list of registered hashing algorithms hash_file -- Generate a hash value using the contents of a given file hash_final -- Finalize an incremental hash and return resulting digest hash_hmac_file -- Generate a keyed hash value using the HMAC method and the contents of a ...
PHP Manual
[ hash Functions php.net ]

PHP Funktion
bcompiler_write_constant ( phplist Code 21% Relevanz )
Rubrik
PHP bytecode Compiler
Kurzform
bcompiler_write_constant -- Writes a defined constant as bytecodes
Vorschau
...bcompiler_write_constant bcompiler_write_constant (PECL) bcompiler_write_constant -- Writes a defined constant as bytecodes Description bool bcompiler_write_constant ( resource filehandle, string constantName ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. Seien Sie ...
PHP Manual
[ bcompiler_write_constant php.net ]

PHP Funktion
bcompiler_write_function ( phplist Code 21% Relevanz )
Rubrik
PHP bytecode Compiler
Kurzform
bcompiler_write_function -- Writes an defined function as bytecodes
Vorschau
...bcompiler_write_function bcompiler_write_function (PECL) bcompiler_write_function -- Writes an defined function as bytecodes Description bool bcompiler_write_function ( resource filehandle, string functionName ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. Seien Sie ...
PHP Manual
[ bcompiler_write_function php.net ]

PHP Funktion
bcompiler_write_functions_from_file ( phplist Code 21% Relevanz )
Rubrik
PHP bytecode Compiler
Kurzform
bcompiler_write_functions_from_file -- Writes all functions defined in a file as bytecodes
Vorschau
...bcompiler_write_functions_from_file bcompiler_write_functions_from_file (PECL) bcompiler_write_functions_from_file -- Writes all functions defined in a file as bytecodes Description bool bcompiler_write_functions_from_file ( resource filehandle, string fileName ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern...
PHP Manual
[ bcompiler_write_functions_from_file php.net ]

PHP Funktion
fdf_get_version ( phplist Code 21% Relevanz )
Rubrik
Forms Data Format Funktionen
Kurzform
fdf_get_version -- Gets version number for FDF API or file
Vorschau
...fdf_get_version fdf_get_version (PHP 4 >= 4.3.0, PHP 5) fdf_get_version -- Gets version number for FDF API or file Description string fdf_get_version ( [resource fdf_document] ) This function will return the fdf version for the given fdf_document , or the toolkit API version number if no parameter is given. For the current FDF toolkit...
PHP Manual
[ fdf_get_version php.net ]

PHP Funktion
fdf_set_version ( phplist Code 21% Relevanz )
Rubrik
Forms Data Format Funktionen
Kurzform
fdf_set_version -- Sets version number for a FDF file
Vorschau
...fdf_set_version fdf_set_version (PHP 4 >= 4.3.0, PHP 5) fdf_set_version -- Sets version number for a FDF file Description bool fdf_set_version ( resource fdf_document, string version ) This function will set the fdf version for the given fdf_document . Some features supported by this extension are only available in newer fdf ...
PHP Manual
[ fdf_set_version php.net ]

PHP Funktion
import_request_variables ( phplist Code 21% Relevanz )
Rubrik
Funktionen zur Behandlung von Variablen
Kurzform
import_request_variables -- Import GET/POST/Cookie variables into the global scope
Vorschau
... to import. You can use 'G', 'P' and 'C' characters respectively for GET, POST and Cookie. These characters are not case sensitive, so you can also use any combination of 'g', 'p' and 'c'. POST includes the POST uploaded file information. Note that the order of the letters matters, as when using "gp", the POST variables will overwrite GET variables with the same name. Any other letters than GPC are discarded. The prefix parameter is used as a ...
PHP Manual
[ import_request_variables php.net ]

PHP Funktion
ssh2_sftp_mkdir ( phplist Code 21% Relevanz )
Rubrik
Secure Shell2 Functions
Kurzform
ssh2_sftp_mkdir -- Create a directory
Vorschau
...ssh2_sftp_mkdir ssh2_sftp_mkdir (PECL) ssh2_sftp_mkdir -- Create a directory Description bool ssh2_sftp_mkdir ( resource sftp, string dirname [, int mode [, bool recursive]] ) Creates a directory on the remote file server with permissions set to mode . If recursive is TRUE any parent directories required for dirname will be automatically created as well. This function is similar to using mkdir() with the ssh2.sftp:// wrapper. ...
PHP Manual
[ ssh2_sftp_mkdir php.net ]

PHP Funktion
ssh2_sftp_rmdir ( phplist Code 21% Relevanz )
Rubrik
Secure Shell2 Functions
Kurzform
ssh2_sftp_rmdir -- Remove a directory
Vorschau
...ssh2_sftp_rmdir ssh2_sftp_rmdir (PECL) ssh2_sftp_rmdir -- Remove a directory Description bool ssh2_sftp_rmdir ( resource sftp, string dirname ) Removes a directory from the remote file server. This function is similar to using rmdir() with the ssh2.sftp:// wrapper. Beispiel 1. Removing a directory on a remote server <?php $connection = ssh2_connect ( 'shell.example.com' , 22 ); ssh2_auth_password ( $...
PHP Manual
[ ssh2_sftp_rmdir php.net ]

PHP Funktion
Compiling for OS X Server ( phplist Code 21% Relevanz )
Rubrik
Installation on Mac OS X
Kurzform
-----
Vorschau
... libmodphp4.a . Then go back to the root of the Apache source directory and run the above configure command again. That'll bring the link table up to date. Run make and make install again. Copy and rename the php.ini-dist file to your bin directory from your PHP 4 source directory: cp php.ini-dist /usr/local/bin/php.ini or (if your don't have a local directory) cp php.ini-dist /usr/bin/php.ini . Installation on Mac OS X Compiling for MacOS X...
PHP Manual
[ Compiling for OS X Server php.net ]

PHP Funktion
XSLT Funktionen ( phplist Code 21% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... -- Set the base URI for all XSLT transformations xslt_set_encoding -- Set the encoding for the parsing of XML documents xslt_set_error_handler -- Set an error handler for a XSLT processor xslt_set_log -- Set the log file to write log messages to xslt_set_object -- Sets the object in which to resolve callback functions xslt_set_sax_handler -- Setzen des SAX handlers für einen XSLT-Prozessor xslt_set_sax_handlers -- Set the SAX handlers to ...
PHP Manual
[ XSLT Funktionen php.net ]

PHP Funktion
Troubleshooting ( phplist Code 21% Relevanz )
Rubrik
Zend API: Hacking the Core of PHP
Kurzform
-----
Vorschau
... 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 with ...
PHP Manual
[ Troubleshooting php.net ]

PHP Funktion
Installation FAQ ( phplist Code 20% Relevanz )
Rubrik
FAQ: Frequently Asked Questions
Kurzform
-----
Vorschau
.... 2. Unix/Windows: Wo sollte sich meine php.ini befinden? Unter Unix sollte sie standardmäßig in /usr/local/lib sein, was <install-path>/lib ist. Die Meisten werden das beim Übersetzen mit der Option --with-config-file-path ändern wollen. Sie können das, z.B. mit --with-config-file-path=/etc festlegen. Dann kopieren Sie die php.ini-dist der Distribution nach /etc/php.ini und editieren sie, um alle gewünschten lokalen Änderungen ...
PHP Manual
[ Installation FAQ php.net ]

PHP Funktion
assert ( phplist Code 20% Relevanz )
Rubrik
PHP Optionen & Informationen
Kurzform
assert -- Prüft ab ob eine Bedingung oder Abfrage FALSE ist
Vorschau
... <?php // Active assert and make it quiet assert_options ( ASSERT_ACTIVE , 1 ); assert_options ( ASSERT_WARNING , 0 ); assert_options ( ASSERT_QUIET_EVAL , 1 ); // Create a handler function function my_assert_handler ( $file , $line , $code ) { echo "<hr>Assertion Failed: File '$file'<br> Line '$line'<br> Code '$code'<br><hr>" ; } // Set up the callback assert_options ( ASSERT_CALLBACK , 'my_assert_handler' ); // ...
PHP Manual
[ assert php.net ]

PHP Funktion
bcompiler_write_exe_footer ( phplist Code 20% Relevanz )
Rubrik
PHP bytecode Compiler
Kurzform
bcompiler_write_exe_footer -- Writes the start pos and sig to the end of a exe type file
Vorschau
...bcompiler_write_exe_footer bcompiler_write_exe_footer (PECL) bcompiler_write_exe_footer -- Writes the start pos, and sig to the end of a exe type file Description bool bcompiler_write_exe_footer ( resource filehandle, int startpos ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. Seien Sie gewarnt ...
PHP Manual
[ bcompiler_write_exe_footer php.net ]

PHP Funktion
gzgetc ( phplist Code 20% Relevanz )
Rubrik
Zlib Komprimierungsfunktionen
Kurzform
gzgetc -- Get character from gz-file pointer
Vorschau
...gzgetc gzgetc (PHP 3, PHP 4, PHP 5) gzgetc -- Get character from gz-file pointer Beschreibung string gzgetc ( resource zp ) Returns a string containing a single (uncompressed) character read from the given gz-file pointer. Parameter Liste zp The gz-file pointer. It must be valid, and must point to a file successfully opened by gzopen() . Rückgabewerte The uncompressed character or FALSE on EOF (unlike gzeof() ). Beispiele ...
PHP Manual
[ gzgetc php.net ]

PHP Funktion
gzgets ( phplist Code 20% Relevanz )
Rubrik
Zlib Komprimierungsfunktionen
Kurzform
gzgets -- Get line from file pointer
Vorschau
...gzgets gzgets (PHP 3, PHP 4, PHP 5) gzgets -- Get line from file pointer Beschreibung string gzgets ( resource zp, int length ) Gets a (uncompressed) string of up to length - 1 bytes read from the given file pointer. Reading ends when length - 1 bytes have been read, on a newline, or on EOF (whichever comes first). Parameter Liste zp The gz-file pointer. It must be valid, and must point to a file successfully opened by ...
PHP Manual
[ gzgets php.net ]

PHP Funktion
gzopen ( phplist Code 20% Relevanz )
Rubrik
Zlib Komprimierungsfunktionen
Kurzform
gzopen -- Open gz-file
Vorschau
...gzopen gzopen (PHP 3, PHP 4, PHP 5) gzopen -- Open gz-file Beschreibung resource gzopen ( string filename, string mode [, int use_include_path] ) Opens a gzip (.gz) file for reading or writing. gzopen() can be used to read a file which is not in gzip format; in this case gzread() will directly read from the file without decompression. Parameter Liste filename The file name. mode As in ...
PHP Manual
[ gzopen php.net ]

PHP Funktion
gzread ( phplist Code 20% Relevanz )
Rubrik
Zlib Komprimierungsfunktionen
Kurzform
gzread -- Binary-safe gz-file read
Vorschau
...gzread gzread (PHP 3, PHP 4, PHP 5) gzread -- Binary-safe gz-file read Beschreibung string gzread ( resource zp, int length ) gzread() reads up to length bytes from the given gz-file pointer. Reading stops when length (uncompressed) bytes have been read or EOF is reached, whichever comes first. Parameter Liste zp The gz-file pointer. It must be valid, and must point to a file successfully opened by ...
PHP Manual
[ gzread php.net ]

PHP Funktion
gzseek ( phplist Code 20% Relevanz )
Rubrik
Zlib Komprimierungsfunktionen
Kurzform
gzseek -- Seek on a gz-file pointer
Vorschau
...gzseek gzseek (PHP 3, PHP 4, PHP 5) gzseek -- Seek on a gz-file pointer Beschreibung int gzseek ( resource zp, int offset ) Sets the file position indicator for the given file pointer to the given offset byte into the file stream. Equivalent to calling (in C) gzseek(zp, offset, SEEK_SET) . If the file is opened for reading, this function is emulated but can be extremely slow. If the file is opened for writing, only forward seeks are ...
PHP Manual
[ gzseek php.net ]

PHP Funktion
gztell ( phplist Code 20% Relevanz )
Rubrik
Zlib Komprimierungsfunktionen
Kurzform
gztell -- Tell gz-file pointer read/write position
Vorschau
...gztell gztell (PHP 3, PHP 4, PHP 5) gztell -- Tell gz-file pointer read/write position Beschreibung int gztell ( resource zp ) Gets the position of the given file pointer; i.e., its offset into the file stream. Parameter Liste zp The gz-file pointer. It must be valid, and must point to a file successfully opened by gzopen() . Rückgabewerte The position of the file pointer or FALSE if an error occurs. Siehe auch gzopen...
PHP Manual
[ gztell php.net ]

PHP Funktion
ocinewdescriptor ( phplist Code 20% Relevanz )
Rubrik
Oracle 8 Funktionen
Kurzform
ocinewdescriptor -- Initialize a new empty descriptor LOB/FILE (LOB is default)
Vorschau
...ocinewdescriptor ocinewdescriptor (PHP 3 >= 3.0.7, PHP 4, PHP 5) ocinewdescriptor -- Initialize a new empty descriptor LOB/FILE (LOB is default) Beschreibung string OCINewDescriptor ( int connection [, int type] ) OCINewDescriptor() Allocates storage to hold descriptors or LOB locators. Valid values for the valid type are OCI_D_FILE, OCI_D_LOB, ...
PHP Manual
[ ocinewdescriptor php.net ]

PHP Funktion
ovrimos_rollback ( phplist Code 20% Relevanz )
Rubrik
Ovrimos SQL Functions
Kurzform
ovrimos_rollback -- Rolls back the transaction
Vorschau
... -- Rolls back the transaction Description bool ovrimos_rollback ( int connection_id ) ovrimos_rollback() is used to roll back the transaction. Gibt bei Erfolg TRUE , im Fehlerfall FALSE . ovrimos_result Paradox File Access...
PHP Manual
[ ovrimos_rollback php.net ]

PHP Funktion
ps_continue_text ( phplist Code 20% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_continue_text -- Continue text in next line
Vorschau
... must be set with ps_set_value() . The actual position of the text is determined by the values "textx" and "texty" which can be requested with ps_get_value() Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . text The text to output. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_show() ps_show_xy() ps_show_boxed() ps_closepath ps_curveto...
PHP Manual
[ ps_continue_text php.net ]

PHP Funktion
ps_new ( phplist Code 20% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_new -- Creates a new PostScript document object
Vorschau
...ps_new ps_new (PECL) ps_new -- Creates a new PostScript document object Beschreibung resource ps_new ( void ) Creates a new document instance. It does not create the file on disk or in memory, it just sets up everything. ps_new() is usually followed by a call of ps_open_file() to actually create the postscript document. Rückgabewerte Resource of PostScript document or FALSE on failure. The...
PHP Manual
[ ps_new php.net ]

PHP Funktion
px_delete_record ( phplist Code 20% Relevanz )
Rubrik
Paradox File Access
Kurzform
px_delete_record -- Deletes record from paradox database
Vorschau
... (PECL) px_delete_record -- Deletes record from paradox database Beschreibung bool px_delete_record ( resource pxdoc, int num ) This function deletes a record from the database. It does not free the space in the database file but just marks it as deleted. Inserting a new record afterwards will reuse the space. Anmerkung: This function is only available if pxlib >= 0.6.0 is used. Parameter Liste pxdoc Resource identifier of the paradox ...
PHP Manual
[ px_delete_record php.net ]

PHP Funktion
px_new ( phplist Code 20% Relevanz )
Rubrik
Paradox File Access
Kurzform
px_new -- Create a new paradox object
Vorschau
...px_new px_new (PECL) px_new -- Create a new paradox object Beschreibung resource px_new ( void ) Create a new paradox object. You will have to call this function before any further functions. px_new() does not create any file on the disk, it just creates an instance of a paradox object. This function must not be called if the object oriented interface is used. Use new paradox_db() instead. Rückgabewerte Returns FALSE on failure. Beispiele ...
PHP Manual
[ px_new php.net ]

PHP Funktion
ssh2_sftp_rename ( phplist Code 20% Relevanz )
Rubrik
Secure Shell2 Functions
Kurzform
ssh2_sftp_rename -- Rename a remote file
Vorschau
...ssh2_sftp_rename ssh2_sftp_rename (PECL) ssh2_sftp_rename -- Rename a remote file Description bool ssh2_sftp_rename ( resource sftp, string from, string to ) Renames a file on the remote filesystem. Beispiel 1. Renaming a file via sftp <?php $connection = ssh2_connect ( 'shell.example.com' , 22 ); ssh2_auth_password ( $connection , 'username' , 'password' ); $sftp = ssh2_sftp ( $connection ); ...
PHP Manual
[ ssh2_sftp_rename php.net ]

PHP Funktion
ssh2_sftp_unlink ( phplist Code 20% Relevanz )
Rubrik
Secure Shell2 Functions
Kurzform
ssh2_sftp_unlink -- Delete a file
Vorschau
...ssh2_sftp_unlink ssh2_sftp_unlink (PECL) ssh2_sftp_unlink -- Delete a file Description bool ssh2_sftp_unlink ( resource sftp, string filename ) Deletes a file on the remote filesystem Beispiel 1. Deleting a file <?php $connection = ssh2_connect ( 'shell.example.com' , 22 ); ssh2_auth_password ( $connection , 'username' , 'password' ); $sftp = ssh2_sftp ( $connection ); ssh2_sftp_unlink ( $sftp , '/home/username/stale_file...
PHP Manual
[ ssh2_sftp_unlink php.net ]

PHP Funktion
tidy_load_config ( phplist Code 20% Relevanz )
Rubrik
Tidy Functions
Kurzform
tidy_load_config -- Load an ASCII Tidy configuration file with the specified encoding
Vorschau
...tidy_load_config get_attr"HREF="function.tidy-node-get-attr.html"> tidy_load_config (no version information, might be only in CVS) tidy_load_config -- Load an ASCII Tidy configuration file with the specified encoding Description void tidy_load_config ( string filename, string encoding ) This function loads a Tidy configuration file, with the specified encoding . Anmerkung: Diese Funktion steht nur in Tidy 1...
PHP Manual
[ tidy_load_config php.net ]

PHP Funktion
tidy_save_config ( phplist Code 20% Relevanz )
Rubrik
Tidy Functions
Kurzform
tidy_save_config -- Save current settings to named file
Vorschau
...tidy_save_config tidy_save_config (no version information, might be only in CVS) tidy_save_config -- Save current settings to named file Description bool tidy_save_config ( string filename ) tidy_save_config() saves current settings to the specified file. Only non-default values are written. See also tidy_get_config() , tidy_getopt() , tidy_reset_config() and tidy_setopt() . Anmerkung: Diese Funktion ...
PHP Manual
[ tidy_save_config php.net ]

PHP Funktion
ZipArchive::open ( phplist Code 20% Relevanz )
Rubrik
ZIP Funktionen (Lesezugriff)
Kurzform
ZipArchive::open -- Open a ZIP file archive
Vorschau
...ZipArchive::open ZipArchive::open (no version information, might be only in CVS) ZipArchive::open -- Open a ZIP file archive Beschreibung mixed ZipArchive::open ( string filename [, int flags] ) Opens a new zip archive for reading, writing or modifying. Parameter Liste filename The file name of the ZIP archive to open. flags The mode to use to open the archive. ZIPARCHIVE::CREATE ...
PHP Manual
[ ZipArchive::open php.net ]

PHP Funktion
CGI and commandline setups ( phplist Code 20% Relevanz )
Rubrik
Installation auf Unix-Systemen
Kurzform
-----
Vorschau
... the 30 seconds allowed. This is because the set_time_limit() can not be used in Safe Mode . Use the max_execution_time configuration setting to control this time for your own scripts. make bench ignores the configuration file . Anmerkung: make bench is only available for PHP 3. Using Variables Some server supplied environment variables are not defined in the current CGI/1.1 specification . Only the following variables are defined there: ...
PHP Manual
[ CGI and commandline setups php.net ]

PHP Funktion
Fleshing out your skeleton ( phplist Code 20% Relevanz )
Rubrik
PDO Driver How-To
Kurzform
-----
Vorschau
... TSRMLS_DC macro at the end of each of these statements. Consult the Zend programmer documentation for more information on this macro. pdo_SKEL_error static int pdo_SKEL_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, const char *file, int line TSRMLS_DC) The purpose of this function is to be used as a generic error handling function within the driver. It is called by the driver when an error occurs within the driver. If an error occurs that is not ...
PHP Manual
[ Fleshing out your skeleton php.net ]

PHP Funktion
Fehler-Kontroll-Operatoren ( phplist Code 20% Relevanz )
Rubrik
Operatoren
Kurzform
-----
Vorschau
... Variable mit jedem neuen Auftreten eines Fehlers überschrieben wird, sollte man sie möglichst bald nach Verwendung des Ausdrucks überprüfen, wenn man mit ihr arbeiten will. <?php /* Beabsichtigter Dateifehler */ $my_file = @ file ( 'nicht_vorhandene_Datei' ) or die ( "Datei konnte nicht geöffnetwerden: Fehler war:'$php_errormsg'" ); // Das funktioniert bei jedem Ausdruck, nicht nur bei Funktionen: $value = @ $cache [ $key ]; // erzeugt ...
PHP Manual
[ Fehler-Kontroll-Operatoren php.net ]

PHP Funktion
Radius ( phplist Code 20% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... Accounting ( RFC 2866 ). This package is available for Unix (tested on FreeBSD and Linux) and for Windows. Anmerkung: An exact description for libradius can be found here . A detailed description of the configuration file can be found here . Installation Howto install the package? untar the package (usually into php4/ext) rename radius-x.x to radius run ./buildconf in php4 run ./configure --enable-radius make; make install or if you would ...
PHP Manual
[ Radius php.net ]

PHP Funktion
Using Extensions ( phplist Code 20% Relevanz )
Rubrik
Zend API: Hacking the Core of PHP
Kurzform
-----
Vorschau
... API: Hacking the Core of PHP Using Extensions Depending on the build process you selected, you should either end up with a new PHP binary to be linked into your Web server (or run as CGI), or with an .so (shared object) file. If you compiled the example file first_module.c as a shared object, your result file should be first_module.so . To use it, you first have to copy it to a place from which it's accessible to PHP. For a simple test ...
PHP Manual
[ Using Extensions php.net ]

PHP Funktion
ibase_blob_import ( phplist Code 19% Relevanz )
Rubrik
InterBase-Funktionen
Kurzform
ibase_blob_import -- Create blob copy file in it and close it
Vorschau
...ibase_blob_import ibase_blob_import (PHP 3 >= 3.0.7, PHP 4, PHP 5) ibase_blob_import -- Create blob, copy file in it, and close it Description string ibase_blob_import ( resource link_identifier, resource file_handle ) string ibase_blob_import ( resource file_handle ) This function creates a BLOB, reads an entire file into it, closes it and returns the assigned BLOB id. The file handle is a handle returned by fopen() . Returns ...
PHP Manual
[ ibase_blob_import php.net ]

PHP Funktion
imagecreatefromgd ( phplist Code 19% Relevanz )
Rubrik
Grafik-Funktionen
Kurzform
imagecreatefromgd -- Create a new image from GD file or URL
Vorschau
...imagecreatefromgd imagecreatefromgd (PHP 4 >= 4.1.0, PHP 5) imagecreatefromgd -- Create a new image from GD file or URL Description resource imagecreatefromgd ( string filename ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. Tipp: Mit dieser Funktion können Sie eineURL als Dateinamen verwenden, falls Sie fopen wrappers ermöglicht ...
PHP Manual
[ imagecreatefromgd php.net ]

PHP Funktion
libxml_get_errors ( phplist Code 19% Relevanz )
Rubrik
libxml Functions
Kurzform
libxml_get_errors -- Retrieve array of errors
Vorschau
...: " ; break; case LIBXML_ERR_FATAL : $return .= "Fatal Error $error -> code: " ; break; } $return .= trim ( $error -> message ) . " \n Line: $error -> line" . " \n Column: $error -> column" ; if ( $error -> file ) { $return .= " \n File: $error -> file" ; } return "$return \n\n -------------------------------------------- \n\n " ; } ?> Das oben gezeigte Beispiel erzeugt folgendeAusgabe: <titles>PHP: Behind the Parser...
PHP Manual
[ libxml_get_errors php.net ]

PHP Funktion
mime_content_type ( phplist Code 19% Relevanz )
Rubrik
Mimetype Functions
Kurzform
mime_content_type -- Detect MIME Content-type for a file
Vorschau
...mime_content_type mime_content_type (PHP 4 >= 4.3.0, PHP 5) mime_content_type -- Detect MIME Content-type for a file Description string mime_content_type ( string filename ) Returns the MIME content type for a file as determined by using information from the magic.mime file. Content types are returned in MIME format, like text/plain or application/octet-stream . Beispiel 1. mime_content_type() example <?php echo mime_content_type...
PHP Manual
[ mime_content_type php.net ]

PHP Funktion
mysqli_stmt_errno ( phplist Code 19% 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
... 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 error ...
PHP Manual
[ mysqli_stmt_errno php.net ]

PHP Funktion
set_error_handler ( phplist Code 19% Relevanz )
Rubrik
Error Handling and Logging Functions
Kurzform
set_error_handler -- Bestimmt eine benutzerdefinierte Funktion zur Fehlerbehandlung.
Vorschau
...E_USER_WARNING ); define ( "WARNING" , E_USER_NOTICE ); // die Stufe für dieses Skript einstellen error_reporting ( FATAL | ERROR | WARNING ); // Fehlerbehandlungsfunktion function myErrorHandler ( $errno , $errstr , $errfile , $errline ) { switch ( $errno ) { case FATAL : echo "<b>FATAL</b> [ $errno ] $errstr<br /> \n " ; echo " Fatal error in line $errline of file $errfile" ; echo ", PHP " . PHP_VERSION . " (" . PHP_OS . ")&...
PHP Manual
[ set_error_handler php.net ]

PHP Funktion
Compiling for MacOS X Client ( phplist Code 19% Relevanz )
Rubrik
Installation on Mac OS X
Kurzform
-----
Vorschau
....so.gz , wait for the download to finish. Type gunzip libphp4.so.gz . Type sudo apxs -i -a -n php4 libphp4.so Now type sudo open -a TextEdit /etc/httpd/httpd.conf . TextEdit will open with the web server configuration file. Locate these two lines towards the end of the file: (Use the Find command) #AddType application/x-httpd-php .php #AddType application/x-httpd-php-source .phps Remove the two hash marks ( # ), then save the file and quit ...
PHP Manual
[ Compiling for MacOS X Client php.net ]

PHP Funktion
Forms Data Format Funktionen ( phplist Code 19% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...üllen, ohne das Formular selbst zu verändern. Hierzu erzeugt man das FDF Dokument ( fdf_create() ), setzt die Werte der jeweiligen Input Felder ( fdf_set_value() ) und verbindet es mit dem jeweiligen PDF Formular ( fdf_set_file() ). Nachdem man das FDF Dokument, mit dem passenden MimeType application/vnd.fdf versehen, ausgegeben hat, erkennt das Acrobat Reader PlugIn des Browsers den MimeType und füllt das Zielformular mit den Daten des FDF ...
PHP Manual
[ Forms Data Format Funktionen php.net ]

PHP Funktion
Funktionen des Dateisystems ( phplist Code 19% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... wurde in PHP 4.3.0 eingeführt. from="joe@example.com" string Definiert das anonyme FTP Passwort (Ihre E-Mail Adresse). auto_detect_line_endings boolean Wenn aktiviert, prüft PHP die mittels fgets() und file() gelesenen Daten auf die Verwendung der Konventionen für Zeilenenden von Unix, MS-Dos oder Macintosh. Dies ermöglich PHP die Kompatibilität mit Macintosh Systemen, ist jedoch standardmäßig deaktiviert, da die Ermittlung ...
PHP Manual
[ Funktionen des Dateisystems php.net ]

PHP Funktion
ZIP Funktionen (Lesezugriff) ( phplist Code 19% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... 1. Beispiel zur Verwendung der Zip Funktion <?php $zip = zip_open ( "/tmp/test2.zip" ); if ( $zip ) { while ( $zip_entry = zip_read ( $zip )) { echo "Name: " . zip_entry_name ( $zip_entry ) . "\n" ; echo "Actual Filesize: " . zip_entry_filesize ( $zip_entry ) . "\n" ; echo "Compressed Size: " . zip_entry_compressedsize ( $zip_entry ) . "\n" ; echo "Compression Method: " . zip_entry_compressionmethod ( $zip_entry ) . "\n" ; if ( ...
PHP Manual
[ ZIP Funktionen (Lesezugriff) php.net ]

PHP Funktion
PHP's Automatic Build System ( phplist Code 19% Relevanz )
Rubrik
Zend API: Hacking the Core of PHP
Kurzform
-----
Vorschau
... PHP's Automatic Build System PHP 4 features an automatic build system that's very flexible. All modules reside in a subdirectory of the ext directory. In addition to its own sources, each module consists of a config.m4 file, for extension configuration. (for example, see http://www.gnu.org/software/m4/manual/m4.html ) All these stub files are generated automatically, along with .cvsignore , by a little shell script named ext_skel that ...
PHP Manual
[ PHP's Automatic Build System php.net ]

PHP Funktion
DirectoryIterator::isReadable ( phplist Code 18% Relevanz )
Rubrik
Standard PHP Library (SPL) Functions
Kurzform
DirectoryIterator::isReadable -- Returns true if file can be read
Vorschau
...DirectoryIterator::isReadable DirectoryIterator::isReadable (no version information, might be only in CVS) DirectoryIterator::isReadable -- Returns true if file can be read Description bool DirectoryIterator::isReadable ( void ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. DirectoryIterator::isLink ...
PHP Manual
[ DirectoryIterator::isReadable php.net ]

PHP Funktion
DirectoryIterator::isWritable ( phplist Code 18% Relevanz )
Rubrik
Standard PHP Library (SPL) Functions
Kurzform
DirectoryIterator::isWritable -- Returns true if file can be written
Vorschau
...DirectoryIterator::isWritable DirectoryIterator::isWritable (no version information, might be only in CVS) DirectoryIterator::isWritable -- Returns true if file can be written Description bool DirectoryIterator::isWritable ( void ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. DirectoryIterator::isReadable ...
PHP Manual
[ DirectoryIterator::isWritable php.net ]

PHP Funktion
DomXsltStylesheet->result_dump_file() ( phplist Code 18% Relevanz )
Rubrik
DOM XML Funktionen
Kurzform
DomXsltStylesheet->result_dump_file() -- Dumps the result from a XSLT-Transformation into a file
Vorschau
...DomXsltStylesheet->result_dump_file() process()"HREF="function.domxsltstylesheet-process.html"> result_dump_mem()"HREF="function.domxsltstylesheet-result-dump-mem.html"> DomXsltStylesheet->result_dump_file() (no version information, might be only in CVS) DomXsltStylesheet->result_dump_file() -- Dumps the result from a XSLT-Transformation into a file Beschreibung class DomXsltStylesheet { string result_dump_file ( ...
PHP Manual
[ DomXsltStylesheet->result_dump_file() php.net ]

PHP Funktion
fam_cancel_monitor ( phplist Code 18% Relevanz )
Rubrik
File Alteration Monitor Functions
Kurzform
fam_cancel_monitor -- Terminate monitoring
Vorschau
...resource fam, resource fam_monitor ) fam_cancel_monitor() terminates monitoring on a resource previously requested using one of the fam_monitor_ functions. In addition an FAMAcknowledge event occurs. See also fam_monitor_file() , fam_monitor_directory() , fam_monitor_collection() , and fam_suspend_monitor() File Alteration Monitor Functions fam_close...
PHP Manual
[ fam_cancel_monitor php.net ]

PHP Funktion
fdf_get_attachment ( phplist Code 18% Relevanz )
Rubrik
Forms Data Format Funktionen
Kurzform
fdf_get_attachment -- Extracts uploaded file embedded in the FDF
Vorschau
...fdf_get_attachment fdf_get_attachment (PHP 4 >= 4.3.0, PHP 5) fdf_get_attachment -- Extracts uploaded file embedded in the FDF Description array fdf_get_attachment ( resource fdf_document, string fieldname, string savepath ) Extracts a file uploaded by means of the "file selection" field fieldname and stores it under savepath...
PHP Manual
[ fdf_get_attachment php.net ]

PHP Funktion
fputcsv ( phplist Code 18% Relevanz )
Rubrik
Funktionen des Dateisystems
Kurzform
fputcsv -- Format line as CSV and write to file pointer
Vorschau
...fputcsv fputcsv (PHP 5 >= 5.1.0RC1) fputcsv -- Format line as CSV and write to file pointer Description int fputcsv ( resource handle [, array fields [, string delimiter [, string enclosure]]] ) fputcsv() formats a line (passed as a fields array) as CSV and write it to the specified file handle . Returns...
PHP Manual
[ fputcsv php.net ]

PHP Funktion
gzgetss ( phplist Code 18% Relevanz )
Rubrik
Zlib Komprimierungsfunktionen
Kurzform
gzgetss -- Get line from gz-file pointer and strip HTML tags
Vorschau
...gzgetss gzgetss (PHP 3, PHP 4, PHP 5) gzgetss -- Get line from gz-file pointer and strip HTML tags Beschreibung string gzgetss ( resource zp, int length [, string allowable_tags] ) Identical to gzgets() , except that gzgetss() attempts to strip any HTML and PHP tags from the text it reads. ...
PHP Manual
[ gzgetss php.net ]

PHP Funktion
imagecreatefromgd2 ( phplist Code 18% Relevanz )
Rubrik
Grafik-Funktionen
Kurzform
imagecreatefromgd2 -- Create a new image from GD2 file or URL
Vorschau
...imagecreatefromgd2 imagecreatefromgd2 (PHP 4 >= 4.1.0, PHP 5) imagecreatefromgd2 -- Create a new image from GD2 file or URL Description resource imagecreatefromgd2 ( string filename ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. Anmerkung: Diese Funktion setzt die GD Bibliothek inder Version 2.0.1 oder höher voraus. Tipp: Mit dieser ...
PHP Manual
[ imagecreatefromgd2 php.net ]

PHP Funktion
imagecreatefromxbm ( phplist Code 18% Relevanz )
Rubrik
Grafik-Funktionen
Kurzform
imagecreatefromxbm -- Create a new image from file or URL
Vorschau
...imagecreatefromxbm imagecreatefromxbm (PHP 4 >= 4.0.1, PHP 5) imagecreatefromxbm -- Create a new image from file or URL Description resource imagecreatefromxbm ( string filename ) imagecreatefromxbm() returns an image identifier representing the image obtained from the given filename. Tipp: Mit dieser Funktion können Sie eineURL als Dateinamen verwenden, falls Sie fopen wrappers ermöglicht ...
PHP Manual
[ imagecreatefromxbm php.net ]

PHP Funktion
imagecreatefromxpm ( phplist Code 18% Relevanz )
Rubrik
Grafik-Funktionen
Kurzform
imagecreatefromxpm -- Create a new image from file or URL
Vorschau
...imagecreatefromxpm imagecreatefromxpm (PHP 4 >= 4.0.1, PHP 5) imagecreatefromxpm -- Create a new image from file or URL Description resource imagecreatefromxpm ( string filename ) imagecreatefromxpm() returns an image identifier representing the image obtained from the given filename. Anmerkung: Diese Funktion steht nur zur Verfügung,wenn PHP mit der GD Bibliothek übersetzt wurde, die mit PHP...
PHP Manual
[ imagecreatefromxpm php.net ]

PHP Funktion
oci_new_descriptor ( phplist Code 18% Relevanz )
Rubrik
Oracle 8 Funktionen
Kurzform
oci_new_descriptor -- Initializes a new empty LOB or FILE descriptor
Vorschau
...oci_new_descriptor oci_new_descriptor (PHP 5) oci_new_descriptor -- Initializes a new empty LOB or FILE descriptor Description OCI-Lob oci_new_descriptor ( resource connection [, int type] ) oci_new_descriptor() allocates resources to hold descriptor or LOB locator. Valid values for type are: OCI_D_FILE , OCI_D_LOB and ...
PHP Manual
[ oci_new_descriptor php.net ]

PHP Funktion
ps_clip ( phplist Code 18% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_clip -- Clips drawing to current path
Vorschau
... ( resource psdoc ) Takes the current path and uses it to define the border of a clipping area. Everything drawn outside of that area will not be visible. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_closepath() ps_circle ps_close_image...
PHP Manual
[ ps_clip php.net ]

PHP Funktion
ps_rect ( phplist Code 18% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_rect -- Draws a rectangle
Vorschau
... within a path it will add the rectangle as a subpath. If the last drawing operation does not end in the lower left corner then there will be a gap in the path. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . x x-coordinate of the lower left corner of the rectangle. y y-coordinate of the lower left corner of the rectangle. width The width of the image. height The height of the image. Rückgabewerte...
PHP Manual
[ ps_rect php.net ]

PHP Funktion
ps_save ( phplist Code 18% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_save -- Save current context
Vorschau
... ) Saves the current graphics context, containing colors, translation and rotation settings and some more. A saved context can be restored with ps_restore() . Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_restore() ps_rotate ps_scale...
PHP Manual
[ ps_save php.net ]

PHP Funktion
ps_shading_pattern ( phplist Code 18% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_shading_pattern -- Creates a pattern based on a shading
Vorschau
..., string optlist ) Creates a pattern based on a shading, which has to be created before with ps_shading() . Shading patterns can be used like regular patterns. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . shadingid The identifier of a shading previously created with ps_shading() . optlist This argument is not currently used. Rückgabewerte The identifier of the pattern or FALSE in case of an ...
PHP Manual
[ ps_shading_pattern php.net ]

PHP Funktion
ps_string_geometry ( phplist Code 18% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_string_geometry -- Gets geometry of a string
Vorschau
... [, float size]] ) This function is similar to ps_stringwidth() but returns an array of dimensions containing the width, ascender, and descender of the text. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . text The text for which the geometry is to be calculated. fontid The identifier of the font to be used. If not font is specified the current font will be used. size The size of the font. If no ...
PHP Manual
[ ps_string_geometry php.net ]

PHP Funktion
runkit_sandbox_output_handler ( phplist Code 18% Relevanz )
Rubrik
runkit Functions
Kurzform
runkit_sandbox_output_handler -- Specify a function to capture and/or process output from a runkit sandbox
Vorschau
...Using runkit_sandbox_output_handler() however, output generated by the sandbox (including errors), can be captured by a function outside of the sandbox. Anmerkung: Sandbox support (required for runkit_lint() , runkit_lint_file() ,and the Runkit_Sandbox class) is only available with PHP 5.1 or speciallypatched versions of PHP 5.0 and requires that thread safety be enabled.See the README file included in the runkit package for more information. ...
PHP Manual
[ runkit_sandbox_output_handler php.net ]

PHP Funktion
SimpleXMLElement->asXML() ( phplist Code 18% Relevanz )
Rubrik
SimpleXML Funktionen
Kurzform
SimpleXMLElement->asXML() -- Gibt einen wohlgeformten XML String zurück der auf einem SimpleXML-Element basiert
Vorschau
...() (no version information, might be only in CVS) SimpleXMLElement->asXML() -- Gibt einen wohlgeformten XML String , der auf einem SimpleXML-Element basiert Beschreibung class SimpleXMLElement { mixed asXML ( [string filename] ) } Die asXML Methode formatiert den Inhalt des Elternobjekts als XML Version 1.0. Parameter Liste filename Sofern angegeben, schreibt die Funktion die Daten in das File anstatt sie direkt zu geben. Rückgabewerte...
PHP Manual
[ SimpleXMLElement->asXML() php.net ]

PHP Funktion
SWFFont ( phplist Code 18% Relevanz )
Rubrik
Ming functions for Flash
Kurzform
SWFFont -- Loads a font definition
Vorschau
...SWFFont getwidth"HREF="function.swffont.getwidth.html"> addEntry"HREF="function.swfgradient.addentry.html"> SWFFont (PHP 4 >= 4.0.5) SWFFont -- Loads a font definition Description SWFFont swffont ( string filename ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. Seien Sie gewarnt und verwenden ...
PHP Manual
[ SWFFont php.net ]

PHP Funktion
tidy_repair_string ( phplist Code 18% Relevanz )
Rubrik
Tidy Functions
Kurzform
tidy_repair_string -- Repair a string using an optionally provided configuration file
Vorschau
...tidy_repair_string tidy_repair_string (PHP 5) tidy_repair_string -- Repair a string using an optionally provided configuration file Description string tidy_repair_string ( string data [, mixed config [, string encoding]] ) This function repairs the given string. Den config Parameterkönnen Sie entweder als Array oder String übergeben. Bei der Übergabe ...
PHP Manual
[ tidy_repair_string php.net ]

PHP Funktion
Testing ( phplist Code 18% Relevanz )
Rubrik
PDO Driver How-To
Kurzform
-----
Vorschau
...: $ cp -r pdo_SKEL /path/to/php-5.1/ext This will allow the test harness to run your tests. The next thing you need to do is create a test that will redirect into the PDO common core tests. The convention is to name this file common.phpt ; it should be placed in the tests subdirectory that was created by ext_skel when you created your extension skeleton. The content of this file should look something like the following: --TEST--SKEL--SKIPIF--&#...
PHP Manual
[ Testing php.net ]

PHP Funktion
Backward Incompatible Changes ( phplist Code 18% Relevanz )
Rubrik
Migrating from PHP 4 to PHP 5
Kurzform
-----
Vorschau
...your code may start emitting E_WARNING out of the blue. PATH_TRANSLATED server variable is no longer set implicitly under Apache2 SAPI in contrast to the situation in PHP 4, where it is set to the same value as the SCRIPT_FILENAME server variable when it is not populated by Apache. This change was made to comply with the CGI specification . Please refer to bug #23610 for further information, and see also the $_SERVER['PATH_TRANSLATED'] ...
PHP Manual
[ Backward Incompatible Changes php.net ]

PHP Funktion
DOM XML Funktionen ( phplist Code 18% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...deshalb nicht mehr funktioniert, verwenden Sie die nicht DOM standardkonforme Funktion DomNode_append_sibling() . Tabelle 1. Veraltete Funktionen und deren Ersatz Alte Funktion Neue Funktion xmldoc domxml_open_mem() xmldocfile domxml_open_file() domxml_new_xmldoc domxml_new_doc() domxml_dump_mem DomDocument_dump_mem() domxml_dump_mem_file DomDocument_dump_file() DomDocument_dump_mem_file DomDocument_dump_file() DomDocument_add_root ...
PHP Manual
[ DOM XML Funktionen php.net ]

PHP Funktion
Mimetype Functions ( phplist Code 18% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...Mimetype Functions LXXXV. Mimetype Functions Einführung Warnung This extension has been deprecated as the PECL extension Fileinfo provides the same functionality (and more) in a much cleaner way. The functions in this module try to guess the content type and encoding of a file by looking for certain magic byte sequences at specific positions ...
PHP Manual
[ Mimetype Functions php.net ]

PHP Funktion
DirectoryIterator::isExecutable ( phplist Code 17% Relevanz )
Rubrik
Standard PHP Library (SPL) Functions
Kurzform
DirectoryIterator::isExecutable -- Returns true if file is executable
Vorschau
...DirectoryIterator::isExecutable DirectoryIterator::isExecutable (no version information, might be only in CVS) DirectoryIterator::isExecutable -- Returns true if file is executable Description bool DirectoryIterator::isExecutable ( void ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. DirectoryIterator::isDot ...
PHP Manual
[ DirectoryIterator::isExecutable php.net ]

PHP Funktion
ftp_fput ( phplist Code 17% Relevanz )
Rubrik
FTP-Funktionen
Kurzform
ftp_fput -- Übertragt eine geöffnete Datei auf einen FTP-Server (upload)
Vorschau
...ftp_fput ftp_fput (PHP 3 >= 3.0.13, PHP 4, PHP 5) ftp_fput -- Übertragt eine geöffnete Datei auf einen FTP-Server (upload) Beschreibung: int ftp_fput ( int ftp_stream, string remote_file, int fp, int mode ) Gibt bei Erfolg TRUE , im Fehlerfall FALSE . ftp_fput() übertragt das per Datei-Zeiger fp benannte und geöffnete File zum FTP-Server. Die übertragenen Daten werden in der über remote_file bestimmten ...
PHP Manual
[ ftp_fput php.net ]

PHP Funktion
gzencode ( phplist Code 17% Relevanz )
Rubrik
Zlib Komprimierungsfunktionen
Kurzform
gzencode -- Create a gzip compressed string
Vorschau
... string gzencode ( string data [, int level [, int encoding_mode]] ) This function returns a compressed version of the input data compatible with the output of the gzip program. For more information on the GZIP file format, see the document: GZIP file format specification version 4.3 (RFC 1952). Parameter Liste data The data to encode. level The level of compression. Can be given as 0 for no compression up to 9 for maximum ...
PHP Manual
[ gzencode php.net ]

PHP Funktion
gzrewind ( phplist Code 17% Relevanz )
Rubrik
Zlib Komprimierungsfunktionen
Kurzform
gzrewind -- Rewind the position of a gz-file pointer
Vorschau
...gzrewind gzrewind (PHP 3, PHP 4, PHP 5) gzrewind -- Rewind the position of a gz-file pointer Beschreibung bool gzrewind ( resource zp ) Sets the file position indicator of the given gz-file pointer to the beginning of the file stream. Parameter Liste zp The gz-file pointer. It must be valid, and must point to a file successfully opened by gzopen() . Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch gzseek() gztell() ...
PHP Manual
[ gzrewind php.net ]

PHP Funktion
http_get ( phplist Code 17% Relevanz )
Rubrik
HTTP Funktionen
Kurzform
http_get -- Perform GET request
Vorschau
... like array("header" => "value") cookies array list of cookies as associative array like array("cookie" => "value") encodecookies bool whether to urlencode the cookies (default: 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 ...
PHP Manual
[ http_get php.net ]

PHP Funktion
imagecreatefromwbmp ( phplist Code 17% Relevanz )
Rubrik
Grafik-Funktionen
Kurzform
imagecreatefromwbmp -- Create a new image from file or URL
Vorschau
...imagecreatefromwbmp imagecreatefromwbmp (PHP 4 >= 4.0.1, PHP 5) imagecreatefromwbmp -- Create a new image from file or URL Description resource imagecreatefromwbmp ( string filename ) imagecreatefromwbmp() returns an image identifier representing the image obtained from the given filename. imagecreatefromwbmp() returns an empty string on failure. It also outputs an error message, which ...
PHP Manual
[ imagecreatefromwbmp php.net ]

PHP Funktion
imagecreatetruecolor ( phplist Code 17% Relevanz )
Rubrik
Grafik-Funktionen
Kurzform
imagecreatetruecolor -- Create a new true color image
Vorschau
...A Simple Text String" , $text_color ); imagepng ( $im ); imagedestroy ( $im ); ?> Anmerkung: Diese Funktion setzt die GD Bibliothek inder Version 2.0.1 oder höher voraus. Anmerkung: This function will not work with GIF file formats. See also imagedestroy() and imagecreate() . imagecreatefromxpm imagedashedline...
PHP Manual
[ imagecreatetruecolor php.net ]

PHP Funktion
mysqli_connect_errno ( phplist Code 17% 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 error ...
PHP Manual
[ mysqli_connect_errno php.net ]

PHP Funktion
OCI-Lob->import ( phplist Code 17% Relevanz )
Rubrik
Oracle 8 Funktionen
Kurzform
OCI-Lob->import -- Imports file data to the LOB
Vorschau
...OCI-Lob->import getBuffering"HREF="function.oci-lob-getbuffering.html"> load"HREF="function.oci-lob-load.html"> OCI-Lob->import (no version information, might be only in CVS) OCI-Lob->import -- Imports file data to the LOB Beschreibung class OCI-Lob { bool import ( string filename ) } Writes data from the filename in to the current position of large object. Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Parameter Liste ...
PHP Manual
[ OCI-Lob->import php.net ]

PHP Funktion
PDO::pgsqlLOBCreate ( phplist Code 17% Relevanz )
Rubrik
PostgreSQL Functions (PDO_PGSQL)
Kurzform
PDO::pgsqlLOBCreate -- Creates a new large object
Vorschau
...Rückgabewerte Returns the OID of the newly created large object on success, or FALSE on failure. Beispiele Beispiel 1. A PDO::pgsqlLOBCreate() example This example creates a new large object and copies the contents of a file into it. The OID is then stored into a table. <?php $db = new PDO ( 'pgsql:dbname=test host=localhost' , $user , $pass ); $db -> setAttribute ( PDO :: ATTR_ERRMODE , PDO :: ERRMODE_EXCEPTION ); $db -> ...
PHP Manual
[ PDO::pgsqlLOBCreate php.net ]

PHP Funktion
ps_closepath_stroke ( phplist Code 17% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_closepath_stroke -- Closes and strokes path
Vorschau
... strokes path Beschreibung bool ps_closepath_stroke ( resource psdoc ) Connects the last point with first point of a path and draws the resulting closed line. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_closepath() ps_close ps_closepath...
PHP Manual
[ ps_closepath_stroke php.net ]

PHP Funktion
ps_set_border_style ( phplist Code 17% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_set_border_style -- Sets border style of annotations
Vorschau
... to pdf and viewed in a pdf viewer. This rectangle is not visible in the postscript document. This function sets the appearance and width of the border line. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . style style can be solid or dashed . width The line width of the border. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_set_border_color() ps_set_border_dash() ...
PHP Manual
[ ps_set_border_style php.net ]

PHP Funktion
px_timestamp2string ( phplist Code 17% Relevanz )
Rubrik
Paradox File Access
Kurzform
px_timestamp2string -- Converts the timestamp into a string.
Vorschau
...px_timestamp2string (PECL) px_timestamp2string -- Converts the timestamp into a string. Beschreibung string px_timestamp2string ( resource pxdoc, float value, string format ) Turns a timestamp as it stored in the paradox file into human readable format. Paradox timestamps are the number of milliseconds since 1.1.0000. This function is just for convenience. It can be easily replaced by some math and the calendar functions as demonstrated in the ...
PHP Manual
[ px_timestamp2string php.net ]

PHP Funktion
rar_open ( phplist Code 17% Relevanz )
Rubrik
Rar Functions
Kurzform
rar_open -- Open Rar archive
Vorschau
...rar_open rar_open (no version information, might be only in CVS) rar_open -- Open Rar archive Description resource rar_open ( string filename [, string password] ) Open specified Rar archive and return Rar file resource. rar_open() returns Rar file resource or FALSE on error. rar_list GNU Readline...
PHP Manual
[ rar_open php.net ]

PHP Funktion
rpm_open ( phplist Code 17% Relevanz )
Rubrik
RPM Header Reading Funktionen
Kurzform
rpm_open -- Opens an RPM file
Vorschau
...rpm_open rpm_open (no version information, might be only in CVS) rpm_open -- Opens an RPM file Beschreibung resource rpm_open ( string filename ) rpm_open() will open an RPM file and will determine if the file is a valid RPM file. Parameter Liste filename The filename of the RPM file you wish to open. Rückgabewerte If the open succeeds, then rpm_open() will return a file pointer resource to the newly opened file. On error, ...
PHP Manual
[ rpm_open php.net ]

PHP Funktion
SDO_DAS_XML::create ( phplist Code 17% Relevanz )
Rubrik
SDO XML Data Access Service Functions
Kurzform
SDO_DAS_XML::create -- To create SDO_DAS_XML object for a given schema file
Vorschau
...SDO_DAS_XML::create SDO_DAS_XML::create (no version information, might be only in CVS) SDO_DAS_XML::create -- To create SDO_DAS_XML object for a given schema file Beschreibung SDO_DAS_XML SDO_DAS_XML::create ( [string xsd_file] ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. Seien Sie gewarnt und verwenden Sie ...
PHP Manual
[ SDO_DAS_XML::create php.net ]

PHP Funktion
SWFSound ( phplist Code 17% Relevanz )
Rubrik
Ming functions for Flash
Kurzform
SWFSound -- Returns a new SWFSound object from given file
Vorschau
...SWFSound SWFSound (no version information, might be only in CVS) SWFSound -- Returns a new SWFSound object from given file Beschreibung SWFSound SWFSound ( string filename, int flags ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. SWFShape::drawGlyph SWFSoundInstance::loopCount...
PHP Manual
[ SWFSound php.net ]

PHP Funktion
ZipArchive::statName ( phplist Code 17% Relevanz )
Rubrik
ZIP Funktionen (Lesezugriff)
Kurzform
ZipArchive::statName -- Get the details of an entry defined by its name.
Vorschau
... by its name. Parameter Liste name Name of the entry flags The flags argument specifies how the name lookup should be done. Also, ZIPARCHIVE::FL_UNCHANGED may be ORed to it to request information about the original file in the archive, ignoring any changes made. ZIPARCHIVE::FL_NOCASE ZIPARCHIVE::FL_NODIR ZIPARCHIVE::FL_UNCHANGED Rückgabewerte Returns an array containing the entry details or FALSE on failure. Beispiele Beispiel 1. Dump...
PHP Manual
[ ZipArchive::statName php.net ]

PHP Funktion
InterBase-Funktionen ( phplist Code 17% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... -- Close blob ibase_blob_create -- Create a new blob for adding data ibase_blob_echo -- Output blob contents to browser ibase_blob_get -- Get len bytes data from open blob ibase_blob_import -- Create blob, copy file in it, and close it ibase_blob_info -- Return blob length and other useful info ibase_blob_open -- Open blob for retrieving data parts ibase_close -- Schließt die Verbindung zu einer InterBase-Datenbank ibase_commit_ret...
PHP Manual
[ InterBase-Funktionen php.net ]

PHP Funktion
Sonstige Funktionen ( phplist Code 17% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... eval -- Wertet einen String aus, als wäre er PHP-Code exit -- Beenden des aktuellen Skripts get_browser -- Ermittelt die Möglichkeiten des Browsers eines Benutzers __halt_compiler -- Halts the compiler execution highlight_file -- Syntax-Hervorhebung für eine Datei highlight_string -- Hervorhebung der Syntax eines Strings ignore_user_abort -- Stellt ein, ob der Verbindungsabbruch eines Clients die Skript-Ausführung abbrechen soll pack -- Packt ...
PHP Manual
[ Sonstige Funktionen php.net ]

PHP Funktion
Oracle 8 Funktionen ( phplist Code 17% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...Oracle8 Client Bibliotheken (Libraries) benötigt. Diese Schnittstelle ist flexibler als die Standard Oracle Funktionen. Es unterstützt Binding von localen und globalen PHP Variablen an Oracle Platzhalter und hat volle LOB,FILE und ROWID Unterstützung und gestattet dem Benutzer die Verwendung von Variablendefines. Vor der Benutzung dieser Erung sollten Sie sicherstellen die folgenden Umgebungsvariablen für den Webserveruser VOR dem Start des ...
PHP Manual
[ Oracle 8 Funktionen php.net ]

PHP Funktion
PostgreSQL Session Save Handler ( phplist Code 17% 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
XML Parser Functions ( phplist Code 17% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
.... Each XML parser also has a few parameters you can adjust. Anforderungen This extension uses an expat compat layer by default. It can use also expat , which can be found at http://www.jclark.com/xml/expat.html . The Makefile that comes with expat does not build a library by default, you can use this make rule for that: libexpat.a: $(OBJS) ar -rc $@ $(OBJS) ranlib $@ A source RPM package of expat can be found at http://sourceforge.net/projects/...
PHP Manual
[ XML Parser Functions php.net ]

PHP Funktion
TSRM API ( phplist Code 17% Relevanz )
Rubrik
PHP und Zend Engine Interna
Kurzform
-----
Vorschau
... -- ... tsrm_set_new_thread_begin_handler -- ... tsrm_set_new_thread_end_handler -- ... tsrm_shutdown -- ... tsrm_startup -- ... tsrm_thread_id -- ... virtual_access -- Check users permissions for a file virtual_chdir_file -- ... virtual_chdir -- ... virtual_chmod -- ... virtual_chown -- ... virtual_creat -- ... virtual_cwd_shutdown -- ... virtual_cwd_startup -- ... virtual_file_ex -- ... virtual_filepath_ex -- ... virtual_filepath -- ... ...
PHP Manual
[ TSRM API php.net ]

PHP Funktion
SDO_DAS_XML::addTypes ( phplist Code 16% Relevanz )
Rubrik
SDO XML Data Access Service Functions
Kurzform
SDO_DAS_XML::addTypes -- To load a second or subsequent schema file to a SDO_DAS_XML object
Vorschau
...SDO_DAS_XML::addTypes SDO_DAS_XML::addTypes (no version information, might be only in CVS) SDO_DAS_XML::addTypes -- To load a second or subsequent schema file to a SDO_DAS_XML object Beschreibung void SDO_DAS_XML::addTypes ( string xsd_file ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukü...
PHP Manual
[ SDO_DAS_XML::addTypes php.net ]

PHP Funktion
xml_parse_into_struct ( phplist Code 16% Relevanz )
Rubrik
XML Parser Functions
Kurzform
xml_parse_into_struct -- Parse XML data into an array structure
Vorschau
...0.8, PHP 4, PHP 5) xml_parse_into_struct -- Parse XML data into an array structure Description int xml_parse_into_struct ( resource parser, string data, array &values [, array &index] ) This function parses an XML file into 2 parallel array structures, one ( index ) containing pointers to the location of the appropriate values in the values array. These last two parameters must be passed by reference. Anmerkung: xml_parse_into_struct() ...
PHP Manual
[ xml_parse_into_struct php.net ]

PHP Funktion
ZipArchive::extractTo ( phplist Code 16% Relevanz )
Rubrik
ZIP Funktionen (Lesezugriff)
Kurzform
ZipArchive::extractTo -- Extract the archive contents
Vorschau
... version information, might be only in CVS) ZipArchive::extractTo -- Extract the archive contents Beschreibung mixed ZipArchive::extractTo ( string destination [, mixed entries] ) Extract the complete archive or the given files to the specified destination. Parameter Liste destination Location where to extract the files. entries The entries to extract. It accepts either a single entry name or an array of names. Rückgabewerte Gibt bei Erfolg ...
PHP Manual
[ ZipArchive::extractTo php.net ]

PHP Funktion
ZipArchive::getStream ( phplist Code 16% Relevanz )
Rubrik
ZIP Funktionen (Lesezugriff)
Kurzform
ZipArchive::getStream -- Get a file handler to the entry defined by its name (read only).
Vorschau
...ZipArchive::getStream ZipArchive::getStream (no version information, might be only in CVS) ZipArchive::getStream -- Get a file handler to the entry defined by its name (read only). Beschreibung resource ZipArchive::getStream ( string name ) Get a file handler to the entry defined by its name. For now it only supports read operations. Parameter ...
PHP Manual
[ ZipArchive::getStream php.net ]

PHP Funktion
ZipArchive::statIndex ( phplist Code 16% Relevanz )
Rubrik
ZIP Funktionen (Lesezugriff)
Kurzform
ZipArchive::statIndex -- Get the details of an entry defined by its index.
Vorschau
...int flags] ) The function obtains information about the entry defined by its index. Parameter Liste index Index of the entry flags ZIPARCHIVE::FL_UNCHANGED may be ORed to it to request information about the original file in the archive, ignoring any changes made. Rückgabewerte Returns an array containing the entry details or FALSE on failure. Beispiele Beispiel 1. Dump the stat info of an entry <?php $zip = new ZipArchive ; $res = $zip...
PHP Manual
[ ZipArchive::statIndex php.net ]

PHP Funktion
Alternative PHP Cache ( phplist Code 16% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... die DLL fürdiese PECL Erung entweder von PHP Downloads oder von http://snaps.php.net/ herunterladen. Anmerkung: On Windows, APC needs a temp path to exist, and be writable by the web server. It checks TMP, TEMP, USERPROFILE environment variables in that order and finally tries the WINDOWS directory if none of those are set. Anmerkung: For more in-depth, highly technical implementation details, see the developer-supplied TECHNOTES file . ...
PHP Manual
[ Alternative PHP Cache php.net ]

PHP Funktion
Funktionen zur Programmausführung ( phplist Code 16% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...proc_open() and return the exit code of that process. proc_get_status -- Get information about a process opened by proc_open() proc_nice -- Change the priority of the current process proc_open -- Execute a command and open file pointers for input/output proc_terminate -- Kills a process opened by proc_open shell_exec -- Execute command via shell and return the complete output as a string system -- Führt ein externes Programm aus und zeigt dessen ...
PHP Manual
[ Funktionen zur Programmausführung php.net ]

PHP Funktion
Runkit_Sandbox_Parent ( phplist Code 16% Relevanz )
Rubrik
runkit Functions
Kurzform
Runkit_Sandbox_Parent -- Runkit Anti-Sandbox Class
Vorschau
... class from within a sandbox environment created from the Runkit_Sandbox class provides some (controlled) means for a sandbox child to access its parent. Anmerkung: Sandbox support (required for runkit_lint() , runkit_lint_file() ,and the Runkit_Sandbox class) is only available with PHP 5.1 or speciallypatched versions of PHP 5.0 and requires that thread safety be enabled.See the README file included in the runkit package for more information. ...
PHP Manual
[ Runkit_Sandbox_Parent php.net ]

PHP Funktion
image_type_to_extension ( phplist Code 15% Relevanz )
Rubrik
Grafik-Funktionen
Kurzform
image_type_to_extension -- Get file extension for image type
Vorschau
...image_type_to_extension image_type_to_extension (no version information, might be only in CVS) image_type_to_extension -- Get file extension for image type Description string image_type_to_extension ( int imagetype [, bool include_dot] ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. ...
PHP Manual
[ image_type_to_extension php.net ]

PHP Funktion
imagecreatefromgd2part ( phplist Code 15% Relevanz )
Rubrik
Grafik-Funktionen
Kurzform
imagecreatefromgd2part -- Create a new image from a given part of GD2 file or URL
Vorschau
...imagecreatefromgd2part imagecreatefromgd2part (PHP 4 >= 4.1.0, PHP 5) imagecreatefromgd2part -- Create a new image from a given part of GD2 file or URL Description resource imagecreatefromgd2part ( string filename, int srcX, int srcY, int width, int height ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. Anmerkung: Diese Funktion setzt die GD Bibliothek inder Version ...
PHP Manual
[ imagecreatefromgd2part php.net ]

PHP Funktion
jpeg2wbmp ( phplist Code 15% Relevanz )
Rubrik
Grafik-Funktionen
Kurzform
jpeg2wbmp -- Convert JPEG image file to WBMP image file
Vorschau
...jpeg2wbmp jpeg2wbmp (PHP 4 >= 4.0.5, PHP 5) jpeg2wbmp -- Convert JPEG image file to WBMP image file Description int jpeg2wbmp ( string jpegname, string wbmpname, int d_height, int d_width, int threshold ) Converts the jpegname JPEG file to WBMP format, and saves it as wbmpname . With the d_height and d_width you specify...
PHP Manual
[ jpeg2wbmp php.net ]

PHP Funktion
proc_open ( phplist Code 15% Relevanz )
Rubrik
Funktionen zur Programmausführung
Kurzform
proc_open -- Execute a command and open file pointers for input/output
Vorschau
...proc_open proc_open (PHP 4 >= 4.3.0, PHP 5) proc_open -- Execute a command and open file pointers for input/output Beschreibung resource proc_open ( string cmd, array descriptorspec, array &pipes [, string cwd [, array env [, array other_options]]] ) proc_open() is similar to popen() but provides a much ...
PHP Manual
[ proc_open php.net ]

PHP Funktion
ps_moveto ( phplist Code 15% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_moveto -- Sets current point
Vorschau
... path has been ended then it will start a new path. If this function is called in the middle of a path it will just set the current point and start a subpath. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . x x-coordinate of the point to move to. y y-coordinate of the point to move to. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_lineto() ps_makespotcolor ps_new...
PHP Manual
[ ps_moveto php.net ]

PHP Funktion
ps_rotate ( phplist Code 15% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_rotate -- Sets rotation factor
Vorschau
... ps_rotate (PECL) ps_rotate -- Sets rotation factor Beschreibung bool ps_rotate ( resource psdoc, float rot ) Sets the rotation of the coordinate system. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . rot Angle of rotation in degree. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Beispiele Beispiel 1. Rotation of the coordinate system <?php function rectangle ( $ps ) { ...
PHP Manual
[ ps_rotate php.net ]

PHP Funktion
ps_stroke ( phplist Code 15% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_stroke -- Draws the current path
Vorschau
...Draws the current path Beschreibung bool ps_stroke ( resource psdoc ) Draws the path constructed with previously called drawing functions like ps_lineto() . Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_closepath_stroke() ps_fill() ps_fill_stroke() ps_stringwidth ps_symbol_name...
PHP Manual
[ ps_stroke php.net ]

PHP Funktion
ps_symbol ( phplist Code 15% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_symbol -- Output a glyph
Vorschau
... the glyph at position ord in the font encoding vector of the current font. The font encoding for a font can be set when loading the font with ps_findfont() . Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . ord The position of the glyph in the font encoding vector. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_symbol_name() ps_symbol_width() ps_symbol_width ...
PHP Manual
[ ps_symbol php.net ]

PHP Funktion
spl_autoload_extensions ( phplist Code 15% Relevanz )
Rubrik
Standard PHP Library (SPL) Functions
Kurzform
spl_autoload_extensions -- Register and return default file extensions for spl_autoload
Vorschau
...spl_autoload_extensions spl_autoload_extensions (PHP 5 >= 5.1.0RC1) spl_autoload_extensions -- Register and return default file extensions for spl_autoload Description string spl_autoload_extensions ( [string file_extensions] ) This function allows to modify and check the file extensions the built in __autoload fallback function spl_autoload will be using. When calling without an argument it simply returns the current list of ...
PHP Manual
[ spl_autoload_extensions php.net ]

PHP Funktion
ssh2_sftp ( phplist Code 15% Relevanz )
Rubrik
Secure Shell2 Functions
Kurzform
ssh2_sftp -- Initialize SFTP subsystem
Vorschau
...session ) Request the SFTP subsystem from an already connected SSH2 server. This method returns an SSH2 SFTP resource for use with all other ssh2_sftp_*() methods and the ssh2.sftp:// fopen wrapper. Beispiel 1. Opening a file via SFTP <?php $connection = ssh2_connect ( 'shell.example.com' , 22 ); ssh2_auth_password ( $connection , 'username' , 'password' ); $sftp = ssh2_sftp ( $connection ); $stream = fopen ( "ssh2.sftp://$sftp/path/to/file...
PHP Manual
[ ssh2_sftp php.net ]

PHP Funktion
xattr_get ( phplist Code 15% Relevanz )
Rubrik
xattr Functions
Kurzform
xattr_get -- Get an extended attribute
Vorschau
...xattr_get xattr_get (PECL) xattr_get -- Get an extended attribute Beschreibung string xattr_get ( string filename, string name [, int flags] ) This function gets the value of an extended attribute of a file. Extended attributes have two different namespaces: user and root namespace. User namespace is available for all users while root namespaceis available only for user with root privileges. xattr operates on user namespace ...
PHP Manual
[ xattr_get php.net ]

PHP Funktion
xattr_set ( phplist Code 15% Relevanz )
Rubrik
xattr Functions
Kurzform
xattr_set -- Set an extended attribute
Vorschau
...xattr_set xattr_set (PECL) xattr_set -- Set an extended attribute Beschreibung bool xattr_set ( string filename, string name, string value [, int flags] ) This function sets the value of an extended attribute of a file. Extended attributes have two different namespaces: user and root namespace. User namespace is available for all users while root namespaceis available only for user with root privileges. xattr operates on user namespace ...
PHP Manual
[ xattr_set php.net ]

PHP Funktion
ZipArchive::getFromName ( phplist Code 15% Relevanz )
Rubrik
ZIP Funktionen (Lesezugriff)
Kurzform
ZipArchive::getFromName -- Returns the entry contents using its name.
Vorschau
... ORed to it. ZIPARCHIVE::FL_NOCASE ZIPARCHIVE::FL_NODIR ZIPARCHIVE::FL_UNCHANGED ZIPARCHIVE::FL_COMPRESSED Rückgabewerte Returns the contents of the entry on success or FALSE on failure. Beispiele Beispiel 1. Get the file contents <?php $zip = new ZipArchive ; if ( $zip -> open ( 'test1.zip' ) === TRUE ) { echo $zip -> getFromName ( 'testfromfile.php' ); $zip -> close (); } else { echo 'failed' ; } ?> Beispiel 2. Convert an ...
PHP Manual
[ ZipArchive::getFromName php.net ]

PHP Funktion
ZipArchive::locateName ( phplist Code 15% Relevanz )
Rubrik
ZIP Funktionen (Lesezugriff)
Kurzform
ZipArchive::locateName -- Returns the index of the entry in the archive
Vorschau
... in the archive Beschreibung mixed ZipArchive::locateName ( string name [, int flags] ) Locates an entry using its name. Parameter Liste name The name of the entry to look up flags The function returns the index of the file named fname in archive. The flags are specified by ORing the following values, or 0 for none of them. ZIPARCHIVE::FL_NOCASE ZIPARCHIVE::FL_NODIR Rückgabewerte Returns the index of the entry on success or FALSE on ...
PHP Manual
[ ZipArchive::locateName php.net ]

PHP Funktion
Installation of extensions on Windows ( phplist Code 15% Relevanz )
Rubrik
Installation on Windows systems
Kurzform
-----
Vorschau
... your php.ini . You can also load a module dynamically in your script using dl() . The DLLs for PHP extensions are prefixed with php_ . Many extensions are built into the Windows version of PHP. This means additional DLL files, and the extension directive, are not used to load these extensions. The Windows PHP Extensions table lists extensions that require, or used to require, additional PHP DLL files. Here's a list of built in extensions: In ...
PHP Manual
[ Installation of extensions on Windows php.net ]

PHP Funktion
oggvorbis ( phplist Code 15% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...oggvorbis CVII. oggvorbis Einführung The OGG/Vorbis file format, as defined by http://www.vorbis.com/ , is a scheme for compressing audio streams by multiple factors with a minimum of quality loss. This extension adds Ogg Vorbis support to PHP's URL Wrappers . When used in read ...
PHP Manual
[ oggvorbis php.net ]

PHP Funktion
Calling User Functions ( phplist Code 15% Relevanz )
Rubrik
Zend API: Hacking the Core of PHP
Kurzform
-----
Vorschau
..."); echo "Return value: '$return_value'";?> Das oben gezeigte Beispiel erzeugt folgendeAusgabe: We are in the test function!We have 3 as typeReturn value: 'hello' Startup and Shutdown Functions Initialization File Support...
PHP Manual
[ Calling User Functions php.net ]

PHP Funktion
DirectoryIterator::isDir ( phplist Code 14% Relevanz )
Rubrik
Standard PHP Library (SPL) Functions
Kurzform
DirectoryIterator::isDir -- Returns true if file is directory
Vorschau
...DirectoryIterator::isDir DirectoryIterator::isDir (no version information, might be only in CVS) DirectoryIterator::isDir -- Returns true if file is directory Description bool DirectoryIterator::isDir ( void ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. DirectoryIterator::getType DirectoryIterator::...
PHP Manual
[ DirectoryIterator::isDir php.net ]

PHP Funktion
DirectoryIterator::isLink ( phplist Code 14% Relevanz )
Rubrik
Standard PHP Library (SPL) Functions
Kurzform
DirectoryIterator::isLink -- Returns true if file is symbolic link
Vorschau
...DirectoryIterator::isLink DirectoryIterator::isLink (no version information, might be only in CVS) DirectoryIterator::isLink -- Returns true if file is symbolic link Description bool DirectoryIterator::isLink ( void ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. DirectoryIterator::isFile ...
PHP Manual
[ DirectoryIterator::isLink php.net ]

PHP Funktion
hw_GetText ( phplist Code 14% Relevanz )
Rubrik
Hyperwave Functions
Kurzform
hw_GetText -- Retrieve text document
Vorschau
... is located at 'a-b-d-source' the resulting HTML link would be: <A HREF="../c/internet_movie">. This is useful if you want to download the whole server content onto disk and map the document hierarchy onto the file system. This function will only work for pure text documents. It will not open a special data connection and therefore blocks the control connection during the transfer. See also hw_pipedocument() , hw_free_document() , ...
PHP Manual
[ hw_GetText php.net ]

PHP Funktion
mailparse_determine_best_xfer_encoding ( phplist Code 14% Relevanz )
Rubrik
mailparse Functions
Kurzform
mailparse_determine_best_xfer_encoding -- Figures out the best way of encoding the content read from the file pointer fp which must be seek-able
Vorschau
...mailparse_determine_best_xfer_encoding mailparse_determine_best_xfer_encoding (4.1.0 - 4.1.2 only, PECL) mailparse_determine_best_xfer_encoding -- Figures out the best way of encoding the content read from the file pointer fp, which must be seek-able Beschreibung string mailparse_determine_best_xfer_encoding ( resource fp ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier ...
PHP Manual
[ mailparse_determine_best_xfer_encoding php.net ]

PHP Funktion
ps_curveto ( phplist Code 14% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_curveto -- Draws a curve
Vorschau
... x1, float y1, float x2, float y2, float x3, float y3 ) Add a section of a cubic Bézier curve described by the three given control points to the current path. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . x1 x-coordinate of first control point. y1 y-coordinate of first control point. x2 x-coordinate of second control point. y2 y-coordinate of second control point. x3 x-coordinate of third ...
PHP Manual
[ ps_curveto php.net ]

PHP Funktion
ps_restore ( phplist Code 14% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_restore -- Restore previously save context
Vorschau
... call to ps_restore() . All coordinate transformations, line style settings, color settings, etc. are being restored to the state before the call of ps_save() . Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_save() ps_rect ps_rotate...
PHP Manual
[ ps_restore php.net ]

PHP Funktion
ps_setdash ( phplist Code 14% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_setdash -- Sets appearance of a dashed line
Vorschau
... of a dashed line Beschreibung bool ps_setdash ( resource psdoc, float on, float off ) Sets the length of the black and white portions of a dashed line. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . on The length of the dash. off The length of the gap between dashes. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_setpolydash() ps_setcolor ps_setflat...
PHP Manual
[ ps_setdash php.net ]

PHP Funktion
ps_setflat ( phplist Code 14% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_setflat -- Sets flatness
Vorschau
... bool ps_setflat ( resource psdoc, float value ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . value The value must be between 0.2 and 1. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . ps_setdash ps_setfont...
PHP Manual
[ ps_setflat php.net ]

PHP Funktion
ps_setfont ( phplist Code 14% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_setfont -- Sets font to use for following output
Vorschau
... psdoc, int fontid, float size ) Sets a font, which has to be loaded before with ps_findfont() . Outputting text without setting a font results in an error. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . fontid The font identifier as returned by ps_findfont() . size The size of the font. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_findfont() ps_set_text_pos() for ...
PHP Manual
[ ps_setfont php.net ]

PHP Funktion
ps_setgray ( phplist Code 14% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_setgray -- Sets gray value
Vorschau
... in CVS) ps_setgray -- Sets gray value Beschreibung bool ps_setgray ( resource psdoc, float gray ) Sets the gray value for all following drawing operations. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . gray The value must be between 0 (white) and 1 (black). Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_setcolor() ps_setfont ps_setlinecap...
PHP Manual
[ ps_setgray php.net ]

PHP Funktion
ps_shading ( phplist Code 14% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_shading -- Creates a shading for later use
Vorschau
... ) Creates a shading, which can be used by ps_shfill() or ps_shading_pattern() . The color of the shading can be in any color space except for pattern . Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . type The type of shading can be either radial or axial . Each shading starts with the current fill color and ends with the given color values passed in the parameters c1 to c4 (see ps_setcolor() ...
PHP Manual
[ ps_shading php.net ]

PHP Funktion
px_open_fp ( phplist Code 14% Relevanz )
Rubrik
Paradox File Access
Kurzform
px_open_fp -- Open paradox database
Vorschau
...px_open_fp px_open_fp (PECL) px_open_fp -- Open paradox database Beschreibung bool px_open_fp ( resource pxdoc, resource file ) Open an existing paradox database file. The actual file has to be opened before with fopen() . This function can also be used to open primary index files and tread them like a paradox database. This is supported for those who would like to investigate a primary index. It cannot...
PHP Manual
[ px_open_fp php.net ]

PHP Funktion
ssh2_shell ( phplist Code 14% Relevanz )
Rubrik
Secure Shell2 Functions
Kurzform
ssh2_shell -- Request an interactive shell
Vorschau
... [, array env [, int width [, int height [, int width_height_type]]]]] ) Open a shell at the remote end and allocate a stream for it. term_type should correspond to one of the entries in the target system's /etc/termcap file and defaults to vanilla . env may be passed as an associative array of name/value pairs to set in the target environment. width , and height define the width and height of the virtual terminal allocated for the shell ...
PHP Manual
[ ssh2_shell php.net ]

PHP Funktion
xattr_list ( phplist Code 14% Relevanz )
Rubrik
xattr Functions
Kurzform
xattr_list -- Get a list of extended attributes
Vorschau
...xattr_list xattr_list (PECL) xattr_list -- Get a list of extended attributes Beschreibung array xattr_list ( string filename [, int flags] ) This functions gets a list of names of extended attributes of a file. Extended attributes have two different namespaces: user and root namespace. User namespace is available for all users while root namespaceis available only for user with root privileges. xattr operates on user namespace ...
PHP Manual
[ xattr_list php.net ]

PHP Funktion
ZipArchive::addFromString ( phplist Code 14% Relevanz )
Rubrik
ZIP Funktionen (Lesezugriff)
Kurzform
ZipArchive::addFromString -- Add a file to a ZIP archive using its contents
Vorschau
...ZipArchive::addFromString ZipArchive::addFromString (no version information, might be only in CVS) ZipArchive::addFromString -- Add a file to a ZIP archive using its contents Beschreibung bool ZipArchive::addFromString ( string localname, string contents ) Add a file to a ZIP archive using its contents. Parameter Liste localname The name of the entry to ...
PHP Manual
[ ZipArchive::addFromString php.net ]

PHP Funktion
ZipArchive::getFromIndex ( phplist Code 14% Relevanz )
Rubrik
ZIP Funktionen (Lesezugriff)
Kurzform
ZipArchive::getFromIndex -- Returns the entry contents using its index.
Vorschau
... open the archive. the following values may be ORed to it. ZIPARCHIVE::FL_UNCHANGED ZIPARCHIVE::FL_COMPRESSED Rückgabewerte Returns the contents of the entry on success or FALSE on failure. Beispiele Beispiel 1. Get the file contents <?php $zip = new ZipArchive ; if ( $zip -> open ( 'test.zip' ) === TRUE ) { echo $zip -> getFromIndex ( 2 ); $zip -> close (); } else { echo 'failed' ; } ?> ZipArchive::getCommentName ZipArchive...
PHP Manual
[ ZipArchive::getFromIndex php.net ]

PHP Funktion
Manual Installation Steps ( phplist Code 14% Relevanz )
Rubrik
Installation on Windows systems
Kurzform
-----
Vorschau
...provide you with a better understanding of the system, and enables you to install PHP extensions easily when needed. Upgrading from a previous PHP version: Previous editions of the manual suggest moving various ini and DLL files into your SYSTEM (i.e. C:\WINDOWS ) folder and while this simplifies the installation procedure it makes upgrading difficult. We advise you remove all of these files (like php.ini and PHP related DLLs from the Windows ...
PHP Manual
[ Manual Installation Steps php.net ]

PHP Funktion
Ming functions for Flash ( phplist Code 14% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... . You can use Ming anywhere you can compile the code, whereas libswf is closed-source and only available for a few platforms, Windows not one of them. Ming provides some insulation from the mundane details of the SWF file format, wrapping the movie elements in PHP objects. Also, Ming is still being maintained; if there's a feature that you want to see, just let us know ming@opaque.net . Ming was added in PHP 4.0.5. Anforderungen To use ...
PHP Manual
[ Ming functions for Flash php.net ]

PHP Funktion
Net_Gopher ( phplist Code 14% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... is installed through the usual PECL package installation process. Prerequisite: PHP 4.3.0 . $ pear install Net_Gopher Copy the resulting gopher.so to an appropriate location and add extension=gopher.so to your php.ini file or load it dynamically in your PHP script using dl("gopher.so"); Laufzeit Konfiguration Diese Erung definiert keine Konfigurationseinstellungen in der php.ini . Resource Typen Diese Erung definiert keine Resource-Typen. ...
PHP Manual
[ Net_Gopher php.net ]

PHP Funktion
Liste von Ressourcentypen ( phplist Code 14% Relevanz )
Rubrik
Anhang
Kurzform
-----
Vorschau
... Definition aspell aspell_new() aspell_check() , aspell_check_raw() , aspell_suggest() Niemandem Aspell dictionary bzip2 bzopen() bzerrno() , bzerror() , bzerrstr() , bzflush() , bzread() , bzwrite() bzclose() Bzip2 file COM com_load() com_invoke() , com_propget() , com_get() , com_propput() , com_set() , com_propput() Niemandem Referenz auf ein COM Objekt cpdf cpdf_open() cpdf_page_init() , cpdf_finalize_page() , cpdf_finalize() , ...
PHP Manual
[ Liste von Ressourcentypen php.net ]

PHP Funktion
php_stream_make_seekable ( phplist Code 14% Relevanz )
Rubrik
Streams Common API Reference
Kurzform
-----
Vorschau
... allows you to specify your preference for the seekable stream that is returned: use PHP_STREAM_NO_PREFERENCE to use the default seekable stream (which uses a dynamically expanding memory buffer, but switches to temporary file backed storage when the stream size becomes large), or use PHP_STREAM_PREFER_STDIO to use "regular" temporary file backed storage. Tabelle 44-1. php_stream_make_seekable() return values Value Meaning PHP_STREAM_UNCHANGED ...
PHP Manual
[ php_stream_make_seekable php.net ]

PHP Funktion
PHP input/output streams ( phplist Code 14% Relevanz )
Rubrik
List of Supported Protocols/Wrappers
Kurzform
-----
Vorschau
...available since PHP 5.1.0) php://temp (available since PHP 5.1.0) php://stdin , php://stdout and php://stderr allow access to the corresponding input or output stream of the PHP process. The stream references a duplicate file descriptor, so if you open php://stdin and later close it, you close only your copy of the descriptor--the actual stream referenced by STDIN is unaffected. Note that PHP exhibited buggy behavior in this regard until PHP 5....
PHP Manual
[ PHP input/output streams php.net ]

PHP Funktion
VCWD_POPEN ( phplist Code 14% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
FILE * VCWD_POPEN ( char * command char * type ) ...
Vorschau
...VCWD_POPEN VCWD_POPEN VCWD_POPEN -- ... Beschreibung #include <tsrm_virtual_cwd.h> FILE * VCWD_POPEN ( char * command, char * type ) ... Parameter Liste command ... type ... Rückgabewerte ... VCWD_OPENDIR VCWD_REALPATH...
PHP Manual
[ VCWD_POPEN php.net ]

PHP Funktion
PHP benutzen ( phplist Code 13% Relevanz )
Rubrik
FAQ: Frequently Asked Questions
Kurzform
-----
Vorschau
... '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 die Meldung 'No Input file specified'. 9. Windows: Ich kann keine auf einem anderen Rechner freigegebenen Dateien aufrufen, wenn ich IIS benutze. 10. Mein PHP-Skript funktioniert unter IE und Lynx, aber unter Netscape fehlt ein Teil meiner Ausgabe...
PHP Manual
[ PHP benutzen php.net ]

PHP Funktion
db2_connect ( phplist Code 13% Relevanz )
Rubrik
IBM DB2 Cloudscape and Apache Derby Functions
Kurzform
db2_connect -- Returns a connection to a database
Vorschau
... are available as of ibm_db2 version 1.5.1. Note: prior versions of ibm_db2 do not support these new i5 options. i5_lib A character value that indicates the default library that will be used for resolving unqualified file references. This is not valid if the connection is using system naming mode. i5_naming DB2_I5_NAMING_ON value turns on DB2 UDB CLI iSeries system naming mode. Files are qualified using the slash (/) delimiter. Unqualified...
PHP Manual
[ db2_connect php.net ]

PHP Funktion
DirectoryIterator::getATime ( phplist Code 13% Relevanz )
Rubrik
Standard PHP Library (SPL) Functions
Kurzform
DirectoryIterator::getATime -- Get last access time of file
Vorschau
...DirectoryIterator::getATime DirectoryIterator::getATime (no version information, might be only in CVS) DirectoryIterator::getATime -- Get last access time of file Description int DirectoryIterator::getATime ( void ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. DirectoryIterator::current DirectoryIterator::getCTime...
PHP Manual
[ DirectoryIterator::getATime php.net ]

PHP Funktion
DirectoryIterator::getCTime ( phplist Code 13% Relevanz )
Rubrik
Standard PHP Library (SPL) Functions
Kurzform
DirectoryIterator::getCTime -- Get inode modification time of file
Vorschau
...DirectoryIterator::getCTime DirectoryIterator::getCTime (no version information, might be only in CVS) DirectoryIterator::getCTime -- Get inode modification time of file Description int DirectoryIterator::getCTime ( void ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. DirectoryIterator::getATime DirectoryIterator::...
PHP Manual
[ DirectoryIterator::getCTime php.net ]

PHP Funktion
DirectoryIterator::getGroup ( phplist Code 13% Relevanz )
Rubrik
Standard PHP Library (SPL) Functions
Kurzform
DirectoryIterator::getGroup -- Get file group
Vorschau
...DirectoryIterator::getGroup DirectoryIterator::getGroup (no version information, might be only in CVS) DirectoryIterator::getGroup -- Get file group Description int DirectoryIterator::getGroup ( void ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. DirectoryIterator::getFilename DirectoryIterator::...
PHP Manual
[ DirectoryIterator::getGroup php.net ]

PHP Funktion
DirectoryIterator::getInode ( phplist Code 13% Relevanz )
Rubrik
Standard PHP Library (SPL) Functions
Kurzform
DirectoryIterator::getInode -- Get file inode
Vorschau
...DirectoryIterator::getInode DirectoryIterator::getInode (no version information, might be only in CVS) DirectoryIterator::getInode -- Get file inode Description int DirectoryIterator::getInode ( void ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. DirectoryIterator::getGroup DirectoryIterator::...
PHP Manual
[ DirectoryIterator::getInode php.net ]

PHP Funktion
DirectoryIterator::getMTime ( phplist Code 13% Relevanz )
Rubrik
Standard PHP Library (SPL) Functions
Kurzform
DirectoryIterator::getMTime -- Get last modification time of file
Vorschau
...DirectoryIterator::getMTime DirectoryIterator::getMTime (no version information, might be only in CVS) DirectoryIterator::getMTime -- Get last modification time of file Description int DirectoryIterator::getMTime ( void ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. DirectoryIterator::getInode DirectoryIterator::getOwner...
PHP Manual
[ DirectoryIterator::getMTime php.net ]

PHP Funktion
DirectoryIterator::getOwner ( phplist Code 13% Relevanz )
Rubrik
Standard PHP Library (SPL) Functions
Kurzform
DirectoryIterator::getOwner -- Get file owner
Vorschau
...DirectoryIterator::getOwner DirectoryIterator::getOwner (no version information, might be only in CVS) DirectoryIterator::getOwner -- Get file owner Description int DirectoryIterator::getOwner ( void ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. DirectoryIterator::getMTime DirectoryIterator::...
PHP Manual
[ DirectoryIterator::getOwner php.net ]

PHP Funktion
DirectoryIterator::getPerms ( phplist Code 13% Relevanz )
Rubrik
Standard PHP Library (SPL) Functions
Kurzform
DirectoryIterator::getPerms -- Get file permissions
Vorschau
...DirectoryIterator::getPerms DirectoryIterator::getPerms (no version information, might be only in CVS) DirectoryIterator::getPerms -- Get file permissions Description int DirectoryIterator::getPerms ( void ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. DirectoryIterator::getPathname ...
PHP Manual
[ DirectoryIterator::getPerms php.net ]

PHP Funktion
DirectoryIterator::getSize ( phplist Code 13% Relevanz )
Rubrik
Standard PHP Library (SPL) Functions
Kurzform
DirectoryIterator::getSize -- Get file size
Vorschau
...DirectoryIterator::getSize DirectoryIterator::getSize (no version information, might be only in CVS) DirectoryIterator::getSize -- Get file size Description int DirectoryIterator::getSize ( void ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. DirectoryIterator::getPerms DirectoryIterator::...
PHP Manual
[ DirectoryIterator::getSize php.net ]

PHP Funktion
DirectoryIterator::getType ( phplist Code 13% Relevanz )
Rubrik
Standard PHP Library (SPL) Functions
Kurzform
DirectoryIterator::getType -- Get file type
Vorschau
...DirectoryIterator::getType DirectoryIterator::getType (no version information, might be only in CVS) DirectoryIterator::getType -- Get file type Description string DirectoryIterator::getType ( void ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. DirectoryIterator::getSize DirectoryIterator::...
PHP Manual
[ DirectoryIterator::getType php.net ]

PHP Funktion
expect_popen ( phplist Code 13% Relevanz )
Rubrik
Expect Functions
Kurzform
expect_popen -- Execute command via Bourne shell and open the PTY stream to the process
Vorschau
... PHP.net CVS repository: $stream = expect_popen ( "cvs -d :pserver:anonymous@cvs.php.net:/repository login" ); sleep ( 3 ); fwrite ( $stream , "phpfi\n" ); fclose ( $stream ); ?> Siehe auch popen() expect_expectl File Alteration Monitor Functions...
PHP Manual
[ expect_popen php.net ]

PHP Funktion
get_cfg_var ( phplist Code 13% Relevanz )
Rubrik
PHP Optionen & Informationen
Kurzform
get_cfg_var -- Zeigt den Wert einer Option der PHP-Konfiguration
Vorschau
... keine Informationen über die Konfiguration, mit der PHP kompilert wurde, oder die aus der Apache-Konfiguration gelesen wird (mittels der php3_configuration_option Anweisungen). Um herauszubekommen, ob ein configuration file , benutzt wird, sollte versucht werden, den Wert der cfg_file_path Einstellung zu erhalten. Ist dieser Wert verfügbar, wird eine Konfigurationsdatei verwendet. extension_loaded get_current_user...
PHP Manual
[ get_cfg_var php.net ]

PHP Funktion
headers_sent ( phplist Code 13% 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 ...
PHP Manual
[ headers_sent php.net ]

PHP Funktion
libxml_set_streams_context ( phplist Code 13% Relevanz )
Rubrik
libxml Functions
Kurzform
libxml_set_streams_context -- Set the streams context for the next libxml document load or write
Vorschau
...() example <?php $opts = array( 'http' => array( 'user_agent' => 'PHP libxml agent' , ) ); $context = stream_context_create ( $opts ); libxml_set_streams_context ( $context ); // request a file through HTTP $doc = DOMDocument :: load ( 'http://www.example.com/file.xml' ); ?> Siehe auch stream_context_create() libxml_get_last_error libxml_use_internal_errors...
PHP Manual
[ libxml_set_streams_context php.net ]

PHP Funktion
maxdb_debug ( phplist Code 13% Relevanz )
Rubrik
MaxDB PHP Extension
Kurzform
maxdb_debug -- Performs debugging operations
Vorschau
... is specified. TRACE SQL ON|OFF - Enables/disables high level api trace. TRACE TIMESTAMP ON|OFF - Enables/disables a timestamp prefix on each line that is traced. TRACE SIZE <size> - Limits the size of the trace file to <size> bytes, at least 8192 bytes are required. Return values maxdb_debug() doesn't return any value. Example Beispiel 1. Procedural style <?php maxdb_debug ( "trace packet 200" ); $link = maxdb_connect ( "...
PHP Manual
[ maxdb_debug php.net ]

PHP Funktion
ob_get_flush ( phplist Code 13% Relevanz )
Rubrik
Funktionen zur Ausgabesteuerung
Kurzform
ob_get_flush -- Flush the output buffer return it as a string and turn off output buffering
Vorschau
... function is similar to ob_end_flush() , except that this function returns the buffer as a string. Beispiel 1. ob_get_flush() example <?php //using output_buffering=On print_r ( ob_list_handlers ()); //save buffer in a file $buffer = ob_get_flush (); file_put_contents ( 'buffer.txt' , $buffer ); print_r ( ob_list_handlers ()); ?> Das oben gezeigte Beispiel erzeugt folgendeAusgabe: Array( [0] => default output handler)Array() See also ...
PHP Manual
[ ob_get_flush php.net ]

PHP Funktion
OrbitStruct ( phplist Code 13% Relevanz )
Rubrik
Satellite CORBA client extension [deprecated]
Kurzform
OrbitStruct -- Use CORBA structs
Vorschau
... represents the structure identified with the id parameter. Parameter Liste id Can be either the name of the struct (e.g "MyStruct"), or the full repository id (e.g. "IDL:MyStruct:1.0"). Beispiele Beispiel 1. Sample IDL file struct MyStruct { short shortvalue; string stringvalue;}; interface SomeInterface { void SetValues (MyStruct values); MyStruct GetValues();} Beispiel 2. PHP code for accessing MyStruct <?php $obj = new OrbitObject ( $...
PHP Manual
[ OrbitStruct php.net ]

PHP Funktion
ps_add_note ( phplist Code 13% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_add_note -- Adds note to current page
Vorschau
...note will not be visible if the document is printed or viewed but it will show up if the document is converted to pdf by either Acrobat Distiller? or Ghostview. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . llx The x-coordinate of the lower left corner. lly 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. ...
PHP Manual
[ ps_add_note php.net ]

PHP Funktion
ps_end_page ( phplist Code 13% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_end_page -- End a page
Vorschau
... context, which e.g. requires to reload fonts if they were loading within the page, and to set many other drawing parameters like the line width, or color.. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_begin_page() ps_delete ps_end_pattern...
PHP Manual
[ ps_end_page php.net ]

PHP Funktion
ps_get_value ( phplist Code 13% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_get_value -- Gets certain values
Vorschau
... the line number. major The major version number of pslib. minor The minor version number of pslib. subminor , revision The subminor version number of pslib. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . name Name of the value. modifier The parameter modifier specifies the resource for which the value is to be retrieved. This can be the id of a font or an image. Rückgabewerte Returns the value ...
PHP Manual
[ ps_get_value php.net ]

PHP Funktion
ps_hyphenate ( phplist Code 13% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_hyphenate -- Hyphenates a word
Vorschau
... properly. This is done when the extension is initialized by using the environment variables. On Unix systems read the man page of locale for more information. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . text text should not contain any non alpha characters. Possible positions for breaks are returned in an array of interger numbers. Each number is the position of the char in text after which a ...
PHP Manual
[ ps_hyphenate php.net ]

PHP Funktion
ps_set_info ( phplist Code 13% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_set_info -- Sets information fields of document
Vorschau
... 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() has not been called ...
PHP Manual
[ ps_set_info php.net ]

PHP Funktion
ps_set_value ( phplist Code 13% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_set_value -- Sets certain values
Vorschau
...bool ps_set_value ( resource psdoc, string name, float value ) Sets several values which are used by many functions. Parameters are by definition float values. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . name The name can be one of the following: textrendering The way how text is shown. textx The x coordinate for text output. texty The y coordinate for text output. wordspacing The distance ...
PHP Manual
[ ps_set_value php.net ]

PHP Funktion
ps_setcolor ( phplist Code 13% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_setcolor -- Sets current color
Vorschau
... bool ps_setcolor ( resource psdoc, string type, string colorspace, float c1, float c2, float c3, float c4 ) Sets the color for drawing, filling, or both. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . type The parameter type can be both , fill , or fillstroke . colorspace The colorspace should be one of gray , rgb , cmyk , spot , pattern . Depending on the colorspace either only the first, ...
PHP Manual
[ ps_setcolor php.net ]

PHP Funktion
px_create_fp ( phplist Code 13% Relevanz )
Rubrik
Paradox File Access
Kurzform
px_create_fp -- Create a new paradox database
Vorschau
...px_create_fp px_create_fp (PECL) px_create_fp -- Create a new paradox database Beschreibung bool px_create_fp ( resource pxdoc, resource file, array fielddesc ) Create a new paradox database file. The actual file has to be opened before with fopen() . Make sure the file is writable. Anmerkung: Calling this functions issues a warning about an empty tablename which can be safely ignored. Just set the tablename afterwards with ...
PHP Manual
[ px_create_fp php.net ]

PHP Funktion
px_get_info ( phplist Code 13% Relevanz )
Rubrik
Paradox File Access
Kurzform
px_get_info -- Return lots of information about a paradox file
Vorschau
...px_get_info px_get_info (PECL) px_get_info -- Return lots of information about a paradox file Beschreibung array px_get_info ( resource pxdoc ) Parameter Liste pxdoc Resource identifier of the paradox database as returned by px_new() . Rückgabewerte Returns an associated array with lots of information about a ...
PHP Manual
[ px_get_info php.net ]

PHP Funktion
Rar::extract ( phplist Code 13% Relevanz )
Rubrik
Rar Functions
Kurzform
Rar::extract -- Extract entry from the archive
Vorschau
...Rar::extract Rar::extract (no version information, might be only in CVS) Rar::extract -- Extract entry from the archive Description bool Rar::extract ( string dir [, string filepath] ) Rar::extract() extracts entry's data to the dir . It will create new file in the specified dir with the name identical to the entry's name. If parameter filepath is specified instead dir , Rar::extract() will ...
PHP Manual
[ Rar::extract php.net ]

PHP Funktion
rpm_get_tag ( phplist Code 13% 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 successfully opened by rpm_open...
PHP Manual
[ rpm_get_tag php.net ]

PHP Funktion
SDO_DAS_XML::createDocument ( phplist Code 13% Relevanz )
Rubrik
SDO XML Data Access Service Functions
Kurzform
SDO_DAS_XML::createDocument -- Creates an XML Document object from scratch without the need to load a document from a file or string.
Vorschau
...SDO_DAS_XML::createDocument SDO_DAS_XML::createDocument (no version information, might be only in CVS) SDO_DAS_XML::createDocument -- Creates an XML Document object from scratch, without the need to load a document from a file or string. Beschreibung SDO_DAS_XML_Document SDO_DAS_XML::createDocument ( [string document_element_name] ) SDO_DAS_XML_Document SDO_DAS_XML::createDocument ( string document_element_namespace_URI, string ...
PHP Manual
[ SDO_DAS_XML::createDocument php.net ]

PHP Funktion
unserialize ( phplist Code 13% Relevanz )
Rubrik
Funktionen zur Behandlung von Variablen
Kurzform
unserialize -- Erzeugt aus einem gespeicherten Datenformat einen Wert in PHP
Vorschau
...3:"100";}' ; // unserialize_callback_func Direktive ist ab PHP 4.2.0 verfuegbar ini_set ( 'unserialize_callback_func' , 'mycallback' ); // Festlegen der callback_function function mycallback ( $classname ) { // einfach ein File einbinden, dass die Klassendefinitionen enthaelt // Sie erhalten $classname, womit Sie herausfinden koennen, welche // Klassendefinition benoetigt wird } ?> Anmerkung: In PHP 3 werden Methoden nicht erhalten, wenn ein ...
PHP Manual
[ unserialize php.net ]

PHP Funktion
xattr_remove ( phplist Code 13% Relevanz )
Rubrik
xattr Functions
Kurzform
xattr_remove -- Remove an extended attribute
Vorschau
...xattr_remove xattr_remove (PECL) xattr_remove -- Remove an extended attribute Beschreibung bool xattr_remove ( string filename, string name [, int flags] ) This function removes an extended attribute of a file. Extended attributes have two different namespaces: user and root namespace. User namespace is available for all users while root namespaceis available only for user with root privileges. xattr operates on user namespace ...
PHP Manual
[ xattr_remove php.net ]

PHP Funktion
PostScript document creation ( phplist Code 13% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... for either this extension or pslib then please drop me a mail steinm@php.net . Any help is very welcome. Inhaltsverzeichnis ps_add_bookmark -- Add bookmark to current page ps_add_launchlink -- Adds link which launches file ps_add_locallink -- Adds link to a page in the same document ps_add_note -- Adds note to current page ps_add_pdflink -- Adds link to a page in a second pdf document ps_add_weblink -- Adds link to a web location ps_arc -- ...
PHP Manual
[ PostScript document creation php.net ]

PHP Funktion
FTP and FTPS ( phplist Code 13% Relevanz )
Rubrik
List of Supported Protocols/Wrappers
Kurzform
-----
Vorschau
...FTP and FTPS PHP Handbuch Anhang M. List of Supported Protocols/Wrappers FTP and FTPS PHP 3, PHP 4, PHP 5. ftps:// since PHP 4.3.0 ftp://example.com/pub/file.txt ftp://user:password@example.com/pub/file.txt ftps://example.com/pub/file.txt ftps://user:password@example.com/pub/file.txt Allows read access to existing files and creation of new files via FTP. If the server does not support passive mode ftp, the connection ...
PHP Manual
[ FTP and FTPS php.net ]

PHP Funktion
VCWD_ACCESS ( phplist Code 13% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int VCWD_ACCESS ( const char * pathname mode_t mode ) This is a convenience wrapper for virtual_access().
Vorschau
...VCWD_ACCESS VCWD_ACCESS VCWD_ACCESS -- Check users permissions for a file Beschreibung #include <tsrm_virtual_cwd.h> int VCWD_ACCESS ( const char * pathname, mode_t mode ) This is a convenience wrapper for virtual_access() . Parameter Liste pathname ... mode ... Rückgabewerte...
PHP Manual
[ VCWD_ACCESS php.net ]

PHP Funktion
Zugehörigkeit ( phplist Code 12% Relevanz )
Rubrik
Extension Kategorisierung
Kurzform
-----
Vorschau
...URL Bibiothek-Funktionen Verweis XXV, dBase Funktionen Verweis XXIII, DB++ Functions Verweis XXVII, dbx Funktionen Verweis XXX, DOM Functions Verweis XXXI, DOM XML Funktionen Verweis XXXII, enchant Functions Verweis XXXVI, File Alteration Monitor Functions Verweis XLV, FrontBase Funktionen Verweis XXXVII, Forms Data Format Funktionen Verweis XXXVIII, Fileinfo Functions Verweis XLIV, FriBiDi Funktionen Verweis XLVIII, GeoIP Functions Verweis XLIX...
PHP Manual
[ Zugehörigkeit php.net ]

PHP Funktion
Probleme bei der Compilierung ( phplist Code 12% Relevanz )
Rubrik
FAQ: Frequently Asked Questions
Kurzform
-----
Vorschau
.... Es sollte also darauf geachtet werden, dass das configure-Script manuell neu generiert wird, wenn configure.in verändert wurde. Ein Symptom für eine Veränderung des configure.in ist, wenn Dinge wie @VARIABLE@ im Makefile auftachen, nachem configure oder config.status ausgeführt wurde. 2. Ich habe Probleme. PHP für den Apache zu konfigurieren. Er beschwert sich, dass er die Datei httpd.h nicht finden kann, obwohl sie sich genau dort ...
PHP Manual
[ Probleme bei der Compilierung php.net ]

PHP Funktion
get_meta_tags ( phplist Code 12% Relevanz )
Rubrik
URL Funktionen
Kurzform
get_meta_tags -- Liest alle content-Attribute der Meta-Tags einer Datei aus und gibt ein Array zurück
Vorschau
...get_meta_tags get_meta_tags (PHP 3 >= 3.0.4, PHP 4, PHP 5) get_meta_tags -- Liest alle content-Attribute der Meta-Tags einer Datei aus und gibt ein Array Beschreibung array get_meta_tags ( string filename [, bool use_include_path] ) Öffnet filename und untersucht die Datei Zeile für Zeile auf das Vorkommen von <meta>-Tags. Es kann eine lokale Datei oder ein URL übergeben werden. Das Parsen wird beim ersten ...
PHP Manual
[ get_meta_tags php.net ]

PHP Funktion
Memcache::set ( phplist Code 12% Relevanz )
Rubrik
Memcache Functions
Kurzform
Memcache::set -- Store data at the server
Vorschau
... be deleted from the cache to make place for other items). You can use MEMCACHE_COMPRESSED constant as flag value if you want to use on-the-fly compression (uses zlib). Anmerkung: Remember that resource variables (i.e. file and connection descriptors) cannot be stored in the cache, because they cannot be adequately represented in serialized state. Also you can use memcache_set() function. Parameter Liste key The key that will be associated ...
PHP Manual
[ Memcache::set php.net ]

PHP Funktion
ps_begin_page ( phplist Code 12% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_begin_page -- Start a new page
Vorschau
...this function will always overwrite the BoundingBox and Orientation, if it has been set before with ps_set_info() and ps_findfont() has not been called before. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . width The width of the page in pixel, e.g. 596 for A4 format. height The height of the page in pixel, e.g. 842 for A4 format. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe ...
PHP Manual
[ ps_begin_page php.net ]

PHP Funktion
ps_get_buffer ( phplist Code 12% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_get_buffer -- Fetches the full buffer containig the generated PS data
Vorschau
... PS data Beschreibung string ps_get_buffer ( resource psdoc ) This function is not implemented yet. It will always return an empty string. The idea for a later implementation is to write the contents of the postscript file into an internal buffer if in memory creation is requested, and retrieve the buffer content with this function. Currently, documents created in memory are send to the browser without buffering. Warnung Diese Funktion ist ...
PHP Manual
[ ps_get_buffer php.net ]

PHP Funktion
ps_open_image ( phplist Code 12% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_open_image -- Reads an image for later placement
Vorschau
... starting in th upper left corner and ending in the lower right corner. Each pixel consists of components color components, and each component has bpc bits. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . type The type of the image. Possible values are png , jpeg , or eps . source Not used. data The image data. length The length of the image data. width The width of the image. height The ...
PHP Manual
[ ps_open_image php.net ]

PHP Funktion
ps_setlinecap ( phplist Code 12% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_setlinecap -- Sets appearance of line ends
Vorschau
... ps_setlinecap (PECL) ps_setlinecap -- Sets appearance of line ends Beschreibung bool ps_setlinecap ( resource psdoc, int type ) Sets how line ends look like. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . type The type of line ends. Possible values are PS_LINECAP_BUTT , PS_LINECAP_ROUND , or PS_LINECAP_SQUARED . Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_setlinejoin...
PHP Manual
[ ps_setlinecap php.net ]

PHP Funktion
ps_show_boxed ( phplist Code 12% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_show_boxed -- Output text in a box
Vorschau
... will be inserted where needed. Multiple spaces are treated as one. Tabulators are treated as spaces. The text will be hyphenated if the parameter hyphenation is set to true and the parameter hyphendict contains a valid filename for a hyphenation file. The line spacing is taken from the value leading . Paragraphs can be separated by an empty line just like in TeX. If the value parindent is set to value > 0.0 then the first n lines will be ...
PHP Manual
[ ps_show_boxed php.net ]

PHP Funktion
px_get_schema ( phplist Code 12% Relevanz )
Rubrik
Paradox File Access
Kurzform
px_get_schema -- Returns the database schema
Vorschau
... the keys of the returned array will be converted to lower or upper case. If mode is 0 or not passed at all, then the key name will be identical to the field name. Rückgabewerte Returns the schema of a database file as an associated array. The key name is equal to the field name. Each array element is itself an associated array containing the two fields type and size . type is one of the constants in table Constants for field types . ...
PHP Manual
[ px_get_schema php.net ]

PHP Funktion
runkit_import ( phplist Code 12% Relevanz )
Rubrik
runkit Functions
Kurzform
runkit_import -- Process a PHP file importing function and class definitions overwriting where appropriate
Vorschau
...runkit_import runkit_import (PECL) runkit_import -- Process a PHP file importing function and class definitions, overwriting where appropriate Beschreibung bool runkit_import ( string filename [, int flags] ) Similar to include() however any code residing outside of a function or class is simply ignored. Additionally, depending on the value of flags , any functions or classes which already exist in the ...
PHP Manual
[ runkit_import php.net ]

PHP Funktion
snmp_read_mib ( phplist Code 12% Relevanz )
Rubrik
SNMP Funktionen
Kurzform
snmp_read_mib -- Reads and parses a MIB file into the active MIB tree
Vorschau
...snmp_read_mib snmp_read_mib (PHP 5) snmp_read_mib -- Reads and parses a MIB file into the active MIB tree Beschreibung bool snmp_read_mib ( string filename ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. snmp_get_valueretrieval snmp_set_enum_print...
PHP Manual
[ snmp_read_mib php.net ]

PHP Funktion
ssh2_scp_recv ( phplist Code 12% Relevanz )
Rubrik
Secure Shell2 Functions
Kurzform
ssh2_scp_recv -- Request a file via SCP
Vorschau
...ssh2_scp_recv ssh2_scp_recv (PECL) ssh2_scp_recv -- Request a file via SCP Description bool ssh2_scp_recv ( resource session, string remote_file, string local_file ) Copy a file from the remote server to the local filesystem using the SCP protocol. Beispiel 1. Downloading a file via SCP <?php $connection = ssh2_connect ( 'shell.example.com' , 22 ); ssh2_auth_password ( $connection , 'username' , 'password' ); ssh2_scp_recv ( $...
PHP Manual
[ ssh2_scp_recv php.net ]

PHP Funktion
ssh2_scp_send ( phplist Code 12% Relevanz )
Rubrik
Secure Shell2 Functions
Kurzform
ssh2_scp_send -- Send a file via SCP
Vorschau
...ssh2_scp_send ssh2_scp_send (PECL) ssh2_scp_send -- Send a file via SCP Description bool ssh2_scp_send ( resource session, string local_file, string remote_file [, int create_mode] ) Copy a file from the local filesystem to the remote server using the SCP protocol. The file will be created with the mode specified by create_mode . Beispiel 1. Uploading a file via SCP <?php $connection = ssh2_connect ( 'shell.example.com' , 22 ); ...
PHP Manual
[ ssh2_scp_send php.net ]

PHP Funktion
tcpwrap_check ( phplist Code 12% Relevanz )
Rubrik
TCP Wrappers Functions
Kurzform
tcpwrap_check -- Performs a tcpwrap check
Vorschau
... (PECL) tcpwrap_check -- Performs a tcpwrap check Beschreibung bool tcpwrap_check ( string daemon, string address [, string user [, bool nodns]] ) This function consults the /etc/hosts.allow and /etc/hosts.deny files to check if access to service daemon should be granted or denied for a client. Parameter Liste daemon The service name. address The client remote address. Can be either an IP address or a domain name. user An optional...
PHP Manual
[ tcpwrap_check php.net ]

PHP Funktion
New Functions ( phplist Code 12% Relevanz )
Rubrik
Migrating from PHP 4 to PHP 5
Kurzform
-----
Vorschau
...() - Get the header info of a dBase database dbx_fetch_row() - Fetches rows from a query-result that had the DBX_RESULT_UNBUFFERED flag set fbsql_set_password() - Change the password for a given user file_put_contents() - Write a string to a file ftp_alloc() - Allocates space for a file to be uploaded get_declared_interfaces() - Returns an array of all declared interfaces get_headers() - Fetches all the headers sent by ...
PHP Manual
[ New Functions php.net ]

PHP Funktion
IBM DB2 Cloudscape and Apache Derby Functions ( phplist Code 12% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... or SAPI must specify the DB2 instance before accessing these functions. You can set the name of the DB2 instance in php.ini using the ibm_db2.instance_name configuration option, or you can source the DB2 instance profile before invoking the PHP executable. If you created a DB2 instance named db2inst1 in /home/db2inst1/ , for example, you can add the following line to php.ini : ibm_db2.instance_name=db2inst1 If you do not set this option ...
PHP Manual
[ IBM DB2 Cloudscape and Apache Derby Functions php.net ]

PHP Funktion
Zlib Komprimierungsfunktionen ( phplist Code 12% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... in der php.ini beeinflusst. The zlib extension offers the option to transparently compress your pages on-the-fly, if the requesting browser supports this. Therefore there are three options in the configuration file php.ini . Tabelle 1. Zlib Configuration Options Name Default Changeable Changelog zlib.output_compression "0" PHP_INI_ALL Available since PHP 4.0.5. zlib.output_compression_level "-1" PHP_INI_ALL Available since PHP 4.3.0...
PHP Manual
[ Zlib Komprimierungsfunktionen php.net ]

PHP Funktion
php_stream_is ( phplist Code 12% 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
Source Layout ( phplist Code 12% Relevanz )
Rubrik
Zend API: Hacking the Core of PHP
Kurzform
-----
Vorschau
..., as you should already have this most basic ability when studying this chapter. Before we start discussing code issues, you should familiarize yourself with the source tree to be able to quickly 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 ...
PHP Manual
[ Source Layout php.net ]

PHP Funktion
Startup and Shutdown Functions ( phplist Code 12% Relevanz )
Rubrik
Zend API: Hacking the Core of PHP
Kurzform
-----
Vorschau
... events. The module startup and shutdown functions are called whenever a module is loaded and needs initialization; the request startup and shutdown functions are called every time a request is processed (meaning that a file is being executed). For dynamic extensions, module and request startup/shutdown events happen at the same time. Declaration and implementation of these functions can be done with macros; see the earlier section "...
PHP Manual
[ Startup and Shutdown Functions php.net ]

PHP Funktion
apc_cache_info ( phplist Code 11% Relevanz )
Rubrik
Alternative PHP Cache
Kurzform
apc_cache_info -- Retrieves cached information (and meta-data) from APC's data store
Vorschau
... cache data. This typically occurs when APC is not enabled. Parameter Liste cache_type If cache_type is " user ", information about the user cache will be returned; otherwise, information about the system cache (cached files) will be returned. limited If limited is TRUE , the return value will exclude the individual list of cache entries. This is usefull when trying to optimize calls for statistics gathering. ChangeLog Version Beschreibung ...
PHP Manual
[ apc_cache_info php.net ]

PHP Funktion
classkit_import ( phplist Code 11% Relevanz )
Rubrik
Classkit Functions
Kurzform
classkit_import -- Import new class method definitions from a file
Vorschau
...classkit_import classkit_import (PECL) classkit_import -- Import new class method definitions from a file Beschreibung array classkit_import ( string filename ) Anmerkung: This function cannotbe used to manipulate the currently running (or chained) method. Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, ...
PHP Manual
[ classkit_import php.net ]

PHP Funktion
db2_bind_param ( phplist Code 11% Relevanz )
Rubrik
IBM DB2 Cloudscape and Apache Derby Functions
Kurzform
db2_bind_param -- Binds a PHP variable to an SQL statement parameter
Vorschau
...parameter as an input parameter ( DB2_PARAM_IN ), an output parameter ( DB2_PARAM_OUT ), or as a parameter that accepts input and returns output ( DB2_PARAM_INOUT ). To avoid memory overhead, you can also specify DB2_PARAM_FILE to bind the PHP variable to the name of a file that contains large object (BLOB, CLOB, or DBCLOB) data. data-type A constant specifying the SQL data type that the PHP variable should be bound as: one of DB2_BINARY , ...
PHP Manual
[ db2_bind_param php.net ]

PHP Funktion
debug_backtrace ( phplist Code 11% Relevanz )
Rubrik
Error Handling and Logging Functions
Kurzform
debug_backtrace -- Erzeugt Daten zur Ablaufverfolgung
Vorschau
... Arrayelemente von debug_backtrace() sind möglich: Name Typ Beschreibung function string Der Name der aktuell ausgeführten Funktion. Siehe auch __FUNCTION__ . line integer Die aktuelle Zeilennummer. Siehe auch __LINE__ . file string Der aktuelle Dateiname. Siehe auch __FILE__ . class string Der aktuelle class - Name. Siehe auch __CLASS__ . object object Das aktuelle Objekt . Dieses Element ist seit PHP 5.1.1 verfügbar. type string Der ...
PHP Manual
[ debug_backtrace php.net ]

PHP Funktion
exif_read_data ( phplist Code 11% Relevanz )
Rubrik
Exif Funktionen
Kurzform
exif_read_data -- Liest die EXIF-Header von JPEG oder TIFF aus.
Vorschau
...exif_read_data exif_read_data (PHP 4 >= 4.2.0, PHP 5) exif_read_data -- Liest die EXIF -Header von JPEG oder TIFF aus. Beschreibung array exif_read_data ( string filename [, string sections [, bool arrays [, bool thumbnail]]] ) exif_read_data() liest die EXIF -Header aus einer JPEG - oder TIFF -Bilddatei aus. Auf diese Weise kann man die Metadaten auslesen, die mit Digitalkameras ...
PHP Manual
[ exif_read_data php.net ]

PHP Funktion
expect_expectl ( phplist Code 11% Relevanz )
Rubrik
Expect Functions
Kurzform
expect_expectl -- Waits until the output from a process matches one of the patterns a specified time period has passed or an EOF is seen
Vorschau
... ChangeLog Version Beschreibung 0.2.1 Prior to version 0.2.1, in match parameter a match string was returned, not an array of match substrings. Beispiele Beispiel 1. expect_expectl() example <?php // Copies file from remote host: ini_set ( "expect.timeout" , 30 ); $stream = fopen ( "expect://scp user@remotehost:/var/log/messages /home/user/messages.txt" , "r" ); $cases = array ( array ( 0 => "password:" , 1 => PASSWORD ), ...
PHP Manual
[ expect_expectl php.net ]

PHP Funktion
gopher_parsedir ( phplist Code 11% Relevanz )
Rubrik
Net_Gopher
Kurzform
gopher_parsedir -- Translate a gopher formatted directory entry into an associative array.
Vorschau
... above, the root directory at gopher.example.com knows about one DOCUMENT identified by 0 located at gopher://gopher.example.com:70/allabout.txt . It also knows about two other directory (which have their own listing files) at gopher://gopher.exmaple.com:70/stories and at gopher://gopher.ejemplo.co.es:70/ . In addition there is a binary file, a link to an HTTP url, and several informative lines. By passing each line of the directory ...
PHP Manual
[ gopher_parsedir php.net ]

PHP Funktion
msg_stat_queue ( phplist Code 11% Relevanz )
Rubrik
Semaphor und Shared Memory Funktionen
Kurzform
msg_stat_queue -- Returns information from the message queue data structure
Vorschau
...an array whose keys and values have the following meanings: Tabelle 1. Array structure for msg_stat_queue msg_perm.uid The uid of the owner of the queue. msg_perm.gid The gid of the owner of the queue. msg_perm.mode The file access mode of the queue. msg_stime The time that the last message was sent to the queue. msg_rtime The time that the last message was received from the queue. msg_ctime The time that the queue was last changed. ...
PHP Manual
[ msg_stat_queue php.net ]

PHP Funktion
mysqli_options ( phplist Code 11% Relevanz )
Rubrik
Verbesserte MySQL Erweiterung
Kurzform
mysqli_options (no version information might be only in CVS)mysqli->options -- Set options
Vorschau
... to set, the value is the value for the option. The parameter option can be one of the following values: Tabelle 1. Valid options Name Description MYSQLI_OPT_CONNECT_TIMEOUT connection timeout in seconds MYSQLI_OPT_LOCAL_INFILE enable/disable use of LOAD LOCAL INFILE MYSQLI_INIT_COMMAND command to execute after when connecting to MySQL server MYSQLI_READ_DEFAULT_FILE Read options from named option file instead of my.cnf MYSQLI_READ_DEFAULT_GROUP...
PHP Manual
[ mysqli_options php.net ]

PHP Funktion
ncurses_scr_set ( phplist Code 11% Relevanz )
Rubrik
Ncurses Terminal Screen Control Functions
Kurzform
ncurses_scr_set -- Inherit screen from file dump
Vorschau
...ncurses_scr_set ncurses_scr_set (PHP 4 >= 4.2.0, PHP 5) ncurses_scr_set -- Inherit screen from file dump Description int ncurses_scr_set ( string filename ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. Seien Sie gewarnt und verwenden ...
PHP Manual
[ ncurses_scr_set php.net ]

PHP Funktion
ps_add_weblink ( phplist Code 11% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_add_weblink -- Adds link to a web location
Vorschau
... will not be visible if the document is printed or viewed but it will show up if the document is converted to pdf by either Acrobat Distiller? or Ghostview. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . llx The x-coordinate of the lower left corner. lly 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. ...
PHP Manual
[ ps_add_weblink php.net ]

PHP Funktion
ps_end_pattern ( phplist Code 11% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_end_pattern -- End a pattern
Vorschau
... ( resource psdoc ) Ends a pattern which was started with ps_begin_pattern() . Once a pattern has been ended, it can be used like a color to fill areas. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_begin_pattern() ps_end_page ps_end_template...
PHP Manual
[ ps_end_pattern php.net ]

PHP Funktion
ps_end_template ( phplist Code 11% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_end_template -- End a template
Vorschau
... ps_end_template ( resource psdoc ) Ends a template which was started with ps_begin_template() . Once a template has been ended, it can be used like an image. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_begin_template() ps_end_pattern ps_fill_stroke...
PHP Manual
[ ps_end_template php.net ]

PHP Funktion
ps_set_text_pos ( phplist Code 11% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_set_text_pos -- Sets position for text output
Vorschau
... name. If you want to output text at a certain position it is more convenient to use ps_show_xy() instead of setting the text position and calling ps_show() . Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . x x-coordinate of the new text position. y y-coordinate of the new text position. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Beispiele Beispiel 1. Placing text at a given ...
PHP Manual
[ ps_set_text_pos php.net ]

PHP Funktion
ps_setlinejoin ( phplist Code 11% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_setlinejoin -- Sets how contected lines are joined
Vorschau
... (PECL) ps_setlinejoin -- Sets how contected lines are joined Beschreibung bool ps_setlinejoin ( resource psdoc, int type ) Sets how lines are joined. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . type The way lines are joined. Possible values are PS_LINEJOIN_MITER , PS_LINEJOIN_ROUND , or PS_LINEJOIN_BEVEL . Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ...
PHP Manual
[ ps_setlinejoin php.net ]

PHP Funktion
ps_setlinewidth ( phplist Code 11% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_setlinewidth -- Sets width of a line
Vorschau
... -- Sets width of a line Beschreibung bool ps_setlinewidth ( resource psdoc, float width ) Sets the line width for all following drawing operations. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . width The width of lines in points. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_setlinecap() ps_setlinejoin() ps_setmiterlimit() ps_setlinejoin ps_setmiterlimit...
PHP Manual
[ ps_setlinewidth php.net ]

PHP Funktion
ps_setpolydash ( phplist Code 11% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_setpolydash -- Sets appearance of a dashed line
Vorschau
...resource psdoc, float arr ) Sets the length of the black and white portions of a dashed line. ps_setpolydash() is used to set more complicated dash patterns. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . arr arr is a list of length elements alternately for the black and white portion. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Beispiele Beispiel 1. Drawing a dashed line <?php...
PHP Manual
[ ps_setpolydash php.net ]

PHP Funktion
ps_stringwidth ( phplist Code 11% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_stringwidth -- Gets width of a string
Vorschau
... float ps_stringwidth ( resource psdoc, string text [, int fontid [, float size]] ) Calculates the width of a string in points if it was output in the given font and font size. This function needs an Adobe font metrics file to calculate the precise width. If kerning is turned on, it will be taken into account. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . text The text for which the width is to ...
PHP Manual
[ ps_stringwidth php.net ]

PHP Funktion
ps_symbol_width ( phplist Code 11% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_symbol_width -- Gets width of a glyph
Vorschau
... float ps_symbol_width ( resource psdoc, int ord [, int fontid [, float size]] ) Calculates the width of a glyph in points if it was output in the given font and font size. This function needs an Adobe font metrics file to calculate the precise width. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . ord The position of the glyph in the font encoding vector. fontid The identifier of the font to...
PHP Manual
[ ps_symbol_width php.net ]

PHP Funktion
px_date2string ( phplist Code 11% Relevanz )
Rubrik
Paradox File Access
Kurzform
px_date2string -- Converts a date into a string.
Vorschau
... (no version information, might be only in CVS) px_date2string -- Converts a date into a string. Beschreibung string px_date2string ( resource pxdoc, int value, string format ) Turns a date as it stored in the paradox file into human readable format. Paradox dates are the number of days since 1.1.0000. This function is just for convenience. It can be easily replaced by some math and the calendar functions as demonstrated in the example below...
PHP Manual
[ px_date2string php.net ]

PHP Funktion
set_time_limit ( phplist Code 11% Relevanz )
Rubrik
PHP Optionen & Informationen
Kurzform
set_time_limit -- Setzt die maximale Ausführungszeit
Vorschau
... ( int seconds ) Legt die Zeit in Sekunden fest, die ein Script laufen darf. Ist diese Zeit abgelaufen, wird ein Fehler gegeben. Der Standard liegt bei 30 Sekunden, es sei denn, max_execution_time ist configuration file eingetragen. Bei einer Einstellung von 0 Sekunden ist die maximale Ausführungszeit nicht begrenzt. Wenn set_time_limit() aufgerufen wird, dann startet der Zähler neu. Das heisst, wenn die Standardeinstellung 30 Sekunden ...
PHP Manual
[ set_time_limit php.net ]

PHP Funktion
ssh2_sftp_stat ( phplist Code 11% Relevanz )
Rubrik
Secure Shell2 Functions
Kurzform
ssh2_sftp_stat -- Stat a file on a remote filesystem
Vorschau
...ssh2_sftp_stat ssh2_sftp_stat (PECL) ssh2_sftp_stat -- Stat a file on a remote filesystem Description array ssh2_sftp_stat ( resource sftp, string path ) Stats a file on the remote filesystem following any symbolic links. This function is similar to using the stat() function with the ssh2.sftp:// wrapper in PHP5 and returns the same values. See the documentation for stat() for details on the values which ...
PHP Manual
[ ssh2_sftp_stat php.net ]

PHP Funktion
stream_get_line ( phplist Code 11% Relevanz )
Rubrik
Stream Functions
Kurzform
stream_get_line -- Gets line from stream resource up to a given delimiter
Vorschau
... (PHP 5) stream_get_line -- Gets line from stream resource up to a given delimiter Description string stream_get_line ( resource handle, int length [, string ending] ) Returns a string of up to length bytes read from the file pointed to by handle . Reading ends when length bytes have been read, when the string specified by ending is found (which is not included in the return value), or on EOF (whichever comes first). If an error occurs, ...
PHP Manual
[ stream_get_line php.net ]

PHP Funktion
xattr_supported ( phplist Code 11% Relevanz )
Rubrik
xattr Functions
Kurzform
xattr_supported -- Check if filesystem supports extended attributes
Vorschau
...xattr_supported xattr_supported (PECL) xattr_supported -- Check if filesystem supports extended attributes Beschreibung bool xattr_supported ( string filename [, int flags] ) This functions checks if the filesystem holding the given file supports extended attributes. Read access to the file is required. Parameter Liste filename The path of the tested file. flags Tabelle 1. Supported xattr flags XATTR_DONTFOLLOW Do not follow...
PHP Manual
[ xattr_supported php.net ]

PHP Funktion
Sun iPlanet and Netscape servers on Microsoft Windows ( phplist Code 11% Relevanz )
Rubrik
Installation on Windows systems
Kurzform
-----
Vorschau
... read the note about subrequests . CGI setup on Sun, iPlanet and Netscape servers To install PHP as a CGI handler, do the following: Copy php4ts.dll to your systemroot (the directory where you installed Windows) Make a file association from the command line. Type the following two lines: assoc .php=PHPScriptftype PHPScript=c:\php\php.exe %1 %* In the Netscape Enterprise Administration Server create a dummy shellcgi directory and remove it ...
PHP Manual
[ Sun iPlanet and Netscape servers on Microsoft Windows php.net ]

PHP Funktion
Error reporting ( phplist Code 11% Relevanz )
Rubrik
Migrating from PHP 3 to PHP 4
Kurzform
-----
Vorschau
...up anywhere. This has lead to a lot of unreproducible bug reports in the past where people reported script engine problems they were not capable to track down while the TRUE case was usually some missing '}' in a required file that the parser was not able to report due to a misconfigured error reporting system. So checking your error reporting setup should be the first thing to do whenever your scripts silently die. The Zend engine can be ...
PHP Manual
[ Error reporting php.net ]

PHP Funktion
Parser behavior ( phplist Code 11% Relevanz )
Rubrik
Migrating from PHP 3 to PHP 4
Kurzform
-----
Vorschau
...Parser behavior PHP Handbuch Anhang C. Migrating from PHP 3 to PHP 4 Parser behavior Parsing and execution are now two completely separated steps, no execution of a files code will happen until the complete file and everything it requires has completely and successfully been parsed. One of the new requirements introduced with this split is that required and included files now have to be syntactically complete. You can no longer ...
PHP Manual
[ Parser behavior php.net ]

PHP Funktion
Extending PHP 3 ( phplist Code 11% Relevanz )
Rubrik
PHP und Zend Engine Interna
Kurzform
-----
Vorschau
...type) - returns the pointer of the resource with the specified id, updates 'type' to the resource's type Typically, these functions are used for SQL drivers but they can be used for anything else; for instance, maintaining file descriptors. Typical list code would look like this: Beispiel 48-7. Adding a new resource RESOURCE *resource; /* ...allocate memory for resource and acquire resource... *//* add a new resource to the list */return_value...
PHP Manual
[ Extending PHP 3 php.net ]

PHP Funktion
Newt Functions ( phplist Code 11% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...Newt form exit reasons Tabelle 1. Newt form exit reasons constant meaning NEWT_EXIT_HOTKEY hotkey defined by newt_form_add_hot_key() was pressed NEWT_EXIT_COMPONENT some component has caused form to exit NEWT_EXIT_FDREADY file descriptor specified in newt_form_watch_fd() is ready to be read or written to NEWT_EXIT_TIMER time specified in newt_form_set_timer() has elapsed Newt colorsets Tabelle 2. Newt colorsets constant meaning ...
PHP Manual
[ Newt Functions php.net ]

PHP Funktion
Tidy Functions ( phplist Code 11% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... Available since PHP 5.0.0. For further details and definitions of the PHP_INI_* constants, see the Anhang G . Hier eine kurze Erklärung derKonfigurationsoptionen: tidy.default_config string Default path for tidy config file. tidy.clean_output boolean Turns on/off the output repairing by Tidy. Warnung Do not turn on tidy.clean_output if you are generating non-html content such as dynamic images. Resource Typen Diese Erung definiert keine ...
PHP Manual
[ Tidy Functions php.net ]

PHP Funktion
xdiff Functions ( phplist Code 11% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...xdiff Functions CLXXII. xdiff Functions Einführung xdiff extension creates and applies patches to both text and binary files. Anforderungen To use xdiff, you will need libxdiff installed, available on the libxdiff homepage http://www.xmailserver.org/xdiff-lib.html . Anmerkung: You'll need at least libxdiff 0.7 for these functions to be aware ...
PHP Manual
[ xdiff Functions php.net ]

PHP Funktion
Runkit_Sandbox ( phplist Code 11% Relevanz )
Rubrik
runkit Functions
Kurzform
Runkit_Sandbox -- Runkit Sandbox Class -- PHP Virtual Machine
Vorschau
..., this environment may be restricted to a subset of what the primary interpreter can do and provide a safer environment for executing user supplied code. Anmerkung: Sandbox support (required for runkit_lint() , runkit_lint_file() ,and the Runkit_Sandbox class) is only available with PHP 5.1 or speciallypatched versions of PHP 5.0 and requires that thread safety be enabled.See the README file included in the runkit package for more information. ...
PHP Manual
[ Runkit_Sandbox php.net ]

PHP Funktion
php_stream_cast ( phplist Code 11% Relevanz )
Rubrik
Streams Common API Reference
Kurzform
-----
Vorschau
...php_stream_cast php_stream_cast php_stream_cast -- Convert a stream into another form, such as a FILE* or socket Description int php_stream_cast ( php_stream * stream, int castas, void ** ret, int flags ) php_stream_cast() attempts to convert stream into a resource indicated by castas . If ret is NULL, the stream is ...
PHP Manual
[ php_stream_cast php.net ]

PHP Funktion
php_stream_seek ( phplist Code 11% Relevanz )
Rubrik
Streams Common API Reference
Kurzform
-----
Vorschau
... and offset is positive, by calling php_stream_read() to read (and discard) offset bytes. The emulation is only applied when the underlying stream implementation does not support seeking. If the stream is (for example) a file based stream that is wrapping a non-seekable pipe, the streams api will not apply emulation because the file based stream implements a seek operation; the seek will fail and an error result will be returned to the caller...
PHP Manual
[ php_stream_seek php.net ]

PHP Funktion
php_stream_stat ( phplist Code 11% Relevanz )
Rubrik
Streams Common API Reference
Kurzform
-----
Vorschau
... storage associated with a stream Description int php_stream_stat ( php_stream * stream, php_stream_statbuf * ssb ) php_stream_stat() examines the storage to which stream is bound, and returns information such as file size, access and creation times and so on. The return value is 0 on success, -1 on error. For more information about the information returned, see php_stream_statbuf . php_stream_stat_path php_stream_open_wrapper...
PHP Manual
[ php_stream_stat php.net ]

PHP Funktion
Secure Shell 2 ( phplist Code 11% Relevanz )
Rubrik
List of Supported Protocols/Wrappers
Kurzform
-----
Vorschau
... 4.3.0 and up (PECL) ssh2.shell://user:pass@example.com:22/xterm ssh2.exec://user:pass@example.com:22/usr/local/bin/somecmd ssh2.tunnel://user:pass@example.com:22/192.168.0.1:14 ssh2.sftp://user:pass@example.com:22/path/to/filename This wrapper is not enabled by default: In order to use the ssh2.*:// wrappers you must install the SSH2 extension available from PECL . In addition to accepting traditional URI login details, the ssh2 wrappers will ...
PHP Manual
[ Secure Shell 2 php.net ]

PHP Funktion
get_resource_type ( phplist Code 10% Relevanz )
Rubrik
Funktionen zur Behandlung von Variablen
Kurzform
get_resource_type -- Returns the resource type
Vorschau
... return FALSE and generate an error if handle is not a resource . Beispiele Beispiel 1. get_resource_type() example <?php // prints: mysql link $c = mysql_connect (); echo get_resource_type ( $c ) . "\n" ; // prints: file $fp = fopen ( "foo" , "w" ); echo get_resource_type ( $fp ) . "\n" ; // prints: domxml document $doc = new_xmldoc ( "1.0" ); echo get_resource_type ( $doc -> doc ) . "\n" ; ?> get_defined_vars gettype...
PHP Manual
[ get_resource_type php.net ]

PHP Funktion
ncurses_scr_dump ( phplist Code 10% Relevanz )
Rubrik
Ncurses Terminal Screen Control Functions
Kurzform
ncurses_scr_dump -- Dump screen content to file
Vorschau
...ncurses_scr_dump ncurses_scr_dump (PHP 4 >= 4.2.0, PHP 5) ncurses_scr_dump -- Dump screen content to file Description int ncurses_scr_dump ( string filename ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. Seien Sie gewarnt und verwenden ...
PHP Manual
[ ncurses_scr_dump php.net ]

PHP Funktion
ncurses_scr_init ( phplist Code 10% Relevanz )
Rubrik
Ncurses Terminal Screen Control Functions
Kurzform
ncurses_scr_init -- Initialize screen from file dump
Vorschau
...ncurses_scr_init ncurses_scr_init (PHP 4 >= 4.2.0, PHP 5) ncurses_scr_init -- Initialize screen from file dump Description int ncurses_scr_init ( string filename ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. Seien Sie gewarnt und verwenden ...
PHP Manual
[ ncurses_scr_init php.net ]

PHP Funktion
php_check_syntax ( phplist Code 10% Relevanz )
Rubrik
Sonstige Funktionen
Kurzform
php_check_syntax -- Check the PHP syntax of (and execute) the specified file
Vorschau
...php_check_syntax php_check_syntax (PHP 5 <= 5.0.4) php_check_syntax -- Check the PHP syntax of (and execute) the specified file Beschreibung bool php_check_syntax ( string file_name [, string &error_message] ) For technical reasons, this function is deprecated and removed from PHP. Instead, use php -l somefile.php from the commandline . The php_check_syntax() function performs a syntax (...
PHP Manual
[ php_check_syntax php.net ]

PHP Funktion
ps_add_launchlink ( phplist Code 10% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_add_launchlink -- Adds link which launches file
Vorschau
...ps_add_launchlink ps_add_launchlink (PECL) ps_add_launchlink -- Adds link which launches file Beschreibung bool ps_add_launchlink ( resource psdoc, float llx, float lly, float urx, float ury, string filename ) Places a hyperlink at the given position pointing to a file program which is being started when clicked on. The hyperlink's source position is a rectangle with its lower left corner at (llx, lly) and its upper right...
PHP Manual
[ ps_add_launchlink php.net ]

PHP Funktion
ps_add_locallink ( phplist Code 10% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_add_locallink -- Adds link to a page in the same document
Vorschau
... will not be visible if the document is printed or viewed but it will show up if the document is converted to pdf by either Acrobat Distiller? or Ghostview. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . llx The x-coordinate of the lower left corner. lly 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. ...
PHP Manual
[ ps_add_locallink php.net ]

PHP Funktion
ps_begin_pattern ( phplist Code 10% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_begin_pattern -- Start a new pattern
Vorschau
... a page containing e.g. a drawing which can be used for filling areas. It is used like a color by calling ps_setcolor() and setting the color space to pattern . Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . width The width of the pattern in pixel. height The height of the pattern in pixel. x-step The distance in pixel of placements of the pattern in horizontal direction. y-step The distance in ...
PHP Manual
[ ps_begin_pattern php.net ]

PHP Funktion
ps_begin_template ( phplist Code 10% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_begin_template -- Start a new template
Vorschau
...document, e.g. like a company logo. All drawing functions may be used within a template. The template will not be drawn until it is placed by ps_place_image() . Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . width The width of the template in pixel. height The height of the template in pixel. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Beispiele Beispiel 1. Creating and using a ...
PHP Manual
[ ps_begin_template php.net ]

PHP Funktion
ps_get_parameter ( phplist Code 10% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_get_parameter -- Gets certain parameters
Vorschau
... char to dissolve the ligature, then `f|f' will result in two `f' instead of the ligature `ff'. imageencoding The encoding used for encoding images. Can be either hex or 85 . hex encoding uses two bytes in the postscript file each byte in the image. 85 stand for Ascii85 encoding. linenumbermode Set to paragraph if lines are numbered within a paragraph or box if they are numbered within the surrounding box. linebreak Only used if text is ...
PHP Manual
[ ps_get_parameter php.net ]

PHP Funktion
ps_makespotcolor ( phplist Code 10% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_makespotcolor -- Create spot color
Vorschau
... as any color with ps_setcolor() . When the document is not printed but displayed by an postscript viewer the given color in the specified color space is use. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . name Name of the spot color, e.g. Pantone 5565. Rückgabewerte The id of the new spot color or 0 in case of an error. Beispiele Beispiel 1. Creating and using a spot color <?php $ps = ps_new...
PHP Manual
[ ps_makespotcolor php.net ]

PHP Funktion
ps_set_parameter ( phplist Code 10% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_set_parameter -- Sets certain parameters
Vorschau
... ( resource psdoc, string name, string value ) Sets several parameters which are used by many functions. Parameters are by definition string values. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . name For a list of possible names see ps_get_parameter() . value The value of the parameter. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_get_parameters() ...
PHP Manual
[ ps_set_parameter php.net ]

PHP Funktion
ps_setmiterlimit ( phplist Code 10% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_setmiterlimit -- Sets the miter limit
Vorschau
... , then the resulting spike will be very long. The miter limit is the maximum ratio of the miter length (the length of the spike) and the line width. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . value The maximum ratio between the miter length and the line width. Larger values (> 10) will result in very long spikes when two lines meet in a small angle. Keep the default unless you ...
PHP Manual
[ ps_setmiterlimit php.net ]

PHP Funktion
tidy::__construct ( phplist Code 10% Relevanz )
Rubrik
Tidy Functions
Kurzform
tidy::__construct -- Constructs a new tidy object
Vorschau
...tidy::__construct tidy::__construct (no version information, might be only in CVS) tidy::__construct -- Constructs a new tidy object Description tidy tidy::__construct ( [string filename [, mixed config [, string encoding [, bool use_include_path]]]] ) tidy::__construct() constructs a new tidy object. If the filename parameter is given, this function will also read that file and initialize the object...
PHP Manual
[ tidy::__construct php.net ]

PHP Funktion
XSLTProcessor->transformToURI() ( phplist Code 10% Relevanz )
Rubrik
XSL functions
Kurzform
XSLTProcessor->transformToURI() -- Transform to URI
Vorschau
...->importStylesheet() method. Parameter Liste doc The transformed document. uri Rückgabewerte Returns the number of bytes written or FALSE if an error occurred. Beispiele Beispiel 1. Transforming to a HTML file <?php // Load the XML source $xml = new DOMDocument ; $xml -> load ( 'collection.xml' ); $xsl = new DOMDocument ; $xsl -> load ( 'collection.xsl' ); // Configure the transformer $proc = new XSLTProcessor ; $proc...
PHP Manual
[ XSLTProcessor->transformToURI() php.net ]

PHP Funktion
Reporting Errors ( phplist Code 10% Relevanz )
Rubrik
Extending PHP 3
Kurzform
-----
Vorschau
... encountered something that could indicate an error, but could also happen in the normal course of running a script. For example, trying to access the value of a variable which has not been set, or calling stat() on a file that doesn't exist. E_WARNING Warnings are printed by default, but do not interrupt script execution. These indicate a problem that should have been trapped by the script before the call was made. For example, calling ...
PHP Manual
[ Reporting Errors php.net ]

PHP Funktion
cURL Client URL Bibiothek-Funktionen ( phplist Code 10% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...Bibiothek entwickelt von Daniel Stenberg, die es erlaubt sich mit Servern zu verbinden und über diverse Protokolle zu kommunizieren. Libcurl unterstützt zur Zeit folgende Protokolle: http, https, ftp, gopher, telnet, dict, file und ldap. Libcurl unterstützt des en HTTPS Zertifikate, HTTP POST, HTTP PUT, und das hochladen von Dateien unter Benutzung des FTP Protokolls (ist auch unter Nuztung der FTP Erung PHPs' möglich), HTTP Fomular basierende ...
PHP Manual
[ cURL Client URL Bibiothek-Funktionen php.net ]

PHP Funktion
enchant Functions ( phplist Code 10% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... of requesting enchant_broker_list_dicts -- Returns a list of available dictionaries enchant_broker_request_dict -- create a new dictionary using a tag enchant_broker_request_pwl_dict -- creates a dictionary using a PWL file. A PWL file is personal word file one word per line. enchant_broker_set_ordering -- Declares a preference of dictionaries to use for the language enchant_dict_add_to_personal -- add a word to personal word list ...
PHP Manual
[ enchant Functions php.net ]

PHP Funktion
Expect Functions ( phplist Code 10% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...Expect Functions XXXV. Expect Functions Einführung This extension allows to interact with processes through PTY. You may consider using the expect:// wrapper with the filesystem functions which provide a simpler and more intuitive interface. Anforderungen This module uses the functions of the expect library. You need libexpect version >= 5.43.0. Installation Diese PECL Erungist nicht ...
PHP Manual
[ Expect Functions php.net ]

PHP Funktion
libxml Functions ( phplist Code 10% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...Vordefinierte Klassen LibXMLError Eigenschaften code - the error's code column - the column where the error occurred. Please note that this property isn't entirely implemented in libxml and therefore 0 is often returned. file - the filename, or empty if the XML was loaded from a string level - the severity of the error (one of the following constants: LIBXML_ERR_WARNING , LIBXML_ERR_ERROR or LIBXML_ERR_FATAL ) line - the line where the error ...
PHP Manual
[ libxml Functions php.net ]

PHP Funktion
runkit Functions ( phplist Code 10% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
....0 or later. Sandboxing requires PHP 5.1.0 or later, or PHP 5.0.0 with a special TSRM patch applied. Regardless of which version of PHP is in use it must be compiled with the --enable-maintainer-zts option. See the README file in the runkit package for additional information. Laufzeit Konfiguration Das Verhalten dieser Funktionen wirddurch Einstellungen in der php.ini beeinflusst. Tabelle 1. Runkit Configuration Options Name Default Changeable ...
PHP Manual
[ runkit Functions php.net ]

PHP Funktion
SDO XML Data Access Service Functions ( phplist Code 10% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
..., and so on. If you are not familiar with these ideas, you might want to look first at the section on SDO . The job of the XML DAS is to move data between the application and an XML data source, which can be either a file or a URL. SDOs are always created and maintained according to a model which defines type names and what property names each type may have. For data which is from XML, this SDO model is built from a schema file written in ...
PHP Manual
[ SDO XML Data Access Service Functions php.net ]

PHP Funktion
Stream Functions ( phplist Code 10% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...Stream Functions CLV. Stream Functions Einführung Streams were introduced with PHP 4.3.0 as a way of generalizing file, network, data compression, and other operations which share a common set of functions and uses. In its simplest definition, a stream is a resource object which exhibits streamable behavior. That is, it can be read from or...
PHP Manual
[ Stream Functions php.net ]

PHP Funktion
List of Supported Socket Transports ( phplist Code 10% Relevanz )
Rubrik
Anhang
Kurzform
-----
Vorschau
... ssl:// and tls:// transports (since PHP 4.3.2) Name Usage Default verify_peer TRUE or FALSE . Require verification of SSL certificate used. FALSE allow_self_signed TRUE or FALSE . Allow self-signed certificates. FALSE cafile Location of Certificate Authority file on local filesystem which should be used with the verify_peer context option to authenticate the identity of the remote peer. capath If cafile is not specified or if the certificate...
PHP Manual
[ List of Supported Socket Transports php.net ]

PHP Funktion
Reference: Some Configuration Macros ( phplist Code 10% Relevanz )
Rubrik
Zend API: Hacking the Core of PHP
Kurzform
-----
Vorschau
...Reference: Some Configuration Macros PHP Handbuch Kapitel 46. Zend API: Hacking the Core of PHP Reference: Some Configuration 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 Manual
[ Reference: Some Configuration Macros php.net ]

PHP Funktion
Source Discussion ( phplist Code 10% Relevanz )
Rubrik
Zend API: Hacking the Core of PHP
Kurzform
-----
Vorschau
...Source Discussion PHP Handbuch Kapitel 46. Zend API: Hacking the Core of PHP Source 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...
PHP Manual
[ Source Discussion php.net ]

PHP Funktion
Debugger-Protokoll ( phplist Code 9% Relevanz )
Rubrik
Der PHP-Debugger
Kurzform
-----
Vorschau
... Fehlermeldung, der unten aufgelistet ist. message Die PHP-Fehlermeldung. location Dateiname und Zeilennummer, wo der Fehler aufgetreten ist. Die erste Location- Zeile beinhaltet immer die Top-Level-Location. data enthält file : line . Nach jeder message und nach jeder function steht eine location -Zeile. frames Anzahl der Frames in der folgenden Ebenenanzeige. Bei vier Frames werden Informationen zu vier Ebenen von Funktionsaufrufen angezeigt...
PHP Manual
[ Debugger-Protokoll php.net ]

PHP Funktion
apd_set_pprof_trace ( phplist Code 9% Relevanz )
Rubrik
Advanced PHP debugger
Kurzform
apd_set_pprof_trace -- Starts the session debugging
Vorschau
...Starts the session debugging Beschreibung void apd_set_pprof_trace ( [string dump_directory] ) Starts debugging to pprof_{process_id} in the dump directory. Parameter Liste dump_directory The directory in which the profile dump file is written. If not set, the apd.dumpdir setting from the php.ini file is used. Rückgabewerte No value is returned. Beispiele Beispiel 1. apd_set_pprof_trace() example <?php apd_set_pprof_trace (); ?> ...
PHP Manual
[ apd_set_pprof_trace php.net ]

PHP Funktion
hash_update_stream ( phplist Code 9% Relevanz )
Rubrik
hash Functions
Kurzform
hash_update_stream -- Pump data into an active hashing context from an open stream
Vorschau
... into an active hashing context from an open stream Beschreibung int hash_update_stream ( resource context, resource handle [, int length] ) Parameter Liste context Hashing context returned by hash_init() . handle Open file handle as returned by any stream creation function. length Maximum number of characters to copy from handle into the hashing context. Rückgabewerte Actual number of bytes added to the hashing context from handle . ...
PHP Manual
[ hash_update_stream php.net ]

PHP Funktion
ncurses_scr_restore ( phplist Code 9% Relevanz )
Rubrik
Ncurses Terminal Screen Control Functions
Kurzform
ncurses_scr_restore -- Restore screen from file dump
Vorschau
...ncurses_scr_restore ncurses_scr_restore (PHP 4 >= 4.2.0, PHP 5) ncurses_scr_restore -- Restore screen from file dump Description int ncurses_scr_restore ( string filename ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. Seien Sie gewarnt und verwenden ...
PHP Manual
[ ncurses_scr_restore php.net ]

PHP Funktion
ps_set_border_color ( phplist Code 9% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_set_border_color -- Sets color of border for annotations
Vorschau
... to pdf and viewed in a pdf viewer. This rectangle is not visible in the postscript document. This function sets the color of the rectangle's border line. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . red The red component of the border color. green The green component of the border color. blue The blue component of the border color. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE...
PHP Manual
[ ps_set_border_color php.net ]

PHP Funktion
ps_set_border_dash ( phplist Code 9% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_set_border_dash -- Sets length of dashes for border of annotations
Vorschau
...in a pdf viewer. This rectangle is not visible in the postscript document. This function sets the length of the black and white portion of a dashed border line. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . black The length of the dash. white The length of the gap between dashes. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_set_border_color() ps_set_border_style() ...
PHP Manual
[ ps_set_border_dash php.net ]

PHP Funktion
satellite_load_idl ( phplist Code 9% Relevanz )
Rubrik
Satellite CORBA client extension [deprecated]
Kurzform
satellite_load_idl -- Instruct the type manager to load an IDL file
Vorschau
...satellite_load_idl satellite_load_idl (4.0.3 - 4.1.2 only, PECL) satellite_load_idl -- Instruct the type manager to load an IDL file Beschreibung bool satellite_load_idl ( string file ) Load an IDL file into Satellite. satellite_get_repository_id satellite_object_to_string...
PHP Manual
[ satellite_load_idl php.net ]

PHP Funktion
stream_get_wrappers ( phplist Code 9% Relevanz )
Rubrik
Stream Functions
Kurzform
stream_get_wrappers -- Retrieve list of registered streams
Vorschau
... available on the running system. Beispiel 1. stream_get_wrappers() example <?php print_r ( stream_get_wrappers ()); ?> Das oben gezeigte Beispiel erzeugteine ähnliche Ausgabe wie: Array( [0] => php [1] => file [2] => http [3] => ftp [4] => compress.bzip2 [5] => compress.zlib) Beispiel 2. Checking for the existence of a stream wrapper <?php // check for the existence of the bzip2 stream wrapper if ( in_array...
PHP Manual
[ stream_get_wrappers php.net ]

PHP Funktion
Microsoft IIS / PWS ( phplist Code 9% Relevanz )
Rubrik
Installation on Windows systems
Kurzform
-----
Vorschau
... php.ini . The PHP 4 CGI is named php.exe while in PHP 5 it's php-cgi.exe . In PHP 5, php.exe is the CLI, and not the CGI. Modify the Windows PATH environment variable to include the PHP directory. This way the PHP DLL files and PHP executables can all remain in the PHP directory without cluttering up the Windows system directory. For more details, see the FAQ on Setting the PATH . The IIS user (usually IUSR_MACHINENAME) needs permission to ...
PHP Manual
[ Microsoft IIS / PWS php.net ]

PHP Funktion
Classkit Functions ( phplist Code 9% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... ) Marks the method private CLASSKIT_ACC_PROTECTED ( int ) Marks the method protected CLASSKIT_ACC_PUBLIC ( int ) Marks the method public Inhaltsverzeichnis classkit_import -- Import new class method definitions from a file classkit_method_add -- Dynamically adds a new method to a given class classkit_method_copy -- Copies a method from class to another classkit_method_redefine -- Dynamically changes the code of the given method ...
PHP Manual
[ Classkit Functions php.net ]

PHP Funktion
Hyperwave Functions ( phplist Code 9% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... is an information system similar to a database ( HIS , Hyperwave Information Server). Its focus is the storage and management of documents. A document can be any possible piece of data that may as well be stored in file. Each document is accompanied by its object record. The object record contains meta data for the document. The meta data is a list of attributes which can be extended by the user. Certain attributes are always set by the ...
PHP Manual
[ Hyperwave Functions php.net ]

PHP Funktion
Stream open options ( phplist Code 9% Relevanz )
Rubrik
Streams Constants
Kurzform
-----
Vorschau
... functions Description One or more of these values can be combined using the OR operator. IGNORE_PATH This is the default option for streams; it requests that the include_path is not to be searched for the requested file. USE_PATH Requests that the include_path is to be searched for the requested file. IGNORE_URL Requests that registered URL wrappers are to be ignored when opening the stream. Other non-URL wrappers will be taken into ...
PHP Manual
[ Stream open options php.net ]

PHP Funktion
php_stream_closedir ( phplist Code 9% Relevanz )
Rubrik
Streams Dir API Reference
Kurzform
-----
Vorschau
... int php_stream_closedir ( php_stream * dirstream ) php_stream_closedir() closes a directory stream and releases resources associated with it. Returns 0 on success, but -1 on failure. php_stream_rewinddir Streams File API Reference...
PHP Manual
[ php_stream_closedir php.net ]

PHP Funktion
php_stream_opendir ( phplist Code 9% Relevanz )
Rubrik
Streams Dir API Reference
Kurzform
-----
Vorschau
...php_stream_opendir php_stream_opendir php_stream_opendir -- Open a directory for file enumeration Description php_stream * php_stream_opendir ( char * path, php_stream_context * context ) php_stream_opendir() returns a stream that can be used to list the files that are contained in the directory specified ...
PHP Manual
[ php_stream_opendir php.net ]

PHP Funktion
Streams Structures ( phplist Code 9% Relevanz )
Rubrik
Streams API for PHP Extension Authors
Kurzform
-----
Vorschau
...Streams Structures PHP Handbuch Kapitel 44. Streams API for PHP Extension Authors Streams Structures Inhaltsverzeichnis struct php_stream_statbuf -- Holds information about a file or URL struct php_stream_dirent -- Holds information about a single file during dir scanning struct php_stream_ops -- Holds member functions for a stream implementation struct php_stream_wrapper -- Holds wrapper properties...
PHP Manual
[ Streams Structures php.net ]

PHP Funktion
apd_set_session_trace ( phplist Code 8% Relevanz )
Rubrik
Advanced PHP debugger
Kurzform
apd_set_session_trace -- Starts the session debugging
Vorschau
...and does not appear to be accurate. ASSIGNMENT_TRACE is not implemented yet. To turn on allfunctional traces (TIMING, FUNCTIONS, ARGS SUMMARY (like strace -c)) use the value 99 dump_directory The directory in which the profile dump file is written. If not set, the apd.dumpdir setting from the php.ini file is used. Rückgabewerte No value is returned. Beispiele Beispiel 1. apd_set_session_trace() example <?php apd_set_session_trace ( 99 ); ?&...
PHP Manual
[ apd_set_session_trace php.net ]

PHP Funktion
dbase_get_header_info ( phplist Code 8% Relevanz )
Rubrik
dBase Funktionen
Kurzform
dbase_get_header_info -- Gets the header info of a database
Vorschau
... for the column offset The byte offset of the column from the start of the row If the database header information cannot be read, FALSE is returned. Beispiele Beispiel 1. Showing header information for a dBase database file <?php // Path to dbase file $db_path = "/tmp/test.dbf" ; // Open dbase file $dbh = dbase_open ( $db_path , 0 ) or die( "Error! Could not open dbase database file '$db_path'." ); // Get column information $column_info = ...
PHP Manual
[ dbase_get_header_info php.net ]

PHP Funktion
openal_buffer_loadwav ( phplist Code 8% Relevanz )
Rubrik
OpenAL Audio Bindings
Kurzform
openal_buffer_loadwav -- Load a .wav file into a buffer
Vorschau
...openal_buffer_loadwav openal_buffer_loadwav (PECL) openal_buffer_loadwav -- Load a .wav file into a buffer Beschreibung bool openal_buffer_loadwav ( resource buffer, string wavfile ) Parameter Liste buffer An Open AL(Buffer) resource (previously created by openal_buffer_create() ). wavfile Path to .WAV file on local file system. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch...
PHP Manual
[ openal_buffer_loadwav php.net ]

PHP Funktion
stream_socket_client ( phplist Code 8% Relevanz )
Rubrik
Stream Functions
Kurzform
stream_socket_client -- Open Internet or Unix domain socket connection
Vorschau
... as TCP and UDP, the target portion of the remote_socket parameter should consist of a hostname or IP address followed by a colon and a port number. For Unix domain sockets, the target portion should point to the socket file on the filesystem. The optional timeout can be used to set a timeout in seconds for the connect system call. flags is a bitmask field which may be set to any combination of connection flags. Currently the selection of ...
PHP Manual
[ stream_socket_client php.net ]

PHP Funktion
stream_socket_server ( phplist Code 8% Relevanz )
Rubrik
Stream Functions
Kurzform
stream_socket_server -- Create an Internet or Unix domain server socket
Vorschau
... as TCP and UDP, the target portion of the remote_socket parameter should consist of a hostname or IP address followed by a colon and a port number. For Unix domain sockets, the target portion should point to the socket file on the filesystem. flags is a bitmask field which may be set to any combination of socket creation flags. The default value of flags is STREAM_SERVER_BIND | STREAM_SERVER_LISTEN . Anmerkung: For UDP sockets, you must use ...
PHP Manual
[ stream_socket_server php.net ]

PHP Funktion
Advanced PHP debugger ( phplist Code 8% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...It was written to provide profiling and debugging capabilities for PHP code, as well as to provide the ability to print out a full stack backtrace. APD supports interactive debugging, but by default it writes data to trace files. It also offers event based logging so that varying levels of information (including function calls, arguments passed, timings, etc.) can be turned on or off for individual scripts. Achtung APD is a Zend Extension, ...
PHP Manual
[ Advanced PHP debugger php.net ]

PHP Funktion
OpenAL Audio Bindings ( phplist Code 8% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... -- Generate OpenAL buffer openal_buffer_data -- Load a buffer with data openal_buffer_destroy -- Destroys an OpenAL buffer openal_buffer_get -- Retrieve an OpenAL buffer property openal_buffer_loadwav -- Load a .wav file into a buffer openal_context_create -- Create an audio processing context openal_context_current -- Make the specified context current openal_context_destroy -- Destroys a context openal_context_process -- Process the ...
PHP Manual
[ OpenAL Audio Bindings php.net ]

PHP Funktion
php_stream_stat_path ( phplist Code 8% Relevanz )
Rubrik
Streams Common API Reference
Kurzform
-----
Vorschau
...php_stream_stat_path php_stream_stat_path php_stream_stat_path -- Gets the status for a file or URL Description int php_stream_stat_path ( char * path, php_stream_statbuf * ssb ) php_stream_stat_path() examines the file or URL specified by path and returns information such as file size, access and creation times and so on. The return value is 0 on success, -1 on error. For more information about the information returned, see ...
PHP Manual
[ php_stream_stat_path php.net ]

PHP Funktion
Streams as Resources ( phplist Code 8% Relevanz )
Rubrik
Streams API for PHP Extension Authors
Kurzform
-----
Vorschau
.... Streams API for PHP Extension Authors Streams as Resources All streams are registered as resources when they are created. This ensures that they will be properly cleaned up even if there is some fatal error. All of the filesystem functions in PHP operate on streams resources - that means that your extensions can accept regular PHP file pointers as parameters to, and return streams from their functions. The streams API makes this process as ...
PHP Manual
[ Streams as Resources php.net ]

PHP Funktion
Printing Information ( phplist Code 8% Relevanz )
Rubrik
Zend API: Hacking the Core of PHP
Kurzform
-----
Vorschau
...(2, "Entry in first row", "Another entry");php_info_print_table_row(2, "Just to fill", "another row here");php_info_print_table_end(); Execution Information You can also print execution information, such as the current file being executed. The name of the function currently being executed can be retrieved using the function get_active_function_name() . This function returns a pointer to the function name and doesn't accept any arguments. To ...
PHP Manual
[ Printing Information php.net ]

PHP Funktion
Where to Go from Here ( phplist Code 8% Relevanz )
Rubrik
Zend API: Hacking the Core of PHP
Kurzform
-----
Vorschau
... 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
Extension Kategorisierung ( phplist Code 7% Relevanz )
Rubrik
Anhang
Kurzform
-----
Vorschau
...SDO Relational Data Access Service Functions Verweis CV, ODBC Funktionen Anbieterspezifische Datenbank-Extensions Verweis XXV, dBase Funktionen Verweis XXIII, DB++ Functions Verweis XLV, FrontBase Funktionen Verweis XXXIX, filePro Funktionen Verweis XLII, InterBase-Funktionen Verweis LVIII, IBM DB2, Cloudscape and Apache Derby Functions Verweis LXV, Informix Funktionen Verweis LXVII, Ingres II Funktionen Verweis LXXIX, MaxDB PHP Extension Verweis...
PHP Manual
[ Extension Kategorisierung php.net ]

PHP Funktion
Steuerung von Dateiuploads ( phplist Code 7% Relevanz )
Rubrik
Features
Kurzform
-----
Vorschau
...- und Dateifunktionen besteht volle Kontrolle darüber, wer Dateien hochladen darf und was mit den Dateien geschehen soll, wenn der Upload beendet ist. Diesbezügliche Konfigurationshinweise: Siehe auch die Anweisungen file_uploads , upload_max_filesize , upload_tmp_dir und post_max_size in der php.ini PHP unterstützt auch Dateiuploads nach der PUT-Methode, die beispielsweise vom Netscape Composer und den W3C Amaya Clients benutzt wird. ...
PHP Manual
[ Steuerung von Dateiuploads php.net ]

PHP Funktion
DOMDocument->load() ( phplist Code 7% Relevanz )
Rubrik
DOM Functions
Kurzform
DOMDocument->load() -- Load XML from a file
Vorschau
...HREF="function.dom-domdocument-importnode.html"> loadHTML()"HREF="function.dom-domdocument-loadhtml.html"> DOMDocument->load() (no version information, might be only in CVS) DOMDocument->load() -- Load XML from a file Beschreibung class DOMDocument { mixed load ( string filename [, int options] ) } Loads an XML document from a file. Parameter Liste filename The path to the XML document. Rückgabewerte Gibt bei Erfolg TRUE , im ...
PHP Manual
[ DOMDocument->load() php.net ]

PHP Funktion
DOMDocument->save() ( phplist Code 7% Relevanz )
Rubrik
DOM Functions
Kurzform
DOMDocument->save() -- Dumps the internal XML tree back into a file
Vorschau
....html"> saveHTML()"HREF="function.dom-domdocument-savehtml.html"> DOMDocument->save() (no version information, might be only in CVS) DOMDocument->save() -- Dumps the internal XML tree back into a file Beschreibung class DOMDocument { mixed save ( string filename [, integer options] ) } Creates an XML document from the DOM representation. This function is usually called after building a new dom document from scratch as ...
PHP Manual
[ DOMDocument->save() php.net ]

PHP Funktion
satellite_caught_exception ( phplist Code 7% Relevanz )
Rubrik
Satellite CORBA client extension [deprecated]
Kurzform
satellite_caught_exception -- See if an exception was caught from the previous function
Vorschau
... ohneAnkündigung ändern. Seien Sie gewarnt und verwenden Sie diese Funktion aufeigenes Risiko. Rückgabewerte This function returns TRUE if an exception has been caught, FALSE otherwise. Beispiele Beispiel 1. Sample IDL file /* ++?????++ Out of Cheese Error. Redo From Start. */exception OutOfCheeseError { int parameter;} interface AnotherInterface { void AskWhy() raises (OutOfCheeseError);} Beispiel 2. PHP code for handling CORBA exceptions &...
PHP Manual
[ satellite_caught_exception php.net ]

PHP Funktion
stream_context_get_default ( phplist Code 7% Relevanz )
Rubrik
Stream Functions
Kurzform
stream_context_get_default -- Retreive the default streams context
Vorschau
... (PHP 5 >= 5.1.0RC1) stream_context_get_default -- Retreive the default streams context Description resource stream_context_get_default ( [array options] ) Returns the default stream context which is used whenever file operations ( fopen() , file_get_contents() , etc...) are called without a context parameter. Options for the default context can optionally be specified with this function using the same syntax as stream_context_create...
PHP Manual
[ stream_context_get_default php.net ]

PHP Funktion
stream_set_write_buffer ( phplist Code 7% Relevanz )
Rubrik
Stream Functions
Kurzform
stream_set_write_buffer -- Sets file buffering on the given stream
Vorschau
...stream_set_write_buffer stream_set_write_buffer (PHP 4 >= 4.3.0, PHP 5) stream_set_write_buffer -- Sets file buffering on the given stream Description int stream_set_write_buffer ( resource stream, int buffer ) Output using fwrite() is normally buffered at 8K. This means that if there are two processes wanting to write to the ...
PHP Manual
[ stream_set_write_buffer php.net ]

PHP Funktion
Packaging and distribution ( phplist Code 7% Relevanz )
Rubrik
PDO Driver How-To
Kurzform
-----
Vorschau
... Kapitel 45. PDO Driver How-To Packaging and distribution Creating a package PDO drivers are released via PECL; all the usual rules for PECL extensions apply. Packaging is accomplished by creating a valid package.xml file and then running: $ pear package This will create a tarball named PDO_SKEL-X.Y.Z.tgz . Before releasing the package, you should test that it builds correctly; if you've made a mistake in your config.m4 or package.xml ...
PHP Manual
[ Packaging and distribution php.net ]

PHP Funktion
Secure Shell2 Functions ( phplist Code 7% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...Secure Shell2 Functions CLIII. Secure Shell2 Functions Einführung Bindings to the libssh2 library which provide access to resources (shell, remote exec, tunneling, file transfer) on a remote machine using a secure cryptographic transport. Installation Windows binaries may be found at http://snaps.php.net/ . To install, download php_ssh2.dll to the folder specified by your php.ini file's ...
PHP Manual
[ Secure Shell2 Functions php.net ]

PHP Funktion
Streams Dir API Reference ( phplist Code 7% Relevanz )
Rubrik
Streams API for PHP Extension Authors
Kurzform
-----
Vorschau
...Streams Dir API Reference PHP Handbuch Kapitel 44. Streams API for PHP Extension Authors Streams Dir API Reference Inhaltsverzeichnis php_stream_opendir -- Open a directory for file enumeration php_stream_readdir -- Fetch the next directory entry from an opened dir php_stream_rewinddir -- Rewind a directory stream to the first entry php_stream_closedir -- Close a directory stream and release resources...
PHP Manual
[ Streams Dir API Reference php.net ]

PHP Funktion
php_stream_open_wrapper_ex ( phplist Code 7% Relevanz )
Rubrik
Streams Common API Reference
Kurzform
-----
Vorschau
...php_stream_open_wrapper_ex php_stream_open_wrapper_ex php_stream_open_wrapper_ex -- Opens a stream on a file or URL, specifying context Description php_stream * php_stream_open_wrapper_ex ( char * path, char * mode, int options, char ** opened, php_stream_context * context ) php_stream_open_wrapper_ex() is exactly like ...
PHP Manual
[ php_stream_open_wrapper_ex php.net ]

PHP Funktion
php_stream_open_wrapper ( phplist Code 7% Relevanz )
Rubrik
Streams Common API Reference
Kurzform
-----
Vorschau
...php_stream_open_wrapper php_stream_open_wrapper php_stream_open_wrapper -- Opens a stream on a file or URL Description php_stream * php_stream_open_wrapper ( char * path, char * mode, int options, char ** opened ) php_stream_open_wrapper() opens a stream on the file, URL or other wrapped resource specified by path . ...
PHP Manual
[ php_stream_open_wrapper php.net ]

PHP Funktion
struct php_stream_dirent ( phplist Code 7% Relevanz )
Rubrik
Streams Structures
Kurzform
-----
Vorschau
...struct php_stream_dirent struct php_stream_dirent struct php_stream_dirent -- Holds information about a single file during dir scanning Description php_stream_dirent char d_name[MAXPATHLEN] d_name holds the name of the file, relative to the directory being scanned. struct php_stream_statbuf struct php_stream_ops...
PHP Manual
[ struct php_stream_dirent php.net ]

PHP Funktion
struct php_stream_statbuf ( phplist Code 7% Relevanz )
Rubrik
Streams Structures
Kurzform
-----
Vorschau
...struct php_stream_statbuf struct php_stream_statbuf struct php_stream_statbuf -- Holds information about a file or URL Description php_stream_statbuf struct stat sb sb is a regular, system defined, struct stat. Streams Structures struct php_stream_dirent...
PHP Manual
[ struct php_stream_statbuf php.net ]

PHP Funktion
apd_set_socket_session_trace ( phplist Code 6% Relevanz )
Rubrik
Advanced PHP debugger
Kurzform
apd_set_socket_session_trace -- Starts the remote session debugging
Vorschau
... ( string tcp_server, int socket_type, int port, int debug_level ) Connects to the specified tcp_server (eg. tcplisten) and sends debugging data to the socket. Parameter Liste tcp_server IP or Unix Domain socket (like a file) of the TCP server. socket_type Can be AF_UNIX for file based sockets or APD_AF_INET for standard tcp/ip. port You can use any port, but higher numbers are better as most of the lower numbers may be used by other system ...
PHP Manual
[ apd_set_socket_session_trace php.net ]

PHP Funktion
DOMDocument->validate() ( phplist Code 6% Relevanz )
Rubrik
DOM Functions
Kurzform
DOMDocument->validate() -- Validates the document based on its DTD
Vorschau
...Beispiele Beispiel 1. Example of DTD validation <?php $dom = new DOMDocument ; $dom -> Load ( 'book.xml' ); if ( $dom -> validate ()) { echo "This document is valid!\n" ; } ?> You can also validate your XML file while loading it: <?php $dom = new DOMDocument ; $dom -> validateOnParse = true ; $dom -> Load ( 'book.xml' ); ?> Siehe auch DOMDocument->schemaValidate() DOMDocument->schemaValidateSource() ...
PHP Manual
[ DOMDocument->validate() php.net ]

PHP Funktion
DOMDocument->xinclude() ( phplist Code 6% Relevanz )
Rubrik
DOM Functions
Kurzform
DOMDocument->xinclude() -- Substitutes XIncludes in a DOMDocument Object
Vorschau
... { int xinclude ( [int options] ) } This method substitutes XIncludes in a DOMDocument object. Anmerkung: Due to libxml2 automatically resolving entities, this method will produce unexpected results if the included XML file have an attached DTD. Parameter Liste options libxml parameters . Available since PHP 5.1.0 and Libxml 2.6.7. Rückgabewerte Returns the number of XIncludes in the document. Beispiele Beispiel 1. DOMDocument->...
PHP Manual
[ DOMDocument->xinclude() php.net ]

PHP Funktion
enchant_broker_request_pwl_dict ( phplist Code 6% Relevanz )
Rubrik
enchant Functions
Kurzform
enchant_broker_request_pwl_dict -- creates a dictionary using a PWL file. A PWL file is personal word file one word per line.
Vorschau
...enchant_broker_request_pwl_dict enchant_broker_request_pwl_dict (PECL) enchant_broker_request_pwl_dict -- creates a dictionary using a PWL file. A PWL file is personal word file one word per line. Beschreibung resource enchant_broker_request_pwl_dict ( resource broker, string filename ) creates a dictionary using a PWL file. A PWL file is personal word file one word per line. Parameter Liste ...
PHP Manual
[ enchant_broker_request_pwl_dict php.net ]

PHP Funktion
http_send_content_disposition ( phplist Code 6% Relevanz )
Rubrik
HTTP Funktionen
Kurzform
http_send_content_disposition -- Send Content-Disposition
Vorschau
...http_send_content_disposition http_send_content_disposition (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. ...
PHP Manual
[ http_send_content_disposition php.net ]

PHP Funktion
Xitami on Microsoft Windows ( phplist Code 6% Relevanz )
Rubrik
Installation on Windows systems
Kurzform
-----
Vorschau
... is running, and point your browser to xitamis admin console (usually http://127.0.0.1/admin ), and click on Configuration. Navigate to the Filters, and put the extension which PHP should parse (i.e. .php) into the field File extensions (.xxx). In Filter command or script put the path and name of your PHP CGI executable i.e. C:\php\php.exe for PHP 4, or C:\php\php-cgi.exe for PHP 5. Press the 'Save' icon. Restart the server to reflect ...
PHP Manual
[ Xitami on Microsoft Windows php.net ]

PHP Funktion
Preparation and Housekeeping ( phplist Code 6% Relevanz )
Rubrik
PDO Driver How-To
Kurzform
-----
Vorschau
... 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 get started is to use the ext_skel shell script found in the PHP build tree in the ext directory. This will build a skeleton directory containing...
PHP Manual
[ Preparation and Housekeeping php.net ]

PHP Funktion
MCVE (Monetra) Payment Functions ( phplist Code 6% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... parameters on this transaction m_responseparam -- Get a custom response parameter m_returnstatus -- Check to see if the transaction was successful m_setblocking -- Set blocking/non-blocking mode for connection m_setdropfile -- Set the connection method to Drop-File m_setip -- Set the connection method to IP m_setssl_cafile -- Set SSL CA (Certificate Authority) file for verification of server certificate m_setssl_files -- Set certificate key ...
PHP Manual
[ MCVE (Monetra) Payment Functions php.net ]

PHP Funktion
MySQL Functions (PDO_MYSQL) ( phplist Code 6% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...prepare ( 'select * from foo' , array( PDO :: MYSQL_ATTR_USE_BUFFERED_QUERY => true )); } else { die( "my application only works with mysql; I should use \$stmt->fetchAll() instead" ); } ?> PDO::MYSQL_ATTR_LOCAL_INFILE ( integer ) Enable LOAD LOCAL INFILE . PDO::MYSQL_ATTR_INIT_COMMAND ( integer ) Command to execute when connecting to the MySQL server. Will automatically be re-executed when reconnecting. PDO::...
PHP Manual
[ MySQL Functions (PDO_MYSQL) php.net ]

PHP Funktion
RPM Header Reading Funktionen ( phplist Code 6% 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/package/rpmreader . To enable extname support, ...
PHP Manual
[ RPM Header Reading Funktionen php.net ]

PHP Funktion
Streams Common API Reference ( phplist Code 6% Relevanz )
Rubrik
Streams API for PHP Extension Authors
Kurzform
-----
Vorschau
...Streams Common API Reference PHP Handbuch Kapitel 44. Streams API for PHP Extension Authors Streams Common API Reference Inhaltsverzeichnis php_stream_stat_path -- Gets the status for a file or URL php_stream_stat -- Gets the status for the underlying storage associated with a stream php_stream_open_wrapper -- Opens a stream on a file or URL php_stream_read -- Read a number of bytes from a stream into a buffer...
PHP Manual
[ Streams Common API Reference php.net ]

PHP Funktion
struct php_stream_wrapper_ops ( phplist Code 6% Relevanz )
Rubrik
Streams Structures
Kurzform
-----
Vorschau
... -- Holds member functions for a stream wrapper implementation Description typedef struct _php_stream_wrapper_ops { /* open/create a wrapped stream */ php_stream *(*stream_opener)(php_stream_wrapper *wrapper, char *filename, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC); /* close/destroy a wrapped stream */ int (*stream_closer)(php_stream_wrapper *wrapper, php_stream *stream TSRMLS_DC); /* ...
PHP Manual
[ struct php_stream_wrapper_ops php.net ]

PHP Funktion
Debian GNU/Linux installation notes ( phplist Code 5% Relevanz )
Rubrik
Installation auf Unix-Systemen
Kurzform
-----
Vorschau
... instead of the result the script should produce, APT has probably not included /etc/apache/conf.d/php4 in your Apache 1.3 configuration. Please ensure that the following line is present in your /etc/apache/httpd.conf file then stop/start Apache: Beispiel 4-13. This line activates PHP 4 into Apache # Include /etc/apache/conf.d/ If you installed an additional module and if its functions are not available in your scripts, please ensure that ...
PHP Manual
[ Debian GNU/Linux installation notes php.net ]

PHP Funktion
Apache 1.3.x on Microsoft Windows ( phplist Code 5% Relevanz )
Rubrik
Installation on Windows systems
Kurzform
-----
Vorschau
... can be a few variations of configuring PHP under Apache, these are simple enough to be used by the newcomer. Please consult the Apache Documentation for further configuration directives. After changing the configuration file, remember to restart the server, for example, NET STOP APACHE followed by NET START APACHE , if you run Apache as a Windows Service, or use your regular shortcuts. Anmerkung: Beachten Sie bitte, dass Sie beiPfadangaben in ...
PHP Manual
[ Apache 1.3.x on Microsoft Windows php.net ]

PHP Funktion
Apache 2.0.x on Microsoft Windows ( phplist Code 5% Relevanz )
Rubrik
Installation on Windows systems
Kurzform
-----
Vorschau
... and notes for Apache 1.3.x users on a separate page . Anmerkung: You should read the manual installation steps first! Apache 2.2.x Support: Users of Apache 2.2.x may use the documentation below except the appropriate DLL file is named php5apache2_2.dll and it only exists as of PHP 5.2.0. See also http://snaps.php.net/ Warnung Verwenden Sie Apache 2.0.x und PHPweder unter Unix noch Windows in einer Produktivumgebung. Für eInformationen und Grü...
PHP Manual
[ Apache 2.0.x on Microsoft Windows php.net ]

PHP Funktion
Sambar Server on Microsoft Windows ( phplist Code 5% Relevanz )
Rubrik
Installation on Windows systems
Kurzform
-----
Vorschau
...and hints specific to the Sambar Server for Windows. Anmerkung: You should read the manual installation steps first! This list describes how to set up the ISAPI module to work with the Sambar server on Windows. Find the file called mappings.ini (in the config directory) in the Sambar install directory. Open mappings.ini and add the following line under [ISAPI] : Beispiel 6-7. ISAPI configuration of Sambar #for PHP 4*.php = c:\php\php4isapi....
PHP Manual
[ Sambar Server on Microsoft Windows php.net ]

PHP Funktion
Error Handling and Logging Functions ( phplist Code 5% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
..., wird dieser Wert in Bytes gemessen. Sie können auch dieKurzschreibweise verwenden, wie in dieser FAQ beschrieben. ignore_repeated_errors boolean Do not log repeated messages. Repeated errors must occur in the same file on the same line until ignore_repeated_source is set true. ignore_repeated_source boolean Ignore source of message when ignoring repeated messages. When this setting is On you will not log errors with repeated messages ...
PHP Manual
[ Error Handling and Logging Functions php.net ]

PHP Funktion
Standard PHP Library (SPL) Functions ( phplist Code 5% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... has children DirectoryIterator::__construct -- Constructs a new dir iterator from a path DirectoryIterator::current -- Return this (needed for Iterator interface) DirectoryIterator::getATime -- Get last access time of file DirectoryIterator::getCTime -- Get inode modification time of file DirectoryIterator::getChildren -- Returns an iterator for the current entry if it is a directory DirectoryIterator::getFilename -- Return filename of ...
PHP Manual
[ Standard PHP Library (SPL) Functions php.net ]

PHP Funktion
Streams API for PHP Extension Authors ( phplist Code 5% Relevanz )
Rubrik
PHP und Zend Engine Interna
Kurzform
-----
Vorschau
...Streams API for PHP Extension Authors Kapitel 44. Streams API for PHP Extension Authors Inhaltsverzeichnis Overview Streams Basics Streams as Resources Streams Common API Reference Streams Dir API Reference Streams File API Reference Streams Socket API Reference Streams Structures Streams Constants Overview The PHP Streams API introduces a unified approach to the handling of files and sockets in PHP extension. Using a single API with ...
PHP Manual
[ Streams API for PHP Extension Authors php.net ]

PHP Funktion
Zend API: Hacking the Core of PHP ( phplist Code 5% Relevanz )
Rubrik
PHP und Zend Engine Interna
Kurzform
-----
Vorschau
... Source Discussion Accepting Arguments Creating Variables Duplicating Variable Contents: The Copy Constructor Returning Values Printing Information Startup and Shutdown Functions Calling User Functions Initialization File Support Where to Go from Here Reference: Some Configuration Macros API Macros API Function and Macro reference (work in progress) Introduction Those who know don't talk. Those who talk don't know. Sometimes, PHP "as is" ...
PHP Manual
[ Zend API: Hacking the Core of PHP php.net ]

PHP Funktion
Ncurses Terminal Screen Control Functions ( phplist Code 4% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
.../Linux HPUX IRIX OS/2 SCO OpenServer Solaris SunOS Anmerkung: This extension has been moved to the PECL repository and is no longer bundled with PHP as of PHP 6.0.0 Anforderungen You need the ncurses libraries and headerfiles. Download the latest version from the ftp://ftp.gnu.org/pub/gnu/ncurses/ or from an other GNU-Mirror. Installation To get these functions to work, you have to compile the CGI or CLI version of PHP with --with-ncurses[=...
PHP Manual
[ Ncurses Terminal Screen Control Functions php.net ]

PHP Funktion
Satellite CORBA client extension [deprecated] ( phplist Code 4% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... ( http://universe-phpext.sourceforge.net/ ) and not Satellite. The Satellite extension is used for accessing CORBA objects. You will need to set the idl_directory= entry in php.ini to a path where you store all IDL files you use. See the Satellite README file for details about installing Satellite. Inhaltsverzeichnis OrbitEnum -- Use CORBA enums OrbitObject -- Access CORBA objects OrbitStruct -- Use CORBA structs ...
PHP Manual
[ Satellite CORBA client extension [deprecated] php.net ]

PHP Funktion
SDO Relational Data Access Service Functions ( phplist Code 4% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...DAS operates correctly with the php_pdo_odbc driver that comes with the pre-built binaries for PHP 5.1.0b3. DB2 8.2 Personal Developer's Edition, on Linux. The Developer's Edition is needed because it contains the include files needed when PHP is configured and built. You will need to configure PHP with the --with-pdo-odbc=ibm-db2 option. The Relational DAS applies changes to the database within a user-delimited transaction: that is, it issues ...
PHP Manual
[ SDO Relational Data Access Service Functions php.net ]

PHP Funktion
gzpassthru ( phplist Code 0% Relevanz )
Rubrik
Zlib Komprimierungsfunktionen
Kurzform
gzpassthru -- Output all remaining data on a gz-file pointer
Vorschau
...gzpassthru gzpassthru (PHP 3, PHP 4, PHP 5) gzpassthru -- Output all remaining data on a gz-file pointer Beschreibung int gzpassthru ( resource zp ) Reads to EOF on the given gz-file pointer from the current position and writes the (uncompressed) results to standard output. Anmerkung: You may need to call gzrewind() to reset the file pointer to the beginning of the file if you have already written data...
PHP Manual
[ gzpassthru php.net ]

PHP Funktion
PDO->__construct() ( phplist Code 0% Relevanz )
Rubrik
PDO-Funktionen
Kurzform
PDO->__construct() -- Creates a PDO instance representing a connection to a database
Vorschau
... different methods of specifying the arguments required to create a database connection: Driver invocation dsn contains the full DSN. URI invocation dsn consists of uri: followed by a URI that defines the location of a file containing the DSN string. The URI can specify a local file or a remote URL. uri:file:///path/to/dsnfile Aliasing dsn consists of a name name that maps to pdo.dsn. name in php.ini defining the DSN string. Anmerkung: The ...
PHP Manual
[ PDO->__construct() php.net ]

PHP Funktion
png2wbmp ( phplist Code 0% Relevanz )
Rubrik
Grafik-Funktionen
Kurzform
png2wbmp -- Convert PNG image file to WBMP image file
Vorschau
...png2wbmp png2wbmp (PHP 4 >= 4.0.5, PHP 5) png2wbmp -- Convert PNG image file to WBMP image file Description int png2wbmp ( string pngname, string wbmpname, int d_height, int d_width, int threshold ) Converts the pngname PNG file to WBMP format, and saves it as wbmpname . With the d_height and d_width you specify the...
PHP Manual
[ png2wbmp php.net ]

PHP Funktion
ps_add_bookmark ( phplist Code 0% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_add_bookmark -- Add bookmark to current page
Vorschau
...bookmark has no meaning if the document is printed or viewed, but it will be used if the document is converted to pdf by either Acrobat Distiller? or Ghostview. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . text The text used for displaying the bookmark. parent A bookmark previously created by this function which is used as the parent of the new bookmark. open If open is unequal to zero the ...
PHP Manual
[ ps_add_bookmark php.net ]

PHP Funktion
ps_arc ( phplist Code 0% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_arc -- Draws an arc counterclockwise
Vorschau
... counterclockwise (use ps_arcn() to draw clockwise). The subpath added to the current path starts on the arc at angle alpha and ends on the arc at angle beta . Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . x The x-coordinate of the circle's middle point. y The y-coordinate of the circle's middle point. radius The radius of the circle alpha The start angle given in degrees. beta The end angle ...
PHP Manual
[ ps_arc php.net ]

PHP Funktion
ps_arcn ( phplist Code 0% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_arcn -- Draws an arc clockwise
Vorschau
... clockwise (use ps_arc() to draw counterclockwise). The subpath added to the current path starts on the arc at angle beta and ends on the arc at angle alpha . Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . x The x-coordinate of the circle's middle point. y The y-coordinate of the circle's middle point. radius The radius of the circle alpha The starting angle given in degrees. beta The end angle...
PHP Manual
[ ps_arcn php.net ]

PHP Funktion
ps_show_xy ( phplist Code 0% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_show_xy -- Output text at given position
Vorschau
... -- Output text at given position Beschreibung bool ps_show_xy ( resource psdoc, string text, float x, float y ) Output a text at the given text position. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . text The text to be output. x x-coordinate of the lower left corner of the box surrounding the text. y y-coordinate of the lower left corner of the box surrounding the text. Rückgabewerte Gibt...
PHP Manual
[ ps_show_xy php.net ]

PHP Funktion
ps_show ( phplist Code 0% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_show -- Output text
Vorschau
.... Overlining is turned off by default. strikeout (parameter) Setting this parameter to "true" will turn on striking out. Striking out is turned off by default. Parameter Liste psdoc Resource identifier of the postscript file as returned by ps_new() . text The text to be output. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch ps_continue_text() ps_show_xy() ps_setfont() ps_show_xy ps_string_geometry...
PHP Manual
[ ps_show php.net ]

PHP Funktion
PHP Handbuch ( phplist Code 0% Relevanz )
Rubrik
-----
Kurzform
-----
Vorschau
... Ein-/Ausgabe Funktionen XXIX. Verzeichnis-Funktionen XXX. DOM Functions XXXI. DOM XML Funktionen XXXII. enchant Functions XXXIII. Error Handling and Logging Functions XXXIV. Exif Funktionen XXXV. Expect Functions XXXVI. File Alteration Monitor Functions XXXVII. Forms Data Format Funktionen XXXVIII. Fileinfo Functions XXXIX. filePro Funktionen XL. Funktionen des Dateisystems XLI. Filter Functions XLII. InterBase-Funktionen XLIII. Firebird/...
PHP Manual
[ PHP Handbuch php.net ]

PHP Funktion
HTTP and HTTPS ( phplist Code 0% Relevanz )
Rubrik
List of Supported Protocols/Wrappers
Kurzform
-----
Vorschau
...HTTP and HTTPS PHP Handbuch Anhang M. List of Supported Protocols/Wrappers HTTP and HTTPS PHP 3, PHP 4, PHP 5. https:// since PHP 4.3.0 http://example.com http://example.com/file.php?var1=val1&var2=val2 http://user: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....
PHP Manual
[ HTTP and HTTPS php.net ]