我正在将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
函数时,它不起作用。