php中如何获取字符串的一部分?

发布于 2024-12-08 12:00:38 字数 190 浏览 1 评论 0原文

我有一个返回字符串 "_" 的函数。 $mime_type 。默认为“.jpg”。 如果输出字符串返回例如 "_jpg.jpg" 我想删除 "_" 和最后一部分 ".jpg"。因此,返回字符串 "jpg"。我应该使用什么 php 函数?

I have a function that returns a string "_" . $mime_type . ".jpg" by default.
If the output string returns for example "_jpg.jpg" I want to remove the "_" and the last part ".jpg". Thus, returning the string "jpg". What php function should I use?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

爱殇璃 2024-12-15 12:00:38
$old_string = "_jpg.jpg";
preg_match('/_(.*)\./', $old_string, $matches);
if (!empty($matches)) $new_string = $matches[1];
$old_string = "_jpg.jpg";
preg_match('/_(.*)\./', $old_string, $matches);
if (!empty($matches)) $new_string = $matches[1];
2024-12-15 12:00:38

我认为 preg_match() 是正确的选择

I think preg_match() is the way to go

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文