Squiz Matrix
4.12.2
Main Page
Related Pages
Namespaces
Data Structures
Files
File List
All
Data Structures
Namespaces
Functions
Variables
Pages
mysource_object.inc
1
<?php
25
class
MySource_Object
26
{
27
35
var $_tmp;
36
37
43
function
MySource_Object
()
44
{
45
$this->_tmp = Array();
46
47
}
//end constructor
48
49
57
function
__sleep
()
58
{
59
$object_vars = get_object_vars($this);
60
unset($object_vars[
'_tmp'
]);
61
return
array_keys($object_vars);
62
63
}
//end __sleep()
64
65
72
function
__wakeup
()
73
{
74
$this->_tmp = Array();
75
76
}
//end __wakeup()
77
78
79
}
//end class
80
81
?>
squiz_matrix
core
include
mysource_object.inc
Generated on Tue Jan 29 2013 14:04:48 for Squiz Matrix by
1.8.3.1