Skip to content

Language: closure use($this) compiles — Zend "Cannot use $this as lexical variable" (Zend/zend_compile.c) #32152

Description

@PurHur

Category

language · php-src-strict · closures · compile-time fatal

Problem

php-src rejects function () use ($this) at compile time. This compiler accepts the closure, so illegal programs run and print instead of aborting. VM and JIT both take the accept path.

Repro Zend 8.2+ VM/JIT (2026-08-18 @ 8d228396dc)
$f = function () use ($this) { return 1; }; echo "accepted\n"; Fatal: Cannot use $this as lexical variable (rc=255) accepted (rc=0)

$this is already bound in instance methods; use ($this) is never legal. Silent accept is a php-src-strict miss, not an error-text nit.

php-src reference

PHP implementation target

  • lib/ closure compile (php-cfg → opcode) — when a use name is $this, emit Zend's compile fatal and abort
  • Same path for JIT/AOT; no new runtime/*.c logic

Repro

./script/docker-exec.sh -- bash -lc 'php bin/vm.php test/repro/maintainer_gap_use_this.php 2>&1 | head -5'
./script/docker-exec.sh -- bash -lc 'php bin/jit.php test/repro/maintainer_gap_use_this.php 2>&1 | head -5'

Done when

  • VM and JIT compile-abort with Zend substring Cannot use $this as lexical variable (rc≠0, no accepted output)
  • Compliance .phpt guard under test/compliance/cases/language/closure_use_this*.phpt
  • php-src-strict; no php-compiler-strict shortcut

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    area:compilerCompiler / CFG / JITarea:vmVirtual machinebugSomething isn't workingimplementation-readySpec complete: repro, php-src ref, done-when — safe for workers to claimphase-2:languagePhase 2 – language features

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions