PHP:将字符串修剪为一定数量的字符时使用什么方法?
if (strlen($filename) > 70) { //将字符串修剪为 70 个字符 //删除开头的字符! 。
我用什么方法
问候马特
if (strlen($filename) > 70) {
//trim the string to 70 chars
//delete chars from the beginning!
}
what method do i use.
regards matt
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从字符串中获取最后一个字符:
前 70 个字符:
但是,当然,您可以检查 php 文档更多信息。
to get the last chars from a string:
first 70 chars:
but, of course, you could check php docs for more info.