PHP变量substr()中的长度未执行

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

我有一个新手级别的问题,但这是骗我的。我在PHP中使用substr()并在PHP变量中传递字符串文本和长度。

不知何故,长度部分没有作为php变量执行到此函数中。我能否对此有所了解以及如何执行此操作。

$display_string = substr($video_topics,$display_length);其中$video_topics是主要字符串,$display_length是未执行的整数。

php string substr
1个回答
0
投票

从变量名称猜测,你想要的可能是:

$display_string = substr($video_topics, 0, $display_length);

第二个参数是偏移量,第三个参数是长度。

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