feat: 联系我们 - 客户服务

This commit is contained in:
2025-04-21 17:30:50 +08:00
committed by jsasg
parent e18d39247f
commit be48d8a951
6 changed files with 202 additions and 0 deletions

View File

@@ -1,2 +1,15 @@
<?php
// 这是系统自动生成的公共文件
if (!function_exists('str_contains')) {
/**
* 检查字符串是否包含子字符串
* @param string $haystack 要搜索的字符串
* @param string $needle 要搜索的子字符串
* @return bool
*/
function str_contains(string $haystack, string $needle): bool
{
return \think\helper\Str::contains($haystack, $needle);
}
}