博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php调用外部exe文件system和exec
阅读量:4981 次
发布时间:2019-06-12

本文共 1358 字,大约阅读时间需要 4 分钟。

    在PHP中调用外部程序主要有两个函数,system和exec。

    system 的原型为string system(string command [, int $return_var])。system本身具有打印命令执行输出的功能,也就是说,程序中的输出printf()PHP页面中显示。如果程序成功执 行,则system的返回值为程序输出的最后一行,如果执行失败,返回false。如果调用程序有返回值,则返回值存放在$return_var中。
    示例程序如下,以Linux平台为例。
c程序代码:
#include "stdio.h"
#include "stdlib.h"
int main(int argc, char *argv[])
{
    if(argc!=2){
        printf("---------------------\n");
        printf("usage: a.out &r\n");
        exit(0);
    }
    int r,s;
    r=atoi(argv[1]);
    s=r*r;
    printf("ok\n");
    printf("haha\n");
    return s;
}
编译生成a.out文件。
PHP页面代码:
<html>
<body>
<h1>It works!</h1>
<?php
    echo("Congratulations!\n");
    $r=3;
    $s=system("/usr/local/apache/htdocs/php/a.out $r",$ret);
    echo("s is $s  ");
    echo("ret is $ret  ");
?>
</body>
</html>
执行结果,在页面中显示为:

It works!

Congratulations! ok haha s is haha ret is 9

       exec的函数原型为string exec(string command [, array $output [, int $return_var]])。exec本身没有打印程序输出的功能。如果程序执行成功,则exec的返回值为程序输出的最后一行,并且所有的程序输出以 数组形式存放在$output中。如果调用程序有返回值,则返回值存放在$return_var中。
       示例程序如下,c程序同上。
PHP代码为:
<html>
<body>
<h1>It works!</h1>
<?php
    echo("Congratulations!\n");
    $r=3;
    $s=exec("/usr/local/apache/htdocs/php/a.out $r",$arr,$ret);
    echo("s is $s  ");
    echo("arr[0] is $arr[0]  ");
    echo("arr[1] is $arr[1]  ");
    echo("ret is $ret  ");
?>
</body>
</html>
执行结果在页面显示为

It works!

Congratulations! s is haha arr[0] is ok arr[1] is haha ret is 9

转载于:https://www.cnblogs.com/zjzhuwenbo/p/3469450.html

你可能感兴趣的文章
Codeforces.264E.Roadside Trees(线段树 DP LIS)
查看>>
BZOJ.1026.[SCOI2009]windy数(数位DP)
查看>>
BZOJ.4145.[AMPPZ2014]The Prices(状压DP)
查看>>
String 源码浅析(一)
查看>>
Shell脚本之:函数
查看>>
OSAL工作机制分析
查看>>
利用freemarker 静态化网页
查看>>
java enum(枚举)使用详解 + 总结
查看>>
Day 1:思考
查看>>
7.Python标准库_信号 (signal包,部分os包)
查看>>
android 电话接通时震动
查看>>
相似图片搜索的原理(二)
查看>>
微信小程序支付及退款流程详解
查看>>
boost::asio::ip::tcp实现网络通信的小例子
查看>>
ios开发——仿新版iBooks书本打开与关闭动画
查看>>
hibernate官方新手教程 (转载)
查看>>
myeclipse6.0下载及注冊码
查看>>
关于二进制补码
查看>>
UVa 11584 - Partitioning by Palindromes [动规]
查看>>
Indonesians Using Smartphones to Connect to the Internet
查看>>