doulu1945 2012-04-23 23:43
浏览 41
已采纳

我如何回应PHP的json字符串?

i need to echo $account into $url so that the url/path is whatever i get from $account plus the extension json. I can't figure it out with the quotes. i tried single and double quotes but no luck. any ideas?

<?php 
$account = $_POST['account'];
$url = 'echo $account.json'; //
$content = file_get_contents($url);
$json = json_decode($content, true);
?>
  • 写回答

3条回答 默认 最新

  • dongxi3209 2012-04-23 23:47
    关注

    Like this?

    <?php 
    $account = $_POST['account'];
    $url = $account. '.json'; //
    $content = file_get_contents($url);
    $json = json_decode($content, true);
    ?>
    

    the . operator is used for string concatenation in php. This means take the value of $account and append the string .json to the end, and store that in the variable $url. The rest of the code looks all right from there. There are a few other ways to do this as well with strings in php, but I find this one simplest.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 关于大棚监测的pcb板设计
  • ¥20 sim800c模块 at指令及平台
  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
  • ¥15 Vue3地图和异步函数使用
  • ¥15 C++ yoloV5改写遇到的问题
  • ¥20 win11修改中文用户名路径
  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入
  • ¥15 用土力学知识进行土坡稳定性分析与挡土墙设计