doudan4834 2014-09-15 15:48
浏览 45
已采纳

如何让iOS运行子流程?

I am writing an app for iOS that will start the php binary as a sub process.

The following code is used:

NSString * command = @"/bin/sh -c '";
command = [command stringByAppendingString:[BibleditPaths php]];
command = [command stringByAppendingString:@" -v' > /tmp/php.txt 2>&1"];
int output = system ([command UTF8String]);
NSString* msg = [@(output) stringValue];
NSLog(msg, @"");

The php binary can be started on a jailbroken iPad from the command line. This is the output:

PHP 5.4.31 (cli) (built: Aug 19 2014 11:06:21) 
Copyright (c) 1997-2014 The PHP Group
Zend Engine v2.4.0, Copyright (c) 1998-2014 Zend Technologies

When starting the php binary from the code above, iOS sends the SIGKILL signal. The php binary does not run or produce any output.

/bin/sh produces this output:

sh: line 1:  2806 Killed: 9               /bin/sh -c '/var/mobile/Applications/DFE552CC-ECBE-4A73-82CF-24870E5D9F62/Library/usr/local/bin/php -v' > /tmp/php.txt 2>&1
2014-09-15 17:33:41.676 PHPRunner[2804:60b] 35072

What can I do to get iOS to run this process successfully?

  • 写回答

1条回答 默认 最新

  • douyuepi6485 2014-09-17 06:00
    关注

    This question was posted on the Apple iOS development forum (https://devforums.apple.com/index.jspa).

    The response there was:

    "None of that is supported (or permitted by the application sandbox) on iOS."

    Subsequently the question was deleted from the forum.

    I am posting the answer here so the information is kept for the public.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 用土力学知识进行土坡稳定性分析与挡土墙设计
  • ¥70 PlayWright在Java上连接CDP关联本地Chrome启动失败,貌似是Windows端口转发问题
  • ¥15 帮我写一个c++工程
  • ¥30 Eclipse官网打不开,官网首页进不去,显示无法访问此页面,求解决方法
  • ¥15 关于smbclient 库的使用
  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?