php-stream-wrappers Questions

2

Solved

I would really love to implement a php_user_filter::filter(). But therefore I have to know what a bucket brigade is. This seems to be a resource which I can operate with the stream_bucket_* functio...
Lapillus asked 24/11, 2014 at 11:0

3

Solved

I know that I can create a PHP stream from a filename (a real one, or an URL), by using the fopen function: $stream = fopen('php://temp', 'r'); The resulting stream ($stream) is then a resource of...
Llanes asked 30/3, 2018 at 12:50

2

Solved

PHP manual states that a stream opened with php://input support seek operation and can be read multiple times as of PHP 5.6, but I can't make it work. The following example clearly shows it doesn't...
Stonedeaf asked 12/2, 2016 at 11:43

3

Solved

I'm attempting to write a MySQLi query to a downloadable CSV. The following headers open a stream for the CSV: $fileName = ''; //empty file name, file name is cast later header("Cache=Control: mus...
Amalberga asked 30/10, 2015 at 10:24

2

Solved

Solution at the end of the question I am writing a PHP application that sends a message to a server and then reads a response back in using stream_get_contents. I communicate with the same serv...
Cheng asked 19/12, 2013 at 14:53
1

© 2022 - 2024 — McMap. All rights reserved.