gpt4 book ai didi

来自 iOS 应用程序的 PHP POST

转载 作者:行者123 更新时间:2023-11-28 22:36:00 25 4
gpt4 key购买 nike

我需要从我的 iOS 应用程序访问 PHP 的 POST。我似乎无法让它工作。

这是 PHP 的一个非常短的片段:

$post_data = $_POST["function"];

if ($function == 'post_data') {
//do stuff, not important
else if($function == 'send_stuffz') {
//do stuff, not important
}

如何访问这部分代码?

我认为它可能只是通过一个 URL,例如:

fakewebsitename.com/file.php?function=post_data
fakewebsitename.com/file.php?function=send_stuffz

但这行不通。

到目前为止,在 iOS 应用程序中,我有这个:

NSMutableURLRequest *urlReq = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:baseURL]]; <-baseURL = fakewebsitename.com/file.php in this "instance"
[urlReq setHTTPMethod:@"POST"];

不确定如何进行...

最佳答案

这个函数不正确

$post_data = $_POST["function"];

if ($function == 'post_data') {
//do stuff, not important
else if($function == 'send_stuffz') {
//do stuff, not important
}

你没有定义变量$function请按如下更改

请改为

$post_data = $_POST["function"];

if ($post_data == 'post_data') {
//do stuff, not important
else if($post_data == 'send_stuffz') {
//do stuff, not important
}

关于来自 iOS 应用程序的 PHP POST,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16011398/

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