Tushar Vasudev
Tushar Vasudev

Reputation: 104

What will happen if we use unsupported php in hhvm?

What will happen if we use unsupported php in hhvm. Does the code run but we don't get JIT compilation's speed improvement or we will get an error and our code will not work?

Upvotes: 0

Views: 52

Answers (1)

user3477804
user3477804

Reputation:

The code will not work. The JIT isn't an addition to an existing PHP implementation. HHVM is a completely separate implementation, including differences in what will and won't run.

Upvotes: 1

Related Questions