提问人:rmoss3475 提问时间:12/27/2021 最后编辑:rmoss3475 更新时间:12/27/2021 访问量:40
将 C 变量传递给 php
Passing C variables to php
问:
c代码:
void main(){
printf("line1\n");
printf("$var=2\n");
}
索引:.php
exec("./cCode", $output);
echo $output[2];
?>
正如你所料,php 输出字符串:$var=2
但是,在 php 中,从 C 返回变量成为变量的最简单方法是什么?也许是 Json 编码?php 和/或 C 是否有任何方法可以轻松地传递或转换变量名称和值对?
非常感谢。
答: 暂无答案
评论