function getNumbersBeforeChar($string, $char) { $pattern = '/(d+)(?=' . preg_quote($char) . ')/'; preg_match($pattern, $string, $matches); return isset($matches[1]) ? $matches[1] : ''; } // 示例使用 $string = '123abc'; $char = 'a'; $result = getNumbersBeforeChar($string, $char); echo $result; // 输出: 123
本文地址:https://www.moyublog.com/notes/1206.html
加入我们:微信:搜索“Moyu-Blog” 帝国CMS模板客户群:QQ二群---909235407 QQ一群(已满)---106997031
版权声明:本文采用[BY-NC-SA]协议进行授权,如无特别说明,转载请注明本文地址!