php_user_filter クラス

はじめに

このクラスの子クラスを stream_filter_register に渡します。 子クラスの __construct メソッドは呼び出されないので注意して下さい: 初期化については、 php_user_filter::onCreate を変わりに使うべきです。

クラス概要

php_user_filter
/* プロパティ */
public string $filtername = "";
public mixed $params = "";
public resourcenull $stream = null;
/* メソッド */
public int filter(
    resource $in,
    resource $out,
    int &$consumed,
    bool $closing
)
public void onClose()
public bool onCreate()

プロパティ

filtername

stream_filter_append で登録するフィルタの名前。

params

stream

目次