我想返回以下php代码:
(include "x.php");
作为我swig的返回值开发了php扩展。我搜索过,但没有找到具体的答案。此返回值将在php脚本中显示如下。
<?php
dl("myextension.dll");
my_extension_function(); /*this function call should output the following:
(include "x.php"); in this php script*/
?>
请帮助。
此致
KPM