在beantalk AWS上启用pcntl_fork

时间:2018-11-12 15:11:48

标签: php amazon-web-services pcntl

我正在将Elastic Beanstalk Linux AMI与PHP结合使用。当我在终端上运行此命令时:

import itertools
list(itertools.product(*[[1,2,3],['r','t']]))
Out[20]: [(1, 'r'), (1, 't'), (2, 'r'), (2, 't'), (3, 'r'), (3, 't')]
[y +str(x) for x, y in list(itertools.product(*[[1, 2, 3], ['r', 't']]))]
Out[22]: ['r1', 't1', 'r2', 't2', 'r3', 't3']

我看到了php -m | grep pcntl ,但是当我尝试使用pcntl函数时,它不起作用。

0 个答案:

没有答案