ext-php-rs 0.5.0

Bindings for the Zend API to build PHP extensions natively in Rust.
Documentation
1
2
3
4
5
6
7
8
9
//! Represents an integer introduced in PHP. Note that the size of this integer differs.
//! On a 32-bit system, a ZendLong is 32-bits, while on a 64-bit system it is 64-bits.

use crate::bindings::zend_long;

/// Internal identifier used for a long.
/// The size depends on the system architecture. On 32-bit systems,
/// a ZendLong is 32-bits, while on a 64-bit system it is 64-bits.
pub type ZendLong = zend_long;