목록전체 글 (166)
웹스쿨
/application/config/config.php파일의 config 요소는 아래와 같이 호출가능하다. 설정 : $config['ciboard_website'] = 'http://www.ciboard.co.kr/'; 호출 : $this->config->item('ciboard_website') 이 게시글은 https://webschool.kr/?v=board_view&board_key=7&idx=845 에서 작성한 글입니다. 소스코드의 경우 해당 블로그에서 이뿌게 노출이 되지 않을 수 있사오니, 위 링크로 들어오셔서 보시길 바랍니다.
function get_data($url, $method = 'GET'){ // Initialize $info = parse_url($url); $req = ''; $data = ''; $line = ''; $agent = 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0)'; $linebreak = "\r\n"; $headPassed = false; // Setting Protocol switch($info['scheme'] = strtoupper($info['scheme'])) { case 'HTTP': $info['port'] = 80; break; case 'HTTPS': $info['ssl'] = 'ssl://'; $info['po..
crontab 등록은 리눅스상에서 바로 실행해도 상관없지만,사용자 인터페이스로 구현하고 싶을 경우 아래의 일련 명령어로 제어가 가능하다. - 기본적으로 웹의 사용자는 nobody 로 진행된다.- _cron_script.php 파일에는 크론 명령어를 미리 넣어둔다. //아이디확인exec('id', $string);print_r($string);[0] => uid=99(nobody) gid=99(nobody) groups=99(nobody) //크론탭 시작$cron_file = '_cron_script.php'; exec('crontab '.$cron_file, $string); //크론탭 확인exec('crontab -l', $string);print_r($string);//[0] => * * * * * ..