gpt4 book ai didi

php - 在后台从 Cocoa 向 PHP 脚本发送数据

转载 作者:行者123 更新时间:2023-12-03 17:00:27 26 4
gpt4 key购买 nike

我有信息打算通过 PHP 脚本在 iPhone 应用程序和桌面应用程序之间同步;有没有一种方法可以在后台调用脚本将数据发送到在线数据库,然后从脚本中检索数据?

最佳答案

这些人都是相反的 SCSS 。如果你不喜欢他的问题,请闭嘴。我讨厌这里所有自以为是的大便者,他们根本不在乎你在问什么……他们只是试图劝阻你不要做任何你正在想的愚蠢的事情,并且你应该这样做相反..呃,为什么?因为你不知道怎么做?长话短说,有很多方法可以做到这一点......这是我写/喜欢的一个......但正如我所说,这个问题有点令人困惑的唯一原因是因为有太多的方法可以做到这一点......

#import "NSData+Base64.h"  //i'm sending an image, so i base64 encode it.

- (NSArray *)makeObjectFromJSONviaPHPwithThis:(NSData *)data
{
NSTask *phpTask = [NSTask new];
[php setStandardOutput:pipe]; [php setLaunchPath:@"/usr/bin/php"];
[php setArguments:[NSArray arrayWithObjects:
@"-f", //runs your bundled script via cli
[[[NSBundle mainBundle] resourcePath]
stringByAppendingPathComponent:@"bundledScript.php"],
[data base64EncodedString], nil]];
NSPipe *pipe = [NSPipe new];
NSFileHandle *handle = [pipe fileHandleForReading];
[php launch];
NSString *results = [[NSString alloc] initWithData:
[handle readDataToEndOfFile] encoding:NSASCIIStringEncoding];
//"results" has your response from php….. I sent them back as * seperated string.
//Now i split the strings and shove them into an array!
return NSArray *parsedResults = [results componentsSeparatedByString:@"*"];

}

关于php - 在后台从 Cocoa 向 PHP 脚本发送数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1819193/

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