← All docs

define() — internals

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

define() — internals

Where it lives

Lowering notes

  • Lowers define("NAME", value) with the duplicate-name runtime guard.

Runtime helpers

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

Signature summary

function define(string $constant_name, mixed $value): bool

What the type checker enforces

  • Arity: takes exactly 2 arguments.

Eval interpreter (magician)

Cross-references