asklinux / zephir

Zephir is a compiled high level language aimed to the creation of C-extensions for PHP

Home Page:https://zephir-lang.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Zephir

Latest Stable Version Total Downloads License Build on Linux Build on Windows

Zephir - Ze(nd Engine) Ph(p) I(nt)r(mediate) - is a high level language that eases the creation and maintainability of extensions for PHP. Zephir extensions are exported to C code that can be compiled and optimized by major C compilers such as gcc/clang/vc++. Functionality is exposed to the PHP language.

Main features:

  • Both dynamic/static typing
  • Reduced execution overhead compared with full interpretation
  • Restricted procedural programming, promoting OOP
  • Memory safety
  • Ahead-of-time (AOT) compiler to provide predictable performance

Compiler design goals:

  • Multi-pass compilation
  • Type speculation/inference
  • Allow runtime profile-guided optimizations, pseudo-constant propagation and indirect/virtual function inlining

Requirements

  • re2c >= 0.13.6
  • Zephir Parser >= 1.1.0
  • A C compiler such as gcc >= 4.4 or an alternative such as clang >= 3.0, Visual C++ >= 11 or Intel C++. It is recommended to use gcc 4.4 or later
  • GNU make >= 3.81
  • automake
  • PHP development headers and tools
  • The build-essential package when using gcc on Ubuntu (and likely other distros as well)

Installation

NOTE: The development branch will always contain the latest unstable version. If you wish to check older versions or formal, tagged release, please switch to the relevant branch/tag.

Windows

To install Zephir on Windows follow this guide.

Linux | macOS | BSD | Solaris

Git way

Clone Zephir repository.

Then, install Zephir by using command ./install from project root dir. For global installation add -c flag.

Composer way

You can install Zephir using composer.

To get Zephir, run composer require phalcon/zephir.

Additional notes on Ubuntu

The following packages are needed in Ubuntu:

  • apt-get install re2c libpcre3-dev

Usage

Compile the extension:

zephir compile

External Links

Contributing

See CONTRIBUTING.md for details about contributions to this repository.

License

Zephir is open-sourced software licensed under the MIT License. See the LICENSE file for more information.

About

Zephir is a compiled high level language aimed to the creation of C-extensions for PHP

https://zephir-lang.com/

License:MIT License


Languages

Language:PHP 55.2%Language:C 37.2%Language:Zephir 5.2%Language:C++ 1.4%Language:HTML 0.4%Language:CSS 0.2%Language:M4 0.2%Language:Shell 0.2%Language:JavaScript 0.1%Language:Batchfile 0.0%