-
- //by bbs.it-home.org
- $rest = substr("abcdef", 1); // "bcdef"
- echo を返します 'substr("abcdef", 1) は ' を返します。 $残り 。 "
"; - $rest = substr("abcdef", 1, 3); // "bcd" を返します
- echo 'substr("abcdef", 1, 3) は ' を返します。 $残り 。 "
"; - $rest = substr("abcdef", -1); // "f"
- echo を返します 'substr("abcdef", -1) は ' を返します。 $残り 。 "
"; - $rest = substr("abcdef", -2); // "ef"
- echo を返します 'substr("abcdef", -2) は ' を返します。 $残り 。 "
"; - $rest = substr("abcdef", -3, 1); // "d"
- echo を返します 'substr("abcdef", -3, 1) は ' を返します。 $残り 。 "
"; - $rest = substr("abcdef", 1, -1); // "bcde"
- echo を返します 'substr("abcdef", 1, -1) は ' を返します。 $残り 。 "
";
- ?>
-
复制暗号
その他の内容、php ハンド内の function.substr.html を参照。
|