PHP코드 최적화 썸네일형 리스트형 PHP 코드를 최적화하는 40가지 팁 모던보이님 - 스쿨에서 퍼옴 1. If a method can be static, declare it static. Speed improvement is by a factor of 4. 메쏘드가 static이 될 수 있다면 static으로 선언하라. 4배 빨라진다. 2. echo is faster than print. echo가 print보다 빠르다. 3. Use echo’s multiple parameters instead of string concatenation. 문자열을 이어붙이지 말고, echo를 이용하여 여러 개의 파라미터를 적어라. 4. Set the maxvalue for your for-loops before and not in the loop. for 루프을 위핸 최대값(탈출조건)을 루.. 더보기 이전 1 다음