【PHPメモ】fetchとfetchAllの違い

目次

fetch

あわせて読みたい
PHP: Memcached::fetch - Manual PHP is a popular general-purpose scripting language that powers everything from your blog to the most popular websites in the world.

Memcached::fetch() は、直近のリクエストから次の結果を取得します。

// (例)
// クエリ結果の値を取得
$result = $stmt->fetch(PDO::FETCH_ASSOC);

fetchAll

あわせて読みたい
PHP: Memcached::fetchAll - Manual PHP is a popular general-purpose scripting language that powers everything from your blog to the most popular websites in the world.

Memcached::fetchAll() は、 直近のリクエストで残っているすべての結果を返します。

// (例)    
if($stmt){
  // クエリ結果の全データを返却
  return $stmt->fetchAll();
}else{
  return false;
}

この記事が気に入ったら
フォローしてね!

よかったらシェアしてね!
  • URLをコピーしました!
  • URLをコピーしました!

コメント

コメントする

CAPTCHA


目次