class testclass{
function testinput(post){
alert(post);
}
}
class를 생성을 하여 그안에 여러가지 함수를 정의 해준다.
$testfunc= new testclass();
위내용을 사용할 페이지에 지정을 해준다.
$testcode = $testfunc->testinput(poste);
그리고 변수를 정해주고 class를 호출하고 class안에 해당하는
함수를 지정해주면 내용값을
변수에 저장해준다.
틀릴수도 있으므로 ... 다른곳을 참고하시길 바랍니다.
'progarm_old > [PHP]' 카테고리의 다른 글
[php] hanCut 글자자르기 (0) | 2013.02.15 |
---|---|
[php]Can't use function return value in write context in (0) | 2013.01.24 |
mysql_insert_id()란? (0) | 2012.08.28 |
[php] 대문자,소문자변환 strtolower, strtoupper (0) | 2012.08.22 |
[php] 역슬러쉬제거,생성,stripslashes,addslashes (0) | 2012.07.12 |