从数据库中查找相同的IP并将其与一个结果相结合

时间:2016-05-15 15:22:51

标签: php mysql

我有一个名为“ips”的表,其中包含我的所有用户IP。 我想查找重复的帐户并为我报告。 我希望看到所有具有相同IP的用户,例如: “a”与“b”具有相同的ip,“c”具有与“d”相同的ip。 所以我想得到一个让我得到的查询 -

User 1: "a", User 2: "b", ip: 127.0.0.1
User 1: "c", User 2: "d", ip: 256.0.0.2

这样做的最佳查询是什么? (PHP / MySQL的)

1 个答案:

答案 0 :(得分:2)

怎么样

public function settings_picture_save(Request $request){
   $src = Input::get('quest_id');
       //get the base-64 from data
   //$base64_str = substr($myquest_id, strpos($myquest_id, ",")+1);
   $src = str_replace('data:image/png;base64,', '', $src);
   $src = str_replace(' ', '+', $src);

   //decode base64 string
   $image = base64_decode($src);
   $png_url = "product-".time().".png";
   $path = ('uploads/' . $png_url);

   //Image::make($image->getRealPath())->save($path);
   // write image
   $result = file_put_contents($path, $image); 
   echo json_encode('done');
}