Hướng dẫn is_a php

Định nghĩa hàm is_a() trong PHP

Hàm is_a() trong PHP kiểm tra xem đối tượng đã cho là của class_name này hoặc có lớp cha là lớp class_name.

Cú pháp Hàm is_a() trong PHP

Cú pháp của hàm is_a() trong PHP là như sau:

is_a ( $object, $class_name )

Tham số

  • object: Bắt buộc. Đối tượng được kiểm tra
  • class: Bắt buộc. Tên lớp

Trả về giá trị

Trả về TRUE nếu đối tượng đã cho là của class_name này hoặc có lớp cha là lớp class_name, nếu không là trả về FALSE.

Ví dụ minh họa cách sử dụng của hàm is_a() trong PHP:

<?php
   class hoclaptrinh
   {
      var $hoclaptrinh = 'fromatoz';
   }

   // tạo một đối tượng mới
   $WF = new hoclaptrinh();

   if (is_a($WF, 'hoclaptrinh')) {
      echo "$WF vẫn là hoclaptrinh";
   }
?> 

___Xem thêm:

PHP là gì?___

Kiểm tra xem đối tượng đã cho là của class_name này hoặc có lớp cha là lớp class_name.

Trả về TRUE nếu đối tượng đã cho là của class_name này hoặc có lớp cha là lớp class_name, nếu không là trả về FALSE.

Lưu chương trình trên trong một file có tên là test.php trong htdocs, sau đó mở trình duyệt và gõ địa chỉ http://localhost:8080/test.php sẽ cho kết quả:

Đã có app VietJack trên điện thoại, giải bài tập SGK, SBT Soạn văn, Văn mẫu, Thi online, Bài giảng....miễn phí. Tải ngay ứng dụng trên Android và iOS.

Hướng dẫn is_a php

Hướng dẫn is_a php

Theo dõi chúng tôi miễn phí trên mạng xã hội facebook và youtube:

Các bạn ở Hà Nội có thể tham gia khóa học thứ 9 của vietjackteam (đang tuyển sinh) vào cuối tháng 10/2018 do anh Nguyễn Thanh Tuyền, admin vietjack.com trực tiếp giảng dạy tại Hà Nội. Chi tiết nội dung khóa học tham khỏa link : Khóa học Java.Các bạn học CNTT, điện tử viễn thông, đa phương tiện, điện-điện tử, toán tin có thể theo học khóa này. Số lượng các công việc Java hoặc .NET luôn gấp ít nhất 3 lần Android hoặc iOS trên thị trường tuyển dụng. Khóa online= Đi phỏng vấn, Khóa offline= Đi phỏng vấn+ 1.5 tháng thực tập ngoài doanh nghiệp.

Mọi người có thể xem demo nội dung khóa học tại địa chỉ Video demo khóa học Offline

Các bạn ở xa học không có điều kiện thời gian có thể tham dự khóa Java online để chủ động cho việc học tập. Từ tháng 4/2018, VietJack khuyến mại giá SỐC chỉ còn 250k cho khóa học, các bạn có thể trả lại tiền nếu không hài lòng về chất lượng trong 1 tháng, liên hệ facebook admin fb.com/tuyen.vietjack để thanh toán chuyển khoản hoặc thẻ điện thoại, khóa học bằng Tiếng Việt với gần 100 video, các bạn có thể chủ động bất cứ lúc nào, và xem mãi mãi. Thông tin khóa học tại Khóa học Java Online trên Udemy

Follow fanpage của team https://www.facebook.com/vietjackteam/ hoặc facebook cá nhân Nguyễn Thanh Tuyền https://www.facebook.com/tuyen.vietjack để tiếp tục theo dõi các loạt bài mới nhất về Java,C,C++,Javascript,HTML,Python,Database,Mobile.... mới nhất của chúng tôi.

Định nghĩa hàm is_a() trong PHP

Hàm is_a() trong PHP kiểm tra xem đối tượng đã cho là của class_name này hoặc có lớp cha là lớp class_name.

Cú pháp Hàm is_a() trong PHP

Cú pháp của hàm is_a() trong PHP là như sau:

is_a ( $object, $class_name )

Tham số

  • object: Bắt buộc. Đối tượng được kiểm tra
  • class: Bắt buộc. Tên lớp

Trả về giá trị

Trả về TRUE nếu đối tượng đã cho là của class_name này hoặc có lớp cha là lớp class_name, nếu không là trả về FALSE.

Ví dụ minh họa cách sử dụng của hàm is_a() trong PHP:

<?php
   class hoctv
   {
      var $hoctv = 'fromatoz';
   }

   // tạo một đối tượng mới
   $WF = new hoctv();

   if (is_a($WF, 'hoctv')) {
      echo "$WF vẫn là hoctv";
   }
?> 

(PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8)

is_aChecks if the object is of this object type or has this object type as one of its parents

Description

is_a(mixed $object_or_class, string $class, bool $allow_string = false): bool

Parameters

object_or_class

A class name or an object instance.

class

The class name

allow_string

If this parameter set to false, string class name as object_or_class is not allowed. This also prevents from calling autoloader if the class doesn't exist.

Return Values

Returns true if the object is of this class or has this class as one of its parents, false otherwise.

Examples

Example #1 is_a() example

<?php
// define a class
class WidgetFactory
{
  var 
$oink 'moo';
}
// create a new object
$WF = new WidgetFactory();

if (

is_a($WF'WidgetFactory')) {
  echo 
"yes, \$WF is still a WidgetFactory\n";
}
?>

Example #2 Using the instanceof operator

<?php
if ($WF instanceof WidgetFactory) {
    echo 
'Yes, $WF is a WidgetFactory';
}
?>

See Also

  • get_class() - Returns the name of the class of an object
  • get_parent_class() - Retrieves the parent class name for object or class
  • is_subclass_of() - Checks if the object has this class as one of its parents or implements it

Ronald Locke

5 years ago

Please note that you have to fully qualify the class name in the second parameter.

A use statement will not resolve namespace dependencies in that is_a() function.

<?php
namespace foo\bar;

class

A {};
class
B extends A {};
?>

<?php
namespace har\var;

use

foo\bar\A;
$foo = new foo\bar\B();is_a($foo, 'A'); // returns false;
is_a($foo, 'foo\bar\A'); // returns true;
?>

Just adding that note here because all examples are without namespaces.

Aron Budinszky

11 years ago

Be careful! Starting in PHP 5.3.7 the behavior of is_a() has changed slightly: when calling is_a() with a first argument that is not an object, __autoload() is triggered!

In practice, this means that calling is_a('23', 'User'); will trigger __autoload() on "23". Previously, the above statement simply returned 'false'.

More info can be found here:
https://bugs.php.net/bug.php?id=55475

Whether this change is considered a bug and whether it will be reverted or kept in future versions is yet to be determined, but nevertheless it is how it is, for now...

p dot scheit at zweipol dot net

15 years ago

At least in PHP 5.1.6 this works as well with Interfaces.

<?php
interface test {
  public function
A();
}

class

TestImplementor implements test {
  public function
A () {
    print
"A";
  }
}
$testImpl = new TestImplementor();var_dump(is_a($testImpl,'test'));
?>

will return true

cesoid at yahoo dot com

16 years ago

is_a returns TRUE for instances of children of the class.

For example:

class Animal
{}

class Dog extends Animal
{}

$test = new Dog();

In this example is_a($test, "Animal") would evaluate to TRUE as well as is_a($test, "Dog").

This seemed intuitive to me, but did not seem to be documented.

dkrupyanskiy[at]gmail

4 years ago

Looks like the function signature given in description is wrong. Actually it can take a string  as a first parameter in the case if $allow_string is set to true.

It took some time to find out how the last parameter should be used. Please consider the following example

<?phpclass Foo{}spl_autoload_register(
    function(
$classname){
       
printf('autoload has been triggered for %s%s', $classname, PHP_EOL);
    }
);
var_dump(is_a('UndefinedClassName', Foo::class, true));?>

eitan at mosenkis dot net

10 years ago

As of PHP 5.3.9, is_a() seems to return false when passed a string for the first argument. Instead, use is_subclass_of() and, if necessary for your purposes, also check if the two arguments are equal, since is_subclass_of('foo', 'foo') will return false, while is_a('foo', 'foo') used to return true.