douping3427 2016-04-03 03:48
浏览 12
已采纳

将值设置为变量

How can one set the device_token field in the below php statement to a variable named $token?

result = query("SELECT device_token, IdPhoto, IdUser FROM photos ORDER BY IdPhoto DESC LIMIT 1") ;

Based off of the w3schools SQL documentation: The WHERE clause is used to extract only those records that fulfill a specified criterion. How can that be used in the above code?

http://www.w3schools.com/sql/sql_where.asp

  • 写回答

1条回答 默认 最新

  • dte8665 2016-04-03 09:18
    关注

    In order to get a specific token you need a WHERE clause and a specific userid.

    $id = 1; //You may get this from a form/session you created for login user    
    $dbh = new PDO('mysql:host=localhost;dbname=dbname', 'root', 'password');    
    $result = $dbh->query("SELECT device_token, IdPhoto, IdUser 
                           FROM photos WHERE IdUser='$id' 
                           ORDER BY IdPhoto DESC LIMIT 1");
    $devicetoken = $result->fetch(PDO::FETCH_ASSOC);
    
    echo $devicetoken['device_token'];
    

    But if you don't need a specific token and want to return all the tokens, you don't need WHERE clause and LIMIT. However, LIMIT gives you the options for changing the number of rows the statement would return.

    $result = $dbh->query("SELECT device_token, IdPhoto, IdUser 
                           FROM photos
                           ORDER BY IdPhoto DESC");
    $token = $result->fetch(PDO::FETCH_ASSOC);//store the device token here in $token
    

    Now devicetoken contains an array of all the device_token. You can access each one of them using foreach loop and and while:

     foreach($token as $key=>$val){
          echo $val.'<br>';
     }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 为什么apriori的运行时间会比fp growth的运行时间短呢
  • ¥15 帮我解决一下膳食平衡的线性规划模型的数据实例
  • ¥40 万年历缺少农历,需要和阳历同时显示
  • ¥250 雷电模拟器内存穿透、寻基址和特征码的教学
  • ¥200 比特币ord程序wallet_constructor.rs文件支持一次性铸造1000个代币,并将它们分配到40个UTXO上(每个UTXO上分配25个代币),并设置找零地址
  • ¥15 关于Java的学习问题
  • ¥15 如何使用chatgpt完成文本分类任务?
  • ¥15 已知速度v关于位置s的等式,怎么转化为已知位置求速度v的等式
  • ¥15 我有个餐饮系统,用wampserver把环境配置好了,但是后端的网页却进去,是为什么,能不能帮远程一下?
  • ¥15 R运行没有名称为"species"的插槽对于此对象类"SDMmodelCV"