A facility to manage possibly persistent resources with a comprehensible API.
Provides simliar functionality like the zend_list API, but with more flexiblity
and freedom.
php70+ specific version only.
A compatible Threading API for PHP5.3+
QB stands for Quick Binary. It's a PHP extension designed to enable faster
handling of binary data. It takes a function written in PHP and translate it
for a specialized virtual machine. The use of static type information leads
significantly higher performance than under PHP regular dynamic type system.
A PHP+QB function can run anywhere from five to twenty times faster than
regular PHP code. For even higher level of performance, one can compile PHP+QB
functions to native code (on supported platforms).
QB performs code translation on a per-function basis. It does not affect in
anyway code not specially marked. Interaction between PHP+QB functions and
regular PHP code is basically seamless. A key design objective of QB is to
let developers harness greater processing power than what baseline PHP offers
without the risk involved in adopting a brand new platform.
A facility to manage possibly persistent resources with a comprehensible API.
Provides simliar functionality like the zend_list API, but with more flexiblity
and freedom.
A facility to manage possibly persistent resources with a comprehensible API.
Provides simliar functionality like the zend_list API, but with more flexiblity
and freedom.
The runkit extension provides means to modify constants, user-defined
functions, and user-defined classes. It also provides for custom superglobal
variables and embeddable sub-interpreters via sandboxing.
LCOV is a graphical front-end for GCC's coverage testing tool gcov. It collects
gcov data for multiple source files and creates HTML pages containing the
source code annotated with coverage information. It also adds overview pages
for easy navigation within the file structure.
The scream extension gives the possibility to disable the silencing error
control operator (aka The At Sign: '@') so all errors are being reported.
This feature is controlled by an ini setting.
This is an implementation of double-array structure for representing trie,
as proposed by Junichi Aoe.
Trie is a kind of digital search tree, an efficient indexing method with
O(1) time complexity for searching. Comparably as efficient as hashing,
trie also provides flexibility on incremental matching and key spelling
manipulation. This makes it ideal for lexical analyzers, as well as
spelling dictionaries.
libDSP is C++ class library of common digital signal processing functions.