Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


"$this" what type of object it is?

Answers were Sorted based on User's Feedback



"$this" what type of object it is?..

Answer / venky

$this represents the current working class.
if you are accessing the variable or function with in the
same class then $this represents the current working object.
for ex:

class Test{

function fn_testing($a)
{
$a++;
return $a;

}
$c=$this->fn_tesing(1);
}

Is This Answer Correct ?    6 Yes 1 No

"$this" what type of object it is?..

Answer / kapil dhiman

<?php
class DemoTesting{

public $val="India is great";

public function checkThis()
{
//$this-> object of current class
echo $this->val;

}

}

$obj= new DemoTesting();
$obj->checkThis();
?>

Is This Answer Correct ?    5 Yes 0 No

Post New Answer

More PHP Interview Questions

What are the uses of explode() function?

0 Answers  


What are the different types of Errors in PHP?

20 Answers   Cisco, TCS, Troop Software,


Is php an api?

0 Answers  


How can we take a backup of a mysql table and how can we restore it. ?

7 Answers   Brain Infosys, Oracle,


What are the differences between php3 and php4 and php5? What is the current stable version of php? What advance thing in php7?

0 Answers  


What is the difference between javascript and php?

0 Answers  


How can we access the data sent through the url with the post method?

0 Answers  


what is hidden variable? what is its difference with the normal variable...

2 Answers   Shine,


Explain the types of functions for Splitting String?

0 Answers  


Which is incorrect with respect to separating php code and html?

0 Answers  


What is the functionality of the function strstr and stristr?

2 Answers  


What are the two main string operators?

0 Answers  


Categories