July 4, 2026
PHP? More like Pretty Hype Project
My AI-built PHP engine in Rust passes 17% of PHP-src tests, renders WordPress
AI made a fake PHP brain that runs WordPress, and the comments are split between awe and eye-rolls
TLDR: An AI-assisted project built a from-scratch PHP engine in Rust that already runs WordPress and passes 17% of PHP’s official tests. Commenters are torn between being impressed by the progress and mocking it as unfinished hype, with some saying only 100% would really matter.
A coder built a brand-new engine for running PHP — the language behind WordPress — without using PHP’s own code, and the wildest part is that he says he mostly just told an AI helper, “looks good, continue.” The project, called Phargo, now passes 17.4% of PHP’s giant official test suite and can spit out a working WordPress homepage. For some readers, that’s the kind of chaotic 2026 energy they signed up for. For others, it’s the software equivalent of showing up to a marathon and proudly announcing you’ve finished the parking lot.
The comment section instantly turned into a courtroom. One camp was genuinely impressed that “some vibe code” got this far at all, especially with the author openly admitting he doesn’t really know Rust, the programming language used here, or the deep internals of PHP. The author leaned hard into that honesty, saying the real experiment is whether an AI can be steered by tough outside tests instead of grading itself. That transparency won points.
But the skeptics came loaded. One blunt reaction basically said: 17%? Cute. Come back at 100%. Another suggested this might be the ceiling for large language models, the text-predicting AI systems writing the code, period. The funniest twist? A huge batch of failures turned out not to be deep programming problems at all, but invisible line breaks. So yes, the robot coder got dragged, the measuring stick got exposed as a liar, and the crowd still can’t decide whether this is a breakthrough or just a very expensive magic trick.
Key Points
- •The article says Phargo is a PHP interpreter written from scratch in Rust with AI-generated code and no reused PHP source code.
- •Phargo reportedly rendered a WordPress front page backed by SQLite, which the author presents as a practical milestone.
- •The project uses PHP’s upstream php-src test suite of 22,037 tests as its primary benchmark rather than relying on self-authored demos or tests.
- •The reported result is 3,844 passing tests, or 17.4% of the full suite, with the author estimating a realistic ceiling of 40–45% because many tests cover out-of-scope C extensions.
- •An early pass-rate plateau was traced to a test harness bug involving Windows CRLF line endings; after adding normalization to match PHP’s run-tests.php, hundreds of tests passed immediately.