daGrevis Posted March 28, 2012 Report Share Posted March 28, 2012 Un tad vēl ir VIM... Quote Link to comment Share on other sites More sharing options...
rpr Posted March 28, 2012 Report Share Posted March 28, 2012 vim manuprāt neklasificējas kā ide. Quote Link to comment Share on other sites More sharing options...
daGrevis Posted March 28, 2012 Report Share Posted March 28, 2012 Protams, ka nē! Quote Link to comment Share on other sites More sharing options...
Mr.Key Posted March 28, 2012 Report Share Posted March 28, 2012 Turpinot par autoformatētājiem. Tas ir labs rīks, bet neaizvieto cilvēku. Koda uzturēšanā (maintenance) atstarpe (un koda formatēšana vispār) ļauj vieglāk izprast, kāds ir bijis nolūks. Piemērs: $array=array($a.$b,$c); $array = array($a. $b , $c); Pie man zināmiem kodēšanas stiliem augstākesošajā rindā #2 acumirklī redzams, ka divi simboli ir sajaukti vietām. Visu cieņu tiem, kuri spēj to pamanīt rindā #1. Quote Link to comment Share on other sites More sharing options...
Grey_Wolf Posted March 30, 2012 Report Share Posted March 30, 2012 (edited) $array=array($a.$b,$c); $array = array($a. $b , $c); Pie man zināmiem kodēšanas stiliem augstākesošajā rindā #2 acumirklī redzams, ka divi simboli ir sajaukti vietām. Visu cieņu tiem, kuri spēj to pamanīt rindā #1. hmm.. nevienmēr tā būs kļūda, jo $a='a'; $b='b'; $c='c'; $array=array($a.$b,$c); print_r($array); rezultāts: Array ( [0] => ab [1] => c ) -- protams, pārskatāmāk būtu: $a='a'; $b='b'; $c='c'; $d=$b.$c; $array=array($d,$c); Edited March 30, 2012 by Grey_Wolf Quote Link to comment Share on other sites More sharing options...
rATRIJS Posted March 30, 2012 Report Share Posted March 30, 2012 Vai $arr = array( $a . $b, $c ); Quote Link to comment Share on other sites More sharing options...
daGrevis Posted March 30, 2012 Report Share Posted March 30, 2012 array($a.$b, $c); Tā ir, pēc standartiem, pareizi un pārskatāmi. Quote Link to comment Share on other sites More sharing options...
rpr Posted March 30, 2012 Report Share Posted March 30, 2012 pēc kādiem standartiem? Quote Link to comment Share on other sites More sharing options...
daGrevis Posted March 30, 2012 Report Share Posted March 30, 2012 http://pear.php.net/manual/en/standards.php Quote Link to comment Share on other sites More sharing options...
marrtins Posted March 30, 2012 Report Share Posted March 30, 2012 Standarts. Hehehe. Tas viss ir nevairāk kā rekomendācija. Quote Link to comment Share on other sites More sharing options...
Mr.Key Posted March 30, 2012 Report Share Posted March 30, 2012 Grey_Wolf, tieši tāda arī bija mana doma. Tā nebūs kļūda, ar piebildi, ka tā nebūs sintakses kļūda. Diemžēl, ja vienīgās kļūdas būtu sintakses kļūdas, pasaule būtu daudz labāka... piemēram, daža laba raķete, nesot orbītā satelītus, nepaliktu pusceļā... Quote Link to comment Share on other sites More sharing options...
daGrevis Posted March 31, 2012 Report Share Posted March 31, 2012 > piemēram, daža laba raķete, nesot orbītā satelītus, nepaliktu pusceļā... Kur par to var uzzināt vairāk? Ieinteresēji! Quote Link to comment Share on other sites More sharing options...
spainis Posted March 31, 2012 Report Share Posted March 31, 2012 (edited) > piemēram, daža laba raķete, nesot orbītā satelītus, nepaliktu pusceļā... Kur par to var uzzināt vairāk? Ieinteresēji! http://en.wikipedia.org/wiki/Ariane_5#Notable_launches http://en.wikipedia.org/wiki/Mariner_1 Edited March 31, 2012 by spainis Quote Link to comment Share on other sites More sharing options...
Grey_Wolf Posted April 2, 2012 Report Share Posted April 2, 2012 (edited) Diemžēl, ja vienīgās kļūdas būtu sintakses kļūdas, pasaule būtu daudz labāka... piemēram, daža laba raķete, nesot orbītā satelītus, nepaliktu pusceļā... hmm... piemēram 'foboss 1' (PSRS palaistais ,marsa pavdoņa fobosa izpētei paredzētais robots ), palika pusceļā tieši sintakses kļūdas dēļ -> latīņu C vietā bija ierkstīts krievu S ( izskats identisks C ). Edited April 2, 2012 by Grey_Wolf Quote Link to comment Share on other sites More sharing options...
daGrevis Posted April 2, 2012 Report Share Posted April 2, 2012 Nabaga programmētājs, kurš pieļāvis to kļūdiņu. git blame Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.