← All docs

strcmp() — internals

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

strcmp() — internals

Where it lives

Lowering notes

  • Lowers a two-argument string builtin that directly delegates to a runtime helper.

Runtime helpers

The following runtime helpers are referenced:

  • __rt_explode

Signature summary

function strcmp(string $string1, string $string2): int

What the type checker enforces

  • Arity: takes exactly 2 arguments.

Eval interpreter (magician)

Cross-references