Hi Just like we do with __ToString, is there a way to define a method for casting?
$obj = (MyClass) $another_class_obj;
|
1
|
Hi Just like we do with __ToString, is there a way to define a method for casting?
|
||||||||||
|
|
|
I do not believe there is a overloading operator in PHP to handle that, however:
Is one way to handle it. |
||
|
|
|
|
There is no need to type cast in php. Edit: Since this topic seems to cause some confusion, I thought I'd elaborate a little. In languages such as Java, there are two things that may carry type. The compiler has a notion about type, and the run time has another idea about types. The compilers types are tied to variables, whereas the run time engine tracks the type of values (Which are assigned to variables). The variable types are known at compile time, whereas the value types are only known at run time. If a piece of input code violates the compilers type system, the compiler will barf and halt compilation. In other words, it's impossible to compile a piece of code that violates the static type system. This catches a certain class of errors. For example, take the following piece of (simplified) Java code:
If we now did this:
we would be fine, since
The compiler would give an error, since the method Enter type casting:
Here we tell the compiler that the variable It's important to note that all this happens in the compiler - That is, it happens before the code even runs. Java can still get in to run time type errors. For example, if you did this:
The above code is valid for the compiler, but at run time, you'll get an exception, since the cast from Meanwhile, back at the PHP-farm. The following is valid to the PHP-compiler - It'll happily turn this into executable byte code, but you'll get a run time error:
This is because PHP variables don't have type. The compiler has no idea about what run time types are valid for a variable, so it doesn't try to enforce it. You don't specify the type explicitly as in Java either. There are type hints, yes, but these are simply run time contracts. The following is still valid:
Even though PHP variables don't have types, the values still do. A particular interesting aspect of PHP, is that it is possible to change the type of a value. For example:
This feature some times confused with type casting, but that is a misnomer. The type is still a property of the value, and the type-change happens in runtime - not at compile time. The ability to change type is also quite limited in PHP. It is only possible to change type between simple types - not objects. Thus, it isn't possible to change the type from one class to another. You can create a new object and copy the state, but changing the type isn't possible. PHP is a bit of an outsider in this respect; Other similar languages treat classes as a much more dynamic concept than PHP does. Another similar feature of PHP is that you can clone a value as a new type, like this:
Syntactically this looks a lot like how a typecast is written in statically typed languages. It's therefore also often confused with type casting, even though it is still a runtime type-conversion. To summarise: Type casting is an operation that changes the type of a variable (not the value). Since variables are without type in PHP, it is not only impossible to do, but a nonsensical thing to ask in the first place. |
||||||||||||||
|
|
|
Here's a function to change the class of an object:
In case it's not clear, this is not my function, it was taken from a post by "toma at smartsemantics dot com" on http://www.php.net/manual/en/language.types.type-juggling.php#50791 |
||||||||||||
|
|
|
I reworked the function Josh posted (which will error because of the undefined $new_class variable). Here's what I got:
It works just like you'd expect a class cast to work. You could build something similar for accessing class members - but I don't think I would ever need that, so i'll leave it to someone else. Boo to all the jerks that say "php doesn't cast" or "you don't need to cast in php". Bullhockey. Casting is an important part of object oriented life, and I wish I could find a better way to do it than ugly serialization hacks. So thank you Josh! |
|||
|