aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-php-shim/src/apcu.rs
blob: 699f66e207aba72a7bb13fe8b0882192d41f1569 (plain)
1
2
3
4
5
6
7
8
9
10
11
use crate::PhpMixed;

pub fn apcu_add(key: &str, var: PhpMixed) -> bool {
    let _ = (key, var);
    todo!()
}

pub fn apcu_fetch(key: &str, success: &mut bool) -> PhpMixed {
    let _ = (key, success);
    todo!()
}