1. 이클립스의 메뉴에서 "Help > Markgetplace .."

2. 선택후 PDT(PHP Development Tools) 검색해서 설치

출처 : http://pentode.tistory.com/74
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
<?php

class MY_Router extends CI_Router {
    protected function _set_default_controller() {

        if (empty($this->default_controller)) {

            show_error('Unable to determine what should be displayed. A default route has not been specified in the routing file.');
        }
        // Is the method being specified?
        if (sscanf($this->default_controller, '%[^/]/%s', $class, $method) !== 2) {
            $method = 'index';
        }

        // This is what I added, checks if the class is a directory
        if( is_dir(APPPATH.'controllers/'.$class) ) {

            // Set the class as the directory

            $this->set_directory($class);

            // $method is the class

            $class = $method;

            // Re check for slash if method has been set

            if (sscanf($method, '%[^/]/%s', $class, $method) !== 2) {
                $method = 'index';
            }
        }

        if ( ! file_exists(APPPATH.'controllers/'.$this->directory.ucfirst($class).'.php')) {

            // This will trigger 404 later

            return;
        }
        $this->set_class($class);
        $this->set_method($method);
        // Assign routed segments, index starting from 1
        $this->uri->rsegments = array(
            1 => $class,
            2 => $method
        );
        log_message('debug', 'No URI present. Default controller set.');
    }
}

 

블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
header('Access-Control-Allow-Origin: http://test.com');

'php, codeigniter' 카테고리의 다른 글

이클립스에서 php 플러그인  (0) 2017.09.14
codeigniter - 3.0 router  (0) 2016.02.18
태그와 태그사이 정규식으로 내용 추출  (0) 2016.01.07
서버 점검(ping) 테스트  (0) 2015.10.17
일주일 단위로 달력 출력  (0) 2015.09.03
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
$text = "<tbody>test</tbody>";
preg_match("/<tbody>(.*?)<\/tbody>.*/s", $text, $match);
echo $match[0];

'php, codeigniter' 카테고리의 다른 글

codeigniter - 3.0 router  (0) 2016.02.18
다른서버로 POST 전송할때 설정  (0) 2016.01.13
서버 점검(ping) 테스트  (0) 2015.10.17
일주일 단위로 달력 출력  (0) 2015.09.03
php 변수를 javascript로 넘기기  (0) 2015.08.28
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
function ping($host, $port=80, $timeout=6) {
	$fsock = fsockopen($host, $port, $errno, $errstr, $timeout);
	if (!$fsock) {
		return FALSE;
	} else {
		fclose($fsock);
		return TRUE;
	}
}
출처 : http://www.cikorea.net/tip/view/2002/page/1/
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
<table>
<?php
$time = time();
$week = date("w",$time);
$weeks = array("일","월","화","수","목","금","토");
$sunday = mktime(0, 0, 0,date("m"),date("d") - $week,date("Y"));

for ($i = 0,$day = $sunday;$i < 7; $i++, $day += 86400):
	$date_display = date("Y-m-d (D)",$day); 
	$day_display = $weeks[date("w",$day)];
?>
<tr>
	<td bgcolor='#fffff0'><?=$day_display?></td> 
	<td><a href="#"><?=$date_display?></a></td> 
	<td>일정내용</a></td> 
</tr>
<?php endfor; ?>
</table>
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,