aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-php-shim
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe-php-shim')
-rw-r--r--crates/shirabe-php-shim/src/lib.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs
index 99ab4f0..b4a9a74 100644
--- a/crates/shirabe-php-shim/src/lib.rs
+++ b/crates/shirabe-php-shim/src/lib.rs
@@ -870,6 +870,18 @@ pub fn str_starts_with(haystack: &str, needle: &str) -> bool {
pub const DATE_ATOM: &str = "Y-m-d\\TH:i:sP";
+pub fn ucfirst(s: &str) -> String {
+ todo!()
+}
+
+pub fn is_scalar(value: &PhpMixed) -> bool {
+ todo!()
+}
+
+pub fn strval(value: &PhpMixed) -> String {
+ todo!()
+}
+
pub fn usleep(microseconds: u64) {
todo!()
}