PHP: stream_get_line - Manual in Deutsh
PHP: stream_get_line - Manual in French
PHP: stream_get_line - Manual in Polish

You Are At PHP: stream_get_line - Manual Area


recent searches:
include functions , variable functions , post functions...




If you are new to PHP or just need to refresh your skills, this is the place to start. This series of tutorials will give you the basic knowledge you will need to create a simple PHP website.

PHP is a reflective programming language originally designed for producing dynamic web pages.[1] PHP is used mainly in server-side scripting, but can be used from a command line interface or in standalone graphical applications. Textual User Interfaces can also be created using ncurses.

PHP Manual
PrevNext

stream_get_line

(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, returns FALSE.

This function is nearly identical to fgets() except in that it allows end of line delimiters other than the standard \n, \r, and \r\n, and does not return the delimiter itself.

See also fread(), fgets(), and fgetc().

Widowiskowa i skuteczna reklama zewnętrzna dla twojego biznesu
sale sale szkoleniowe szkolenia
skarbykibica
meble łazienkowe
Pomoc drogowa Rzeszów merc

Another Useful functions:


zend-api.zend-stream-read | zend-api.zend-stream-open | zend-api.zend-stream-getc | zend-api.zend-stream-ftell | zend-api.zend-stream-fixup | zend-api.zend-stream-ferror | zend-api.zend-stream-close | streams.structs | streams.struct-php-stream-wrapper | streams.struct-php-stream-wrapper-ops | streams.struct-php-stream-statbuf | streams.struct-php-stream-ops | streams.struct-php-stream-filter | streams.struct-php-stream-filter-ops | streams.struct-php-stream-dirent | streams.socket-api | streams.resources | streams.php-unregister-url-stream-wrapper | streams.php-stream-write | streams.php-stream-tell | streams.php-stream-stat | streams.php-stream-stat-path | streams.php-stream-sock-open-unix | streams.php-stream-sock-open-host | streams.php-stream-sock-open-from-socket | streams.php-stream-seek | streams.php-stream-rewinddir | streams.php-stream-readdir | streams.php-stream-read | streams.php-stream-passthru | streams.php-stream-opendir | streams.php-stream-open-wrapper | streams.php-stream-open-wrapper-ex | streams.php-stream-open-wrapper-as-file | streams.php-stream-make-seekable | streams.php-stream-is | streams.php-stream-is-persistent | streams.php-stream-gets | streams.php-stream-getc | streams.php-stream-fopen-tmpfile | streams.php-stream-fopen-temporary-file | streams.php-stream-fopen-from-file | streams.php-stream-flush | streams.php-stream-filter-unregister-factory | streams.php-stream-filter-register-factory | streams.php-stream-eof | streams.php-stream-copy-to-stream | streams.php-stream-copy-to-mem | streams.php-stream-closedir | streams.php-stream-close | streams.php-stream-cast | streams.php-stream-can-cast | streams.php-register-url-stream-wrapper | streams.options | streams | streams.file-api | streams.dir-api | streams.constants | streams.common-api | streams.basics | ref.stream | ming.swfvideostream | http.httpinflatestream | http.httpdeflatestream | function.ziparchive-getstream | function.swfvideostream.setdimension | function.swfvideostream.getnumframes | function.swfvideostream.construct | function.swfmovie.streammp3 | function.stream-wrapper-unregister | function.stream-wrapper-restore | function.stream-wrapper-register | function.stream-socket-shutdown | function.stream-socket-server | function.stream-socket-sendto | function.stream-socket-recvfrom | function.stream-socket-pair | function.stream-socket-get-name | function.stream-socket-enable-crypto | function.stream-socket-client | function.stream-socket-accept | function.stream-set-write-buffer | function.stream-set-timeout | function.stream-set-blocking | function.stream-select | function.stream-resolve-include-path | function.stream-register-wrapper | function.stream-get-wrappers | function.stream-get-transports | function.stream-get-meta-data | function.stream-get-line | function.stream-get-filters | function.stream-get-contents | function.stream-filter-remove | function.stream-filter-register | function.stream-filter-prepend | function.stream-filter-append | function.stream-encoding | function.stream-copy-to-stream | function.stream-context-set-params | function.stream-context-set-option | function.stream-context-get-options | function.stream-context-get-default | function.stream-context-create | function.stream-bucket-prepend | function.stream-bucket-new | function.stream-bucket-make-writeable | function.stream-bucket-append | function.ssh2-fetch-stream | function.openal-stream | function.mcal-fetch-current-stream-event | function.mailparse-stream-encode | function.libxml-set-streams-context | function.httpresponse-setstream | function.httpresponse-getstream | function.httpinflatestream-update | function.httpinflatestream-flush | function.httpinflatestream-finish | function.httpinflatestream-construct | function.httpdeflatestream-update | function.httpdeflatestream-flush | function.httpdeflatestream-finish | function.httpdeflatestream-construct | function.http-send-stream | function.http-put-stream | function.http-get-request-body-stream | function.hash-update-stream | function.harudoc-savetostream | function.harudoc-resetstream | function.harudoc-readfromstream | function.harudoc-getstreamsize |


PHP is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. If you are new to PHP and want to get some idea of how it works, try the introductory tutorial. After that, check out the online manual, and the example archive sites and some of the other resources available in the links section.