<?php$todasLetras = array(); //Salvar o valor em uma variavel pode melhorar um pouco a performance$final = ord('Z');for($letra = ord('A'); $letra <= $final; $letra++){ $current = chr($letra); if ($current !== 'Y') { $todasLetras[] = $current; }} echo implode(',', $todasLetras);
Standard input is empty
A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Z
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!