[php] $ this 변수는 PHP에서 무엇을 의미합니까?

나는 $this항상 PHP 에서 변수 를보고 그것이 무엇에 사용되는지 전혀 모른다. 개인적으로 사용한 적이 없습니다.

누군가 $thisPHP 에서 변수 가 어떻게 작동 하는지 말해 줄 수 있습니까 ?



답변

현재 객체에 대한 참조이며 객체 지향 코드에서 가장 일반적으로 사용됩니다.

예:

<?php
class Person {
    public $name;

    function __construct( $name ) {
        $this->name = $name;
    }
};

$jack = new Person('Jack');
echo $jack->name;

생성 된 객체의 속성으로 ‘Jack’문자열을 저장합니다.


답변

$thisPHP 에서 변수에 대해 배우는 가장 좋은 방법 은 다양한 컨텍스트에서 인터프리터에 대해 시도하는 것입니다.

print isset($this);              //true,   $this exists
print gettype($this);            //Object, $this is an object 
print is_array($this);           //false,  $this isn't an array
print get_object_vars($this);    //true,   $this's variables are an array
print is_object($this);          //true,   $this is still an object
print get_class($this);          //YourProject\YourFile\YourClass
print get_parent_class($this);   //YourBundle\YourStuff\YourParentClass
print gettype($this->container); //object
print_r($this);                  //delicious data dump of $this
print $this->yourvariable        //access $this variable with ->

따라서 $this의사 변수에는 현재 개체의 메서드와 속성이 있습니다. 이러한 것은 클래스 내의 모든 멤버 변수와 멤버 메서드에 액세스 할 수 있기 때문에 유용합니다. 예를 들면 :

Class Dog{
    public $my_member_variable;                             //member variable

    function normal_method_inside_Dog() {                   //member method

        //Assign data to member variable from inside the member method
        $this->my_member_variable = "whatever";

        //Get data from member variable from inside the member method.
        print $this->my_member_variable;
    }
}

$thisObject인터프리터가 만든 PHP에 대한 참조 이며 변수 배열을 포함합니다.

$this일반 클래스의 일반 메서드 내부 를 호출하면 $this해당 메서드가 속한 Object (클래스)를 반환합니다.

그것은 가능의 $this상황에 부모 개체가없는 경우 undefined로.

php.net에는 PHP 객체 지향 프로그래밍과 $this컨텍스트에 따라 작동 하는 방식에 대한 큰 페이지가 있습니다.
https://www.php.net/manual/en/language.oop5.basic.php


답변

나는 그것의 오래된 질문, 어쨌든 $ this 에 대한 또 다른 정확한 설명을 알고 있습니다. $ this 는 주로 클래스의 속성을 참조하는 데 사용됩니다.

예:

Class A
{
   public $myname;    //this is a member variable of this class

function callme() {
    $myname = 'function variable';
    $this->myname = 'Member variable';
    echo $myname;                  //prints function variable
    echo $this->myname;              //prints member variable
   }
}

산출:

function variable

member variable


답변

다른 많은 객체 지향 언어와 마찬가지로 자체 내에서 클래스의 인스턴스를 참조하는 방법입니다.

로부터 PHP 워드 프로세서 :

의사 변수 $ this는 객체 컨텍스트 내에서 메서드가 호출 될 때 사용할 수 있습니다. $ this는 호출 개체에 대한 참조입니다 (보통 메서드가 속한 개체이지만 메서드가 보조 개체의 컨텍스트에서 정적으로 호출되는 경우 다른 개체 일 수 있음).


답변

$ this를 사용하지 않고 다음 코드 스 니펫을 사용하여 동일한 이름의 인스턴스 변수와 생성자 인수를 사용하면 어떻게되는지 살펴 보겠습니다.

<?php

class Student {
    public $name;

    function __construct( $name ) {
        $name = $name;
    }
};

$tom = new Student('Tom');
echo $tom->name;

?>

아무것도 울리지 않는다

<?php

class Student {
    public $name;

    function __construct( $name ) {
        $this->name = $name; // Using 'this' to access the student's name
    }
};

$tom = new Student('Tom');
echo $tom->name;

?>

이것은 ‘Tom’을 에코합니다.


답변

클래스를 만들 때 (대부분의 경우) 인스턴스 변수와 메서드 (일명 함수)가 있습니다. $ this는 해당 인스턴스 변수에 액세스하여 함수가 해당 변수를 가져와 원하는대로 수행 할 수 있도록합니다.

meder의 다른 버전 :

class Person {

    protected $name;  //can't be accessed from outside the class

    public function __construct($name) {
        $this->name = $name;
    }

    public function getName() {
        return $this->name;
    }
}
// this line creates an instance of the class Person setting "Jack" as $name.  
// __construct() gets executed when you declare it within the class.
$jack = new Person("Jack");

echo $jack->getName();

Output:

Jack


답변

$this호출하는 객체에 대한 참조 (상기 방법은 이차 개체의 컨텍스트에서 정적으로 호출되는 경우 상기 방법이 속하는 보통 개체 있지만 아마도 다른 목적).