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?

Answer Posted / 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       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the php function that removes the first element of the array and returns it?

927


Tell me what is the difference between the functions strstr() and stristr()?

972


What is isset in php?

917


How do you count numbers in php?

922


How to get the ip address of the client?

9124


Tell me in php, objects are they passed by value or by reference?

916


Is php closing tag necessary?

938


Is php used anymore?

927


What is php addslashes?

1008


Can we run php on tomcat server?

999


Which is the latest version of php?

1052


What is isset php?

909


Tell me what is the use of mysql_real_escape_string() function?

945


can we swap two different string using php for example:-- before swapping:-- 1 string :-hello friend, 2 string :-my dear, after swapping that strings will be: 1.hello dear, 2.my friend.

3488


How to repeat a string to a specific number of times in php?

933