elephc elephc
HomeHow it worksFeaturesResourcesDocs
Home How it works Features Resources Docs

Getting Started

  • Installation
  • Your First Program

How-To

  • Build a Fiber Web Server

Compiling

  • Compiling Overview
  • The compilation pipeline
  • CLI reference
  • Targets and cross-compilation
  • Optimization and codegen controls
  • Output formats and diagnostics
  • Source maps
  • Linking, heap, and conditional compilation

PHP Syntax

  • Types
  • Operators
  • Control Structures
  • Functions
  • Strings
  • Regex
  • Arrays
  • Math
  • Classes
  • SPL
  • Namespaces
  • System & I/O
  • Streams
  • Magic Constants
  • Fibers
  • Generators
  • PDO (Databases)
  • Date and Time
  • Images
  • Calendar
  • Builtins

    • Builtins
    • Array builtins
    • Buffer builtins
    • Class builtins
    • Date builtins
    • Filesystem builtins
    • IO builtins
      • closedir()
      • fclose()
      • fdatasync()
      • feof()
      • fflush()
      • fgetc()
      • fgetcsv()
      • fgets()
      • file()
      • file_get_contents()
      • file_put_contents()
      • flock()
      • fopen()
      • fpassthru()
      • fprintf()
      • fputcsv()
      • fread()
      • fscanf()
      • fseek()
      • fstat()
      • fsync()
      • ftell()
      • ftruncate()
      • fwrite()
      • gethostbyaddr()
      • gethostbyname()
      • gethostname()
      • getprotobyname()
      • getprotobynumber()
      • getservbyname()
      • getservbyport()
      • hash_file()
      • opendir()
      • readdir()
      • rewind()
      • rewinddir()
      • stream_bucket_make_writeable()
      • stream_bucket_new()
      • stream_context_create()
      • stream_context_get_default()
      • stream_context_get_options()
      • stream_context_get_params()
      • stream_context_set_default()
      • stream_context_set_option()
      • stream_context_set_params()
      • stream_copy_to_stream()
      • stream_filter_register()
      • stream_filter_remove()
      • stream_get_contents()
      • stream_get_filters()
      • stream_get_line()
      • stream_get_meta_data()
      • stream_get_transports()
      • stream_get_wrappers()
      • stream_is_local()
      • stream_isatty()
      • stream_resolve_include_path()
      • stream_select()
      • stream_set_blocking()
      • stream_set_chunk_size()
      • stream_set_read_buffer()
      • stream_set_timeout()
      • stream_set_write_buffer()
      • stream_socket_accept()
      • stream_socket_client()
      • stream_socket_enable_crypto()
      • stream_socket_get_name()
      • stream_socket_pair()
      • stream_socket_recvfrom()
      • stream_socket_sendto()
      • stream_socket_server()
      • stream_socket_shutdown()
      • stream_supports_lock()
      • stream_wrapper_register()
      • stream_wrapper_restore()
      • stream_wrapper_unregister()
      • vfprintf()
    • JSON builtins
    • Math builtins
    • Misc builtins
    • Pointer builtins
    • Process builtins
    • Regex builtins
    • SPL builtins
    • Streams builtins
    • String builtins
    • Type builtins

Beyond PHP

  • Pointers
  • Buffers
  • Packed Classes
  • FFI & Extern
  • Conditional Compilation
  • Shared Libraries (cdylib)
  • Web Server (--web)
  • zval Bridge

Compiler Internals

  • What is a Compiler?
  • The Pipeline
  • The Lexer
  • The Parser
  • The Type Checker
  • The Optimizer
  • The Code Generator
  • The Runtime
  • Memory Model
  • Architecture
  • ARM64 Assembly
  • ARM64 Instructions
  • The EIR Design
  • Builtins

    • _internal builtins
    • array builtins
    • buffer builtins
    • class builtins
    • date builtins
    • filesystem builtins
    • io builtins
    • json builtins
    • math builtins
    • misc builtins
    • pointer builtins
    • process builtins
    • regex builtins
    • spl builtins
    • streams builtins
    • string builtins
    • type builtins
← All docs

stream_filter_remove()

Removes a filter from a stream.

stream_filter_remove()

function stream_filter_remove(resource $stream_filter): bool

Removes a filter from a stream.

Parameters:

  • $stream_filter (resource)

Returns: bool

No examples yet — check examples/ and showcases/ for usage patterns.

Internals

For how stream_filter_remove is implemented in the compiler, see the internals page.

Previous

stream_filter_register()

Next

stream_get_contents()