donglin8467 2014-07-16 05:42 采纳率: 0%
浏览 78
已采纳

如何从目标读取文件到变量?

I am trying to read a file's content, while doing something like this

$con="HDdeltin";
$fp = fopen($_SERVER['DOCUMENT_ROOT']. "/HDdeltin/Users/$con", "r");
echo $fp;

It doesn't return anything. What am I doing wrong?

  • 写回答

4条回答 默认 最新

  • duancui19840401 2014-07-16 05:49
    关注

    Fast solution :

    file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/HDdeltin/Users/HDdeltin");
    

    Use file_get_contents(), and you can prevent bad url with realpath().

    $con = "HDdeltin";
    $path = realpath($_SERVER['DOCUMENT_ROOT'] . "/HDdeltin/Users/$con");
    echo file_get_contents($path);
    

    To get current root, you can also use :

    See more :

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

报告相同问题?

悬赏问题

  • ¥15 torch框架下的强化学习DQN训练奖励值浮动过低,希望指导如何调整
  • ¥35 西门子博图v16安装密钥提示CryptAcquireContext MS_DEF_PROV Error of containger opening
  • ¥15 mes系统扫码追溯功能
  • ¥40 selenium访问信用中国
  • ¥20 在搭建fabric网络过程中遇到“无法使用新的生命周期”的报错
  • ¥15 Python中关于代码运行报错的问题
  • ¥500 python 的API,有酬谢
  • ¥15 软件冲突问题,软件残留问题
  • ¥30 有没有人会写hLDA,有偿求写,我有一个文档,想通过hLDA得出这个文档的层次主题,有偿有偿!
  • ¥50 有没有人会写hLDA,有偿求写,我有一个文档,想通过hLDA得出这个文档的层次主题,有偿有偿!