PHP bir nesnenin sınıfın türünü belirtmek için bir yol

0 Cevap php

Is there a way to specify an object's attribute's type in PHP ? for example, I'd have something like :

class foo{
 public bar $megacool;//this is a 'bar' object
 public bar2 $megasupercool;//this is a 'bar2' object
}


class bar{...}
class bar2{...}

Eğer değilse o PHP'nin gelecek sürümünde, bir gün birinde mümkün olacak eğer, biliyor musunuz?

0 Cevap