class testclass{    

function testinput(post){

alert(post);

}

}

class를 생성을 하여 그안에 여러가지 함수를 정의 해준다.



$testfunc= new testclass();

위내용을 사용할 페이지에 지정을 해준다.


$testcode = $testfunc->testinput(poste);

그리고 변수를 정해주고 class를 호출하고 class안에 해당하는 

함수를 지정해주면 내용값을

변수에 저장해준다.


틀릴수도 있으므로 ... 다른곳을 참고하시길 바랍니다.



+ Recent posts