• 2022-06-11
    从字符串“hello-world”中获取world,以下哪个方法正确
    A: substr("hello-world",6);
    B: substr("hello-world",6,5);
    C: substr("hello-world",-5,5);
    D: substr("hello-world",-5);