Simple and practical PHP class

Source: Internet
Author: User

For beginners to use the PHP class, built to do when the station more packaging into a class, modular, so the program will be much clearer.

A very simple PHP class, in fact, what kind of things, I also say that is not clear, white is a lot of functions are set. Put it together in a piece of work. By following this simple example, I am sure you will use the PHP class.

Example (use method):

<?php
Define a class with a class named Test
Class Test
{
var $id;
var $main;
function SetID ($id) {
$this->id = $id;
}
function Setmain ($main) {
$this->main = $main;
}
function GetID () {
return $this->id;
}
function Getmain () {
return $this->main;
}
function Returninfo () {
$returninfo = $this->id;
$returninfo = $returninfo. ': ';
$returninfo. = $this->main;
$returninfo. = ' <br> ';
return $returninfo;
}
}

?>

<?php
How to use
$testinfo = new Test;
$testinfo->setid (1);
$testinfo->setmain (' Test content Astifen ');
echo $testinfo->returninfo ();

$testinfo->setid (2);
$testinfo->setmain (' Test content Astifen Astifen ');
echo $testinfo->returninfo ();
?>



Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.