Type casting for user defined objects

Clash Royale CLAN TAG #URR8PPP Type casting for user defined objects Just like we do with __ToString, is there a way to define a method for casting? $obj = (MyClass) $another_class_obj; Why would you ever want to cast anything in PHP? You can just call whatever methods you want anyway. – n3rd Jul 18 '09 at 11:14 You can't call those methods if they don't exist in the class -- you may need to typecast one user class to another in order to call the functions directly using the -> operator – Josh Jul 18 '09 at 15:47 Josh, in that case, there must be something wrong in the application flow. – Ionuț G. Stan Jul 18 '09 at 19:25 I feel your judgement may be hasty; however I would agree that gnarf's solution for creating a new object is better as it allows logic for converting between classes. – Josh Jul 18 '09 at 20:59 8 Answers 8 There is no need to type cast in php. Edit: Since this topic seems to cause...