まず、PHP_FUNCTION() からファイルをインポートし、インポートされた php ファイルに C 関数からいくつかの変数をユーザー空間に渡す必要があります。
例:
include_a_file.c
PHP_FUNCTION(include_a_php_file)
{
zval *var_to_userspace;
char *str;
str = "string send to userspace";
ZVAL_STRING(var_to_userspace, str, 0);
php_require_once("a_file.php"); // <-- how to?
}
a_file.php
<?php
print "<pre>";
vardump($var_to_userspace);
print "</pre>";
?>