我为以下功能创建了 .so 文件:
主.cpp:
#include<stdio.h>
#include "test.h"
int main()
{
int a=hello();
printf("%d",a);
return 0;
}
测试.h
int test()
{
int a=5,b=10,c;
printf("Hi");
c=a+b;
return c;
}
现在我为上述程序创建共享库文件 main.so 并想从 php 脚本调用 hell() 函数。
p1.php
<?php
// Call to test function in main.cpp
>
我在网上看到了各种教程,但没有明确的解释。有人可以提供一些教程的链接或帮助我解决这个问题吗?