转 PHP在JVM上的实现JPHP
前两天还在想,像Quercus只封装了PHP在Java上的Web接口,有没有 实现 了完整的JVM语言特性的东东,这不,来了。 JPHP是一个面向Java虚拟机的PHP 实现 ,支持PHP(5.3+)的很多特性。JPHP负责将PHP源代码编译为JVM字节码,使其能够运行在JVM上,这一点和JRuby
前两天还在想,像Quercus只封装了PHP在Java上的Web接口,有没有实现了完整的JVM语言特性的东东,这不,来了。
JPHP是一个面向Java虚拟机的PHP实现,支持PHP(5.3+)的很多特性。JPHP负责将PHP源代码编译为JVM字节码,使其能够运行在JVM上,这一点和JRuby、Jython等实现类似。它支持JDK 1.6及以上版本。该项目发起于去年10月。
JPHP无意替代Zend PHP引擎或Facebook HHVM(HHVM的思路是将PHP编译为一种中间字节码,再通过JIT将字节码编译为x64机器码)。出于以下原因,设计者不打算为JPHP实现Zend运行时库(如Curl、PRCE等):
- 能够在PHP中使用Java类库
- 通过JIT和JVM提升性能
- 使用更好的运行时库替换Zend PHP丑陋的运行时库
- 将PHP语言的使用范围扩充到Web之外
- JVM对Unicode字符串和线程支持更好
JPHP有如下功能:
- JIT(比PHP 5.4快2-10倍)
- 优化器(优化常量表达式、内联函数等)
- 可以在PHP代码中使用Java的类库和类
- Unicode字符串(类似Java中的UTF-16)
- 线程、套接字
- 环境架构(类似runkit zend扩展中的沙盒对象)
- 支持GUI,基于Swing实现而且有所改进,提供了更为灵活的布局
- 面向类和函数的内嵌缓存系统
- 面向类和函数的可选热更新(Optional Hot Reloading)机制
语言方面的特性包括:
- 完全支持PHP 5.2+(包括OOP)
- 闭包(PHP 5.3),在闭包中自动绑定$this(PHP 5.4)
- 完全支持命名空间(PHP 5.3)
- 类的spl自动加载(PHP 5.3)
- Iterators、ArrayAccess和Serializable
- 类、数组和callable的类型约束(PHP 5.4)
- 数组短语法(PHP 5.4)
- 针对循环引用的GC(PHP 5.3)
更多特性可以查看该项目的README文件。
此外,JPHP还提供了一些PHP不支持的特性,比如在__toString方法中可以使用异常、对标量的类型约束等。
JPHP并非改进PHP性能的第一次尝试,到底效果如何,我们拭目以待。感兴趣的读者可以下载并动手尝试一下
写GUI:
<span>php namespace { </span><span>use</span> php\lang\<span>System</span><span>; </span><span>use</span><span> php\lang\Thread; </span><span>use</span><span> php\swing\SwingUtilities; </span><span>use</span><span> php\swing\UIForm; </span><span>use</span><span> php\swing\UIManager; </span><span>use</span><span> php\swing\UIProgress; UIManager</span>::setLookAndFeel(UIManager::<span>getSystemLookAndFeel()); SwingUtilities</span>::invokeLater(<span>function</span><span>(){ </span><span>$form</span> = <span>new</span><span> UIForm(); </span><span>$form</span>->size = [500, 500<span>]; </span><span>$form</span>-><span>moveToCenter(); </span><span>$form</span>->visible = <span>true</span><span>; </span><span>$p</span> = <span>new</span><span> UIProgress(); </span><span>$p</span>->size = [300, 40<span>]; </span><span>$p</span>->position = [100, 100<span>]; </span><span>$p</span>->value = 50<span>; </span><span>$form</span>->add(<span>$p</span><span>); </span><span>$form</span>->on('windowClosing', <span>function</span><span>(){ </span><span>System</span>::halt(0<span>); }); }); }</span>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
