summaryrefslogtreecommitdiff
path: root/include/functions.php
diff options
context:
space:
mode:
authorwn_ <invalid@email.com>2024-11-23 18:23:49 +0000
committerwn_ <invalid@email.com>2024-11-24 13:59:29 +0000
commit667528d5b927f0f284a067b0e24c9ca7f26c28a4 (patch)
treef28c7ece3584a7852b6562020246b1de6167774e /include/functions.php
parent53fee911e6a39a5c8504d03d1f114a131d00784c (diff)
Use PHP 8 'str_' functions.
A few more characters in some places, but helps with readability.
Diffstat (limited to 'include/functions.php')
-rw-r--r--include/functions.php6
1 files changed, 1 insertions, 5 deletions
diff --git a/include/functions.php b/include/functions.php
index 95d31b248..5e906a977 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -279,11 +279,7 @@
}
function with_trailing_slash(string $str) : string {
- if (substr($str, -1) === "/") {
- return $str;
- } else {
- return "$str/";
- }
+ return str_ends_with($str, '/') ? $str : "$str/";
}
function make_password(int $length = 12): string {