我有一個前綴數組,基數詞數組和後綴數組。我希望看到可以製作的每個組合。排列/生成組合前綴和後綴
例子:
prefixes: 1 2
words: hello test
suffixes: _x _y
Results:
1hello_x
1hello_y
1hello
1test_x
1test_y
1test
1_x
1_y
1
2hello_x
2hello_y
2hello
2test_x
2test_y
2test
2_x
2_y
2
hello_x
hello_y
hello
test_x
test_y
test
_x
_y
y
我怎樣才能做到這一點?
編輯:感謝所有的答覆,我正在通過解決方案,但似乎如果沒有前綴,那麼它將失敗的組合。它應該仍然通過基本詞彙和後綴,即使沒有任何前綴。
請參閱編輯。 – ParoX 2011-03-06 21:46:49
如果我只是添加'array_push($ prefixes,「」);'''array_push($ words,「」);''array_push($ prefixes,「」);'然後它會做我需要的。另外請注意,你有$後綴的參數,而不是後綴 – ParoX 2011-03-06 21:55:18
嘆息,請張貼'充分'的問題,而不是多次改變它。 – 2011-03-06 22:00:36