fopen() 함수 mode 종류

 모드

설명 

 r

읽기 전용으로 파일 열기, 파일 포인터는 파일의 시작에 위치 

 r+

 읽고 쓰기로 파일 열기, 파일 포인터는 파일의 시작에 위치

 w

 쓰기 전용으로 파일 열기, 파일 포인터는 파일의 시작에 위치

파일이 존재하면 내용을 삭제, 파일이 존재하지 않으면 파일을 생성

 w+

 읽고 쓰기로 파일 열기, 파일 포인터는 파일의 시작에 위치

파일이 존재하면 내용을 삭제, 파일이 존재하지 않으면 파일을 생성

 a

 쓰기 전용으로 파일 열기, 파일 포인터는 파일의 끝에 위치

파일이 존재하지 않으면 파일을 생성

 a+

 읽고 쓰기로 파일 열기, 파일 포인터는 파일의 끝에 위치

파일이 존재하지 않으면 파일을 생성

 


bool fclose(int filepointer) : 파일을 닫는 함수


int fputs(int filepointer, string str) : 파일 포인터가 가리키는 곳에 str의 내용을 쓰는 함수


string fgets(int filepointer, int length) : 파일 포인터가 가리키는 곳에 length-1 byte 만큼 읽는다.


1
2
3
4
5
6
7
8
9
10
11
12
13
<?
    $filep = fopen("./exam.txt","a");
    
    if(!$filep) die ("파일을 열 수 없습니다.");
    
    fputs($filep"1 2 3 4 5 6 7 8 9 0\n");
 
    fclose($filep);
    
    $filep=fopen("./exam.txt","r");
    while($line=fgets($filep,1024))
        print $line."<br>";
?>
cs

3번 실행할 경우

5번 실행할 경우

'프로그래밍 > PHP' 카테고리의 다른 글

(PHP) Sort 함수를 이용하여 내림차순 정렬 만들기  (0) 2016.07.10
(PHP) for문과 배열  (0) 2016.07.10
(PHP) 배열과 정렬  (0) 2016.07.10
(PHP)form을 이용한 값 전달  (0) 2016.07.10
(PHP) 클래스  (0) 2016.07.10

form 태그를 이용한 값전달


index.php

1
2
3
4
5
6
<form method=post action="lecture10_form1.php">
    <input type="text" name="val01" size=5>
    <input type="text" name="operator" size=1>
    <input type="text" name="val02" size=5>    
    <input type="submit" value="계산하기">
</form>
cs


lecture10_form1.php

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?
    extract(array_merge($HTTP_GET_VARS,$HTTP_POST_VARS));
 
    switch($operator)
    {
        case("+"):
            $result=$val01+$val02;
            print $val01."+".$val02." = ".$result;
            break;
        case("-"):
            $result=$val01-$val02;
            print $val01."-".$val02." = ".$result;
            break;
        case("*"):
            $result=$val01*$val02;
            print $val01."*".$val02." = ".$result;
            break;
        case("/"):
            $result=$val01/$val02;
            print $val01."/".$val02." = ".$result;
            break;
    }
?>
cs

extract(array_merge($HTTP_GET_VARS,$HTTP_POST_VARS));

위 함수를 이용하여 GET, POST 방식을 이용할 수 있음


select 태그를 이용한 값 전달


index.php

1
2
3
4
5
6
7
8
9
10
11
12
13
<form method=post action="lecture10_form1.php">
    <select name="val01" size="1">
        <option value="2">2단</option>
        <option value="3">3단</option>
        <option value="4">4단</option>
        <option value="5">5단</option>
        <option value="6">6단</option>
        <option value="7">7단</option>
        <option value="8">8단</option>
        <option value="9">9단</option>
    </select>
    <input type="submit" value="결과 보기">
</form>
cs

lecture10_form1.php

1
2
3
4
5
6
7
<?
    extract(array_merge($HTTP_GET_VARS,$HTTP_POST_VARS));
 
    print $val01."단 <p>";
    for($i=1;$i<10;$i++)
        print $val01." * "$i." = "$val01*$i."<br>";
?>
cs


라디오 박스, 체크박스 를 이용한 값전달


index.php

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<form method=post action="phpnform3.php">
    이름 <input type="text" name="u_name" size=10>
    <br>
    성별 <input type="radio" name="sexual_type" value="남자">남  
         <input type="radio" name="sexual_type" value="여자" checked>여
    <br>
    관심사항 <input type="checkbox" name="interesting[]" value="Web Programming"> Web Programming  
    <input type="checkbox" name="interesting[]" value="Graphics"> Graphics  
    <input type="checkbox" name="interesting[]" value="Mathematics"> Mathematics  
    <input type="checkbox" name="interesting[]" value="Databases"> Databases
    <p>
    <input type="submit" value="전송"
    <input type="reset" value="다시쓰기">
</form>
cs


phpnform3.php

1
2
3
4
5
6
7
8
<?
    extract(array_merge($HTTP_GET_VARS,$HTTP_POST_VARS));
    print "이름: ".$u_name."<br>";
    print "성별: ".$sexual_type."<br>";
    print "관심사항: ";
    for($i=0;$i<count($interesting);$i++)
        print "[".$interesting[$i]."]";
?>
cs


​ 

'프로그래밍 > PHP' 카테고리의 다른 글

(PHP) Sort 함수를 이용하여 내림차순 정렬 만들기  (0) 2016.07.10
(PHP) for문과 배열  (0) 2016.07.10
(PHP) 배열과 정렬  (0) 2016.07.10
(PHP) 파일 사용하기  (0) 2016.07.10
(PHP) 클래스  (0) 2016.07.10

클래스 선언

1
2
3
4
5
6
7
8
<?PHP
    class 클래스명    
    {
        ... 속성 선언 ...
 
        ... 함수 선언 ...
    }
?>
cs

public : 객체 생성후 어디서나 호출 가능한 상태

private : 객체 내부에서만 호출이 가능한 것 (메소드, 멤버변수 앞에 Underbar(_)를 붙이면 됨)

상속 : 자식 클래스가 부모 클래스로부터 특성을 상속 받는 것을 말함.

부모클래스에 있는 속성과 메소드를 그대로 사용할 수 있는 성질

클래스명 뒤에 'extends 상속받을클래스명' 을 적으면 됨



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?PHP
    class fruit
    {
        var $_fruit_name$_price$_color;
        function fruit($name$price$color)
        {
            $this->_fruit_name=$name;
            $this->_price=$price;
            $this->_color=$color;
        }
        
        function print_fruit()
        {
            print "Fruit name : $this->_fruit_name <br>";
            print "Fruit name : $this->_price <br>";
            print "Fruit name : $this->_color <br>";
            print "<br>";
        }
    }
    $Apple = new fruit('Apple',1000,'red');
    $Orange = new fruit('Orange',2000,'orange');
    $Banana = new fruit('Banana',500,'yellow');
    $Pear = new fruit('Pear',3000,'gray');
    $Apple->print_fruit();
    $Orange->print_fruit();
    $Banana->print_fruit();
    $Pear->print_fruit();
?>
cs

​▲ 클래스 사용 예제


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?PHP
    class People    
    {
        var $Name$Age;
        function printPeople()
        {
            print "Name : ".$this->Name."<br>";
            print "Age : ".$this->Age."<br>";
        }
    }
    class Professor extends People
    {
        var $Office_No;
        function Professor($name,$age,$no)
        {
            $this->Name=$name;
            $this->Age=$age;
            $this->Office_No=$no;
        }
        function printProfessor()
        {
            $this->printPeople();
            print "Office_No : ".$this->Office_No."<br>";
        }
        function printProfessor2()
        {
            print "Name : ".$this->Name."<br>";
            print "Age : ".$this->Age."<br>";
            print "Office_No : ".$this->Office_No."<br>";
        }
    }
    $object = new Professor("Kim","37","107");
    $object->printProfessor();print"<br>";
    $object->printProfessor2();
?>
cs

▲ 클래스 상속 사용 예제

'프로그래밍 > PHP' 카테고리의 다른 글

(PHP) Sort 함수를 이용하여 내림차순 정렬 만들기  (0) 2016.07.10
(PHP) for문과 배열  (0) 2016.07.10
(PHP) 배열과 정렬  (0) 2016.07.10
(PHP) 파일 사용하기  (0) 2016.07.10
(PHP)form을 이용한 값 전달  (0) 2016.07.10

+ Recent posts