Home » 2016 » October (Page 3)

Pythonlearn:resources-install

Books and Guides https://wiki.python.org/moin/BeginnersGuide http://www.learnpython.org/ One more place to start with python. http://legacy.python.org/dev/peps/pep-0008/#imports Python convention and style guide http://www.greenteapress.com/thinkpython/ Think Python: How to Think Like a Computer Scientist, is a free Book by Allen B. Downey. It is released under the Creative Commons Attribution-NonCommercial 3.0 Unported License. http://openbookproject.net/thinkcs/...
Continue reading

PHPExcel 에서 줄바꿈 처리

1. PHPExcel 을 이용해 EXCEL 파일 생성시 줄바꿈 처리 방법. setWrapText 허용   $objPHPExcel->getActiveSheet()->getStyle(“D1”)->getAlignment()->setWrapText(true);   2. 줄바꿈 문자 처리    $lfcr = chr(10); $group_for_excel = str_replace(‘|’,$lfcr,substr($search_info_array[8], 1));   중요한 건 setWrapText 허용 부분과 php에서 줄 바꿈 처리하여 EXCEL파일 생성시 줄바꿈 문자는 chr(10)을 사용한다는 것.
Continue reading

[정보] Laravel 입문 가이드 1.0

원문보기 1단계) Modern PHP 입문 – Modern PHP 책 필독 – http://www.hanbit.co.kr/book/look.html?isbn=978-89-6848-225-0 – 이 책은 PHP The Right Way의 저자이며, Slim Framework 개발자인 조시 록하트가 지은 책으로 Modern PHP 입문서로 적극 추천합니다. – 만약 지금 이 책을 안 본다면, 앞으로 수백번의 구글링/질문 후에야 이 책을 읽게 될 것...
Continue reading

PHPExcel 설치

원문보기   목차 1 다운로드 2 설치 3 쉘 테스트 4 웹 테스트 (오류) 5 오류 해결 (권한 조정) 6 실행예시 (성공) 7 같이 보기 8 주석 다운로드[편집] http://phpexcel.codeplex.com/ 접속 [Download] 클릭하여 PHPExcel_1.8.0_doc.zip 다운로드(5,284 KB) 설치[편집] 서버의 /usr/share/php/vendor 폴더에 zip파일 업로드[1] [root@zetawiki vendor]# ll PHPExcel_1.8.0_doc.zip -rw-r--r-- 1 root...
Continue reading

Setting up your PythonLearn Devlopment Environment

http://www.pythonlearn.com/install.php   Setting up your PythonLearn Devlopment Environment   We have separate pages for each of the commonly used Operating Systems: Setting up the PythonLearn Environment in Microsoft Windows Setting up the PythonLearn Environment on a Macintosh Setting up the PythonLearn Environment on a Raspberry Pi (New) Can’t...
Continue reading