使用PHP运行C程序可以通过以下步骤实现:
#include<stdio.h>
int add(int a, int b) {
return a + b;
}
int main() {
int num1 = 5;
int num2 = 10;
int result = add(num1, num2);
printf("The sum of %d and %d is %d\n", num1, num2, result);
return 0;
}
gcc -o my_program my_program.c
这将生成一个名为my_program
的可执行文件。
shell_exec()
函数来执行C程序。<?php
$output = shell_exec('./my_program');
echo "<pre>$output</pre>";
?>
php my_script.php
这将输出C程序的执行结果。
在这个例子中,我们使用PHP调用了一个C程序,实现了在PHP中运行C程序的功能。
领取专属 10元无门槛券
手把手带您无忧上云