-3

如何将 120 个字符的字符串截断为 100 个字符,但长度的计数从字符串的末尾开始?以便从字符串的开头而不是结尾删除 20 个字符?

4

6 回答 6

2

$newString = substr($oldString, -100) 将返回字符串的最后 100 个字符(或者false如果字符串较短)。

于 2013-03-28T04:58:45.100 回答
1

使用子字符串

$newline = substr($oldline, 20);

或者

$newline = substr($oldline, -100);
于 2013-03-28T04:56:44.933 回答
0

substr()

$shortString = substr($string, 20);
于 2013-03-28T04:57:53.210 回答
0

让我建议从头开始。如果您已经知道这将是 100 个字符:

   $string=substr($yourstring,-100);
于 2013-03-28T04:59:40.537 回答
0

你可以使用substr函数

$str = "Hello How are you?"
$str2 = substr($str, 5); // "How are you?"

前 20 个字符

$string = substr($str,20);
于 2013-03-28T04:57:27.863 回答
0

只需substr在 PHP
http://php.net/manual/en/function.substr.php中使用

substr("abcdef", 20); // "abc.." is of course an example string. 
                      // this sets it to position start of 20 from left.
于 2013-03-28T04:57:36.507 回答