← All docs

str_repeat() — internals

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

str_repeat() — internals

Where it lives

Lowering notes

  • Lowers str_repeat(string, times) through the shared runtime helper.

Runtime helpers

The following runtime helpers are referenced:

  • __rt_str_repeat

Signature summary

function str_repeat(string $string, int $times): string

What the type checker enforces

  • Arity: takes exactly 2 arguments.

Eval interpreter (magician)

Cross-references