每種控制結構最常見的應用是什麼?我想獲得在沿行的參考:由史蒂夫·麥康奈爾 Control Structure - common application
Conditions - true/false distinction
Selections - case differentiation of a few known values
Loops - writing to/re
我已經工作PHP一段時間,但今天,當我看到這一點,來到新的對我說: if(preg_match('/foo.*bar/','foo is a bar')):
echo 'success ';
echo 'foo comes before bar';
endif;
令我吃驚的它也運行沒有錯誤。任何人都可以啓發我嗎? 感謝所有:)
進行審覈時,我有時會遇到這樣一種循環: i = begin
while (i != end) {
// ... do stuff
if (i == end-1 (the one-but-last element)) {
... do other stuff
}
increment i
}
然後,我問一個問題:你寫的嗎? i = begi