目次
fetch
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;
}
コメント