Convert PHP file to binary

binary, php

Solution

Since PHP is a (relatively)portable language, compiling PHP source to bytecode instead of binary code is more preferable. For this purpose there is an experimental project called bcompiler.

Problem

Is it possible to convert a PHP file to binary and deploy it on a webserver?

Original source