← All docs

vfprintf() — internals

Compiler internals for vfprintf(): lowering path, type checks, and runtime helpers.

vfprintf() — internals

Where it lives

Lowering notes

  • Lowers vfprintf(stream, format, values) through __rt_vsprintf then fwrite.

Runtime helpers

The following runtime helpers are referenced:

  • __rt_fwrite
  • __rt_vsprintf

Signature summary

function vfprintf(resource $stream, string $format, array $values): int

What the type checker enforces

  • Arity: takes exactly 3 arguments.

Eval interpreter (magician)

Cross-references