関数・クラス解説

Ds\Set::slice

version:PECL ds >= 1.0.0 (公式)

Returns a sub-set of a given range

公式リファレンス

書式

public Ds\Set::slice ( int $index [, int $length ] ) : Ds\Set

説明

Creates a sub-set of a given range.

パラメータ

index
The index at which the sub-set starts. If positive, the set will start at that index in the set. If negative, the set will start that far from the end.
length
If a length is given and is positive, the resulting set will have up to that many values in it. If the length results in an overflow, only values up to the end of the set will be included. If a length is given and is negative, the set will stop that many values from the end. If a length is not provided, the resulting set will contain all values between the index and the end of the set.

返値

A sub-set of the given range.

サンプル

例1 Ds\Set::slice() example

$set = new \Ds\Set(["a", "b", "c", "d", "e"]); // Slice from 2 onwards print_r($set->slice(2)); // Slice from 1, for a length of 3 print_r($set->slice(1, 3)); // Slice from 1 onwards print_r($set->slice(1)); // Slice from 2 from the end onwards print_r($set->slice(-2)); // Slice from 1 to 1 from the end print_r($set->slice(1, -1));

上の例の出力は、たとえば以下のようになります。

Ds\Set Object ( [0] => c [1] => d [2] => e ) Ds\Set Object ( [0] => b [1] => c [2] => d ) Ds\Set Object ( [0] => b [1] => c [2] => d [3] => e ) Ds\Set Object ( [0] => d [1] => e ) Ds\Set Object ( [0] => b [1] => c [2] => d )

ワード検索


※入力キーワードが、関数名・説明文・タグに含まれるものを検索

関数名アルファベット別

A B C D E F G H I J
K L M N O P Q R S T
U V W X Y Z _

最終更新一覧

stristr
 大文字小文字を区別せず文字列を検索し、ヒット箇所以降(あるいは以前)の文字列を返却

stripslashes
 バックスラッシュでエスケープされた文字列から、バックスラッシュを取り除く

stripos
 大文字小文字を区別せずに文字列が最初に現れる位置を取得する

stripcslashes
 addcslashes() でクォートされた文字列をアンクォートする

strip_tags
 文字列から HTML と PHP のタグを除去して返却

strcspn
 指定した文字が最初に現れる位置を調べる

strcoll
 ロケールに基づいて2つの文字列を比較し同じか(あるいは大小)を判定する

strcmp
 2つの文字列を比較し同じか(あるいは大小)を判定する

strchr
 strstr() のエイリアス

strcasecmp
 2つの文字列を比較(大文字小文字を区別せず同じとみなす)

カテゴリー一覧

PHP の振る舞いの変更
音声フォーマットの操作
認証サービス
コマンドライン関連
圧縮およびアーカイブ
暗号
データベース関連
日付および時刻関連
ファイルシステム
自然言語および文字エンコーディング
画像処理および作成
メール関連
数学
テキスト以外の MIME 型
プロセス制御
その他の基本モジュール
その他のサービス
検索エンジン用の拡張モジュール
サーバー固有のモジュール
セッション関連
テキスト処理
変数・データ型関連
ウェブサービス
Windows 用のモジュール
XML 操作
GUI用の拡張モジュール