$scope.formatfilename = response.filename[0].filepath;
//它包含我的文件路径,例如http://localhost:8080/abc/myfloder/ab.html
$filename1 ='{{formatfilename}}';
//我在codeIgniter视图中访问上面的路径。当我回显这个变量时,它也有文件路径
echo file_get_contents($filename1);
它给我找不到文件错误。但是,如果,我将静态url传递给file_get_contents()方法,那时它会给出结果。 任何解决方案??
答案 0 :(得分:0)
可能是拼写错误。应为$filename1
echo file_get_contents($filename1);