Dutch PHP Conference 2025 - Call For Papers

The php_user_filter class

(PHP 5, PHP 7, PHP 8)

Вступ

Children of this class are passed to stream_filter_register(). Note that the __construct method is not called; instead, php_user_filter::onCreate() should be used for initialization.

Короткий огляд класу

class php_user_filter {
/* Властивості */
public string $filtername = "";
public mixed $params = "";
public ?resource $stream = null;
/* Методи */
public filter(
    resource $in,
    resource $out,
    int &$consumed,
    bool $closing
): int
public onClose(): void
public onCreate(): bool
}

Властивості

filtername

Name of the filter registered by stream_filter_append().

params

stream

Зміст

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top