Problem
No file I/O builtins. Web apps read HTML templates and config files.
Goal
Read-only file access safe for compiled binaries.
Tasks
Security
Document that AOT binaries embed filesystem access—deploy carefully.
Acceptance criteria
echo file_get_contents(__DIR__.'/template.html'); works when file exists beside script.
Problem
No file I/O builtins. Web apps read HTML templates and config files.
Goal
Read-only file access safe for compiled binaries.
Tasks
file_get_contents(string $path): string— VM + JITreadfilefor streaming static assets (optional)test/fixtures/Security
Document that AOT binaries embed filesystem access—deploy carefully.
Acceptance criteria
echo file_get_contents(__DIR__.'/template.html');works when file exists beside script.