JPHP is a new implementation for PHP which uses the Java VM. It supports many features of the PHP language (5.6+).
How does it work? JPHP is a compiler like javac
, it compiles php sources to JVM bytecode and then
can execute the result on the Java VM.
JPHP is not a replacement for the Zend PHP engine or Facebook HHVM. We don’t plan to implement the zend runtime libraries (e.g. Curl, PRCE, etc.) for JPHP.
Our project started in October 2013. There were a few reasons for that:
- Ability to use java libraries in PHP
- Upgrading performance via JIT and JVM
- Replacing the ugly runtime library of Zend PHP with a better runtime library.
- Using the PHP language not only on the web
- Also: unicode for strings and threads
- JIT (1x - 10x faster PHP 5.5), Optimizer (constant expressions, inline functions, etc.)
- Using java libraries and classes in PHP code.
- Unicode for strings (UTF-16, like in Java)
- Threading, Sockets, Environment architecture (like sandbox objects in runkit zend extension).
- GUI (based on Swing, improved - more flexible layouts)
- Embedded cache system for classes and functions
- Optional Hot Reloading for classes and functions
- Ability to use on Android OS
What JPHP does not yet support?
- Importing namespaced functions (php 5.6)
- Wiki here: read
- You can find the latest api documentation here: http://jphp-docs.readthedocs.org/
- To contribute to the api documentation, you can fork the
docs
project: https://github.com/jphp-compiler/docs
https://github.com/jphp-compiler/jphp/wiki/Getting-started
Это компилятор и движок для языка PHP под Java VM. Он полностью работает на Java, исходный код php компилируется в байткод JVM, который подвергается оптимизациям и JIT. Если вы знакомы с проектами JRuby, Jython и т.д., то JPHP это то же самое, только для PHP. Поддерживаются почти все фичи PHP 5.6+.
Основное отличие от PHP это отказ от использования несогласованных runtime библиотек и расширений. Язык тот же, а библиотеки для него другие, с использованием ООП и т.д.
Больше информации о разработке вы найдете по следующим ссылкам:
- http://habrahabr.ru/post/216651/
- http://develnet.ru/tag/jphp/
- http://community.develstudio.ru/showthread.php/9411-JPHP-Блог-разработки
На данный момент вы можете собрать JAR файл с исходниками php, который будет выполняться с помощью JPHP. Загляните
в папку jphp-example-project
, этот проект можно собрать в выполняемый jar файл, который можно запустить по двойному клику в Windows, если у вас установлена Java. Для сборки проекта вам понадобится Gradle. Используйте стандартную команду gradle jar
или если хотите сразу посмотреть результат jphp-example-project
выполните gradle exampleStart
.
К тому же проект для примера настраивается через файл resources/JPHP-INF/launcher.conf
, где можно поменять bootstrap.file
на другой файл (например bootstrap_gui.php
, bootstrap_server.php
- это различные независимые примеры программ на JPHP).