我有一个新手级别的问题,但这是骗我的。我在PHP中使用substr()并在PHP变量中传递字符串文本和长度。
不知何故,长度部分没有作为php变量执行到此函数中。我能否对此有所了解以及如何执行此操作。
$display_string = substr($video_topics,$display_length);
其中$video_topics
是主要字符串,$display_length
是未执行的整数。
从变量名称猜测,你想要的可能是:
$display_string = substr($video_topics, 0, $display_length);
第二个参数是偏移量,第三个参数是长度。