gpt4 book ai didi

c - 在C中执行Php脚本

转载 作者:行者123 更新时间:2023-11-30 17:26:40 25 4
gpt4 key购买 nike

我正在用 C 创建一个简单的网络服务器并尝试执行 php 脚本。我能够通过调用来执行此操作: execl("/usr/bin/php", "/usr/bin/php", "-q",phpFile ,(char *) NULL);

但是我在将获取参数发送到此文件时遇到问题。例如:./index.php?name=test我该怎么做?

最佳答案

您不能将参数附加到 php 文件的末尾吗?我认为类似的事情应该有效:

    char phpFile [128] = "./index.php";
char * args = "name=test";
char * args2 = "city=paris";
strcat(phpFile, "?");
strcat(phpFile, args);
strcat(phpFile, "&");
strcat(phpFile, args2); // etc. if you want to add more args.

关于c - 在C中执行Php脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26699023/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com