파일명 test1.php

class test(){


function test1(){

 $tt = "가져가세요";

retrun $tt;

}


function test2(){

  $tt = "가져가지마세요";

retrun $tt;

}

}



정의한후


include test1.php 시킵니다.


$test = new test();


echo $test->test1();   // -> 결과 가져가세요


echo $test->test2();   // -> 결과 가져가지마세요


출력이 됩니다.

'progarm_old > [PHP]' 카테고리의 다른 글

php post get 값 못받아올때  (0) 2016.08.04
[php] 없어지는 함수들 버전에 따라 분류  (0) 2016.07.12
in_array_  (0) 2016.05.17
mysql 자동증가  (0) 2016.05.17
php 출력하기 다양성  (0) 2016.05.16

+ Recent posts