芝麻web文件管理V1.00
编辑当前文件:/home/strato/chroot/opt/RZphp80/includes/Math/Finance_FunctionParameters.php
$value) { $this->parameters[$name] = $value; } } /** * Method to be called statically to create Singleton * * @param array Parameters (variables values of the function) to be preserved * @param bool Whether the Singleton should be reset * @static * @access public */ function &getInstance($parameters = array(), $reset = False) { static $singleton; if ($reset) $singleton = null; if (!is_object($singleton)) { $singleton = new Math_Finance_FunctionParameters(True, $parameters); } return $singleton; } } ?>