PHP 8.3.4 Released!

stream_bucket_make_writeable

(PHP 5, PHP 7, PHP 8)

stream_bucket_make_writeable Returns a bucket object from the brigade to operate on

Beschreibung

stream_bucket_make_writeable(resource $brigade): ?object

This function is called whenever there is the need to access and operate on the content contains in a brigade. It is typically called from php_user_filter::filter().

Parameter-Liste

brigade

The brigade to return a bucket object from.

Rückgabewerte

Returns a bucket object with the properties listed below or null.

data (string)

data bucket The current string in the bucket.

datalen (integer)

datalen bucket The length of the string in the bucket.

Siehe auch

add a note

User Contributed Notes 1 note

up
0
Anonymous
1 year ago
the object $bucket which is returned also includes a third parameter, $bucket->bucket, which is a reference to the resource
To Top