How to Fix ‘Use of “self” in callables is deprecated’ PHP Error?

Bài viết nóng

Why Does This Happen?

In PHP 8.2, the use of self in callables was deprecated, which means the following are no longer valid:

'self::method'
['self', 'method']

If you’re using either of the above syntax, it will throw the following error:

Deprecated: Use of "self" in callables is deprecated

How to Fix the Issue?

Fixing this issue is very straightforward, you can simply replace “self” with self::class. This means, you would use the following:

self::class . '::method' // instead of 'self::method'
[self::class, 'method'] // instead of ['self', 'method']

For example, the following code will result in the deprecation notice:

class Calculator
{
  public function addOne(int $num): int
  {
    return $num + 1;
  }

  public function addOneToAll(array $nums): array
  {
    // Deprecated: Use of "self" in callables is deprecated
    return array_map(['self', 'addOne'], $nums);
  }
}

$calc = new Calculator();
var_dump($calc->addOneToAll([1, 2, 3, 4]));

You can fix this, for example, in the following way:

class Calculator
{
  public function addOne(int $num): int
  {
    return $num + 1;
  }

  public function addOneToAll(array $nums): array
  {
    return array_map([self::class, 'addOne'], $nums);
  }
}

$calc = new Calculator();
var_dump($calc->addOneToAll([1, 2, 3, 4])); // [2, 3, 4, 5]

This post was published  by Daniyal Hamid. Daniyal currently works as the Head of Engineering in Germany and has 20+ years of experience in software engineering, design and marketing. Please show your love and support by sharing this post.

Lời khuyên: Bài viết này được cập nhật lần cuối vào 2024-07-06 20:29:58, một số bài viết có giới hạn thời gian, nếu có lỗi hoặc đã hết hạn, vui lòng để lại bên dưới tin nhắn hoặc liên hệ
© Thông báo bản quyền
THE END
Nếu bạn thích, xin vui lòng hỗ trợ.
Thích15 Chia sẻ
Bình luận Tổng số 1
Bạn được chào đón để lại những hiểu biết có giá trị của bạn!
Gửi

Tên nick

Ngẫu nhiên
Chọn Bình luận Ngẫu nhiên
Có nhiều hơn nữa không? Không đủ!
Hủy bỏ
Tên nickThông thườngBiểu lộMã CodeHình ảnh