0

我在主包资源路径中有 PHP 文件。我需要从我的 UIViewcontoller 调用该文件。但是文件没有调用。

代码:

NSString *pathToBundle = [[NSBundle mainBundle] bundlePath];
    NSURL *baseURL = [NSURL fileURLWithPath:pathToBundle];
    NSString *htmlFile = [[NSBundle mainBundle] pathForResource:@"nav" ofType:@"php"];
    NSString *htmlString = [NSString stringWithContentsOfFile:htmlFile encoding:NSUTF8StringEncoding error:nil];
    //CGRect fullScreenRect=[[UIScreen mainScreen]applicationFrame];
    web=[[UIWebView alloc]initWithFrame:CGRectMake(0, 0, 320, 480)];
    [web loadHTMLString:htmlString baseURL:baseURL];
4

1 回答 1

0

由于 PHP 是一种服务器端语言,因此您将无法像那样运行它,除非您的设备中运行了 PHP_Server_for_iOS。

我不知道是否存在任何这样的 PHP 发行版,抱歉。

最好的祝愿,

于 2013-05-15T06:38:13.107 回答