phprs 0.1.7

A PHP interpreter with build/package manager written in Rust
Documentation
//! PHP Runtime
//!
//! Main PHP runtime implementation

pub mod datetime;
pub mod extension;
pub mod filesystem;
pub mod globals;
pub mod hash;
pub mod http_stream;
pub mod ini;
pub mod math;
pub mod mbstring;
pub mod output;
pub mod pdo;
pub mod regex;
pub mod runtime;
pub mod sapi;
pub mod streams;
pub mod url;
pub mod variables;