|
mysqli_result::data_seekmysqli_data_seek結果の任意の行にポインタを移動する 説明オブジェクト指向型
public bool mysqli_result::data_seek(int
$offset )手続き型 bool mysqli_data_seek(mysqli_result
$result , int $offset )
mysqli_data_seek 関数は、
結果セットの任意の行 パラメータ
戻り値
成功した場合に 例例1 mysqli::data_seek の例 オブジェクト指向型
手続き型
上の例の出力は以下となります。 City: Benin City Countrycode: NGA 例2 繰り返し処理を行う際に、結果セットのポインタを調整する この関数は、 結果セットに対して処理を繰り返す時にカスタムの順序に並び替えたり、 結果セット全体に複数回処理を繰り返す時に、 結果セットを巻き戻すのに便利です。
上の例の出力は以下となります。 City: Acmbaro Countrycode: MEX City: Abuja Countrycode: NGA City: Abu Dhabi Countrycode: ARE City: Abottabad Countrycode: PAK City: Abottabad Countrycode: PAK City: Abu Dhabi Countrycode: ARE City: Abuja Countrycode: NGA City: Acmbaro Countrycode: MEX 注意
参考
|