php substr(string_name,start_position,string_length_to_cut)

问题描述 投票:-4回答:1

substr(string_name, start_position, string_length_to_cut)中,如果我给string_length_to_cut大于string_name会发生什么,为什么?

php substr
1个回答
1
投票

文档here中概述了您的问题的答案。例子3。

echo substr('abcdef', 0, 8);  // abcdef

多余的长度只是用空格代替。

© www.soinside.com 2019 - 2024. All rights reserved.