Skip to content

Instantly share code, notes, and snippets.

View unglud's full-sized avatar
⛑️
Set your status

Sasha Mat unglud

⛑️
Set your status
View GitHub Profile
@borzilleri
borzilleri / function.cast.php
Created May 7, 2011 00:02
PHP function to cast an object from one class to another.
<?php
/**
* Cast an object into a different class.
*
* Currently this only supports casting DOWN the inheritance chain,
* that is, an object may only be cast into a class if that class
* is a descendant of the object's current class.
*
* This is mostly to avoid potentially losing data by casting across
* incompatable classes.