aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-php-shim/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe-php-shim/src/lib.rs')
-rw-r--r--crates/shirabe-php-shim/src/lib.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs
index b0f1c6c..62510f8 100644
--- a/crates/shirabe-php-shim/src/lib.rs
+++ b/crates/shirabe-php-shim/src/lib.rs
@@ -730,3 +730,19 @@ pub const GLOB_BRACE: i64 = 4096;
pub fn glob_with_flags(pattern: &str, flags: i64) -> Vec<String> {
todo!()
}
+
+pub fn time() -> i64 {
+ todo!()
+}
+
+pub fn date(format: &str, timestamp: Option<i64>) -> String {
+ todo!()
+}
+
+pub fn trigger_error(message: &str, error_level: i64) {
+ todo!()
+}
+
+pub fn sys_get_temp_dir() -> String {
+ todo!()
+}