← All docs

isset() — internals

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

isset() — internals

Where it lives

Lowering notes

  • Lowers isset() for values already evaluated by the EIR frontend.

Runtime helpers

No direct __rt_* helpers captured — the lowering is inlined or routes through another builtin.

Signature summary

function isset(mixed $var, ...$vars): bool

What the type checker enforces

  • Arity: takes exactly 1 argument.
  • Variadic: collects excess arguments into $vars.

Eval interpreter (magician)

Cross-references