php stream functions

Solutions on MaxInterview for php stream functions by the best coders in the world

showing results for - "php stream functions"
Christiane
01 Oct 2016
1The Stream functions are part of the PHP core. There is no installation needed to use these functions.
2  
3set_socket_blocking()	Deprecated in PHP 5.4, and removed in PHP 7.0. Alias of stream_set_blocking()
4stream_bucket_prepend()	 
5stream_context_create()	 
6stream_context_get_default()	 
7stream_context_get_options()	 
8stream_context_get_params()	 
9stream_context_set_default()	 
10stream_context_set_options()	 
11stream_context_set_params()	 
12stream_copy_to_stream()	Copies data from one stream to another
13stream_filter_append()	Appends a filter to a stream
14stream_filter_prepend()	 
15stream_filter_register()	 
16stream_filter_remove()	 
17stream_get_contents()	 
18stream_get_filters()	 
19stream_get_line()	 
20stream_get_meta_data()	 
21stream_get_transports()	 
22stream_get_wrappers()	 
23stream_is_local()	 
24stream_isatty()	 
25stream_notification_callback()	 
26stream_register_wrapper()	Alias of stream_wrapper_register()
27stream_resolve_include_path()	 
28stream_select()	 
29stream_set_blocking()	 
30stream_set_chunk_size()	 
31stream_set_read_buffer()	 
32stream_set_timeout()	 
33stream_set_write_buffer()	 
34stream_socket_accept()	 
35stream_socket_client()	 
36stream_socket_enable_crypto()	 
37stream_socket_get_name()	 
38stream_socket_pair()	 
39stream_socket_recvfrom()	 
40stream_socket_sendto()	 
41stream_socket_server()	 
42stream_socket_shutdown()	 
43stream_supports_lock()	 
44stream_wrapper_register()	 
45stream_wrapper_restore()	 
46stream_wrapper_unregister()