“Instance Kelas PHP” Kode Jawaban

kelas instance php dari string

$class = '\Foo\Bar\MyClass'; 
$instance = new $class();
Tiago F2

Instance Kelas PHP

<?php
// Create the class first...
class Person
{
    public $name;
    public $surname;
    
    function __construct($name, $surname)
    {
    	$this->name = $name;
        $this->surname = $surname;
    }
    
    function getName()
    {
    	return $this->name;
    }
    
    function getSurname()
    {
    	return $this->surname;
    }
    
    function setName($value)
    {
    	$this->name = $value;
    }
    
    function setSurname($value)
    {
    	$this->surname = $value;
    }
}

// Now, you can create an instance of the class
$me = New Person("John", "Doe");
echo $me->getName();
$me.setName("Jane");
echo $me->getName();

/**
   I hope that this helps ^_^ 
 **/
?>
CoderHomie

Jawaban yang mirip dengan “Instance Kelas PHP”

Pertanyaan yang mirip dengan “Instance Kelas PHP”

Lebih banyak jawaban terkait untuk “Instance Kelas PHP” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya