Skip to content

Instantly share code, notes, and snippets.

View natmchugh's full-sized avatar

Nathaniel McHugh natmchugh

View GitHub Profile
@natmchugh
natmchugh / gist:3169075
Created July 24, 2012 09:29
call by reference example
<?php
class A {
function callByRef(&$var) {
$var->foo = 'bar';
$var = new stdclass;
$var->baz = 'bat';
}
function callOnObject($var) {