Funções para Control de Saída

Veja Também

Veja também header() e setcookie().

Índice

  • flush — Flush system output buffer
  • ob_clean — Limpa (apaga) o conteúdo do buffer de saída ativo
  • ob_end_clean — Clean (erase) the contents of the active output buffer and turn it off
  • ob_end_flush — Flush (send) the return value of the active output handler and turn the active output buffer off
  • ob_flush — Descarrega (envia) o valor de retorno do manipulador de saída ativo
  • ob_get_clean — Get the contents of the active output buffer and turn it off
  • ob_get_contents — Retorna o conteúdo do buffer de saída
  • ob_get_flush — Flush (send) the return value of the active output handler, return the contents of the active output buffer and turn it off
  • ob_get_length — Retorna o comprimento do buffer de saída
  • ob_get_level — Return the nesting level of the output buffering mechanism
  • ob_get_status — Get status of output buffers
  • ob_implicit_flush — Turn implicit flush on/off
  • ob_list_handlers — List all output handlers in use
  • ob_start — Ativa o buffer de saída
  • output_add_rewrite_var — Add URL rewriter values
  • output_reset_rewrite_vars — Reset URL rewriter values
To Top