如何在php中将文件内容转换为String

时间:2016-09-01 13:23:20

标签: javascript php

click here to see the error我试图将本地php文件转换为字符串,以将其存储在Javascript变量中。 有没有办法实现这个? 这是我的PHP代码。

ggplot(iris, aes(x = Petal.Width, y=Sepal.Length)) + 
  geom_point(shape=1,size = 0.5)+
  geom_abline(aes(intercept= Int , slope=slopes), color='grey', data=coefs) 

此数据需要以字符串形式存储在Javascript变量中。 我面临以下问题:

enter image description here

请提出您的建议。

2 个答案:

答案 0 :(得分:0)

试试这个:

<?php 
     $data = get_file_contents("htmlFile.html");
?>

并使用此脚本

<script>
    var jsvar = "<?php echo $data; ?>"
</script>

答案 1 :(得分:0)

试试这个:

var data = "<? echo $data; ?>"

请记住使用""个字符。这就是产生错误的原因。