这是一个简单的php代码
<?php
ob_start(passthru('/usr/bin/env node getResult.js '));
$data = ob_get_contents();
ob_end_clean();
// console shows Data as String but $data is still empty
echo "Data : " . $data;
?>
而 node.js 脚本只有一个变量 result ,其中包含一个对象。
console.log("skript startet");
var get = function(){
/*do stuff to get variable*/
result = "test;
console.log(result);
return result;
});
});
};
get();
问题:我需要 getResult.js 脚本中的变量,但我无法在 php 中捕获它。有任何想法吗 ?