• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP overload函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中overload函数的典型用法代码示例。如果您正苦于以下问题:PHP overload函数的具体用法?PHP overload怎么用?PHP overload使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了overload函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: initialize

 function initialize()
 {
     # setup database configuration
     if (!$this->_table_name) {
         if (!$this->_base_class) {
             $class = get_class($this);
             while (get_parent_class($class) && !preg_match('/_Base$/i', get_parent_class($class))) {
                 $class = get_parent_class($class);
             }
             $this->_base_class = $class;
         }
         $this->_table_name = Inflector::tableize($this->_base_class);
     }
     $this->_type_name = get_class($this);
     $this->_columns = AdoDBRecord_Tools::get_columns();
     # dynamically overload current class in PHP4 because it doesn't
     # propagate through the class hierarchy
     if (version_compare(PHP_VERSION, "5.0.0") < 0) {
         $const = "OVERLOADED_" . $this->_type_name;
         if (!defined($const)) {
             define($const, $const);
             overload($this->_type_name);
         }
     }
     # call the setup hook
     $this->setup();
 }
开发者ID:kakra,项目名称:adodbrecord,代码行数:27,代码来源:Base.class.php


示例2: overload

 function overload()
 {
     if (function_exists('overload')) {
         if (func_num_args() > 0) {
             foreach (func_get_args() as $class) {
                 if (is_object($class)) {
                     overload(get_class($class));
                 } elseif (is_string($class)) {
                     overload($class);
                 }
             }
         } else {
             overload(get_class($this));
         }
     }
 }
开发者ID:vuong93st,项目名称:w-game,代码行数:16,代码来源:overloadable_php4.php


示例3: _add_to_pool

    /**
     *	@short Adds an object to the object pool.
     *	@param classname Name of the class for the desired object.
     *	@param id Primary key value for the desired object.
     *	@param obj The object to add to the pool.
     */
    private static function _add_to_pool($classname, $id, $obj)
    {
        if (!isset(self::$object_pool[$classname])) {
            self::$object_pool[$classname] = array();
        }
        self::$object_pool[$classname][$id] = $obj;
    }
    /**
     *	@short Retrieves an object from the object pool.
     *	@param classname Name of the class for the desired object.
     *	@param id Primary key value for the desired object.
     */
    private static function _get_from_pool($classname, $id)
    {
        if (!isset(self::$object_pool[$classname]) || !isset(self::$object_pool[$classname][$id])) {
            return NULL;
        }
        return self::$object_pool[$classname][$id];
    }
}
if (version_compare(PHP_VERSION, '5') < 0) {
    if (function_exists("overload")) {
        overload('ActiveRecord');
    }
}
开发者ID:emeraldion,项目名称:zelda,代码行数:31,代码来源:base.php


示例4: __call

    }
    /**
     * SOAP_Client::__call
     *
     * Overload extension support
     * if the overload extension is loaded, you can call the client class
     * with a soap method name
     * $soap = new SOAP_Client(....);
     * $value = $soap->getStockQuote('MSFT');
     *
     * @param string method
     * @param array  args
     * @param string retur_value
     *
     * @return boolean
     * @access public
     */
    function __call($method, $args, &$return_value)
    {
        if (!$this->wsdl) {
            return FALSE;
        }
        #$return_value = call_user_func_array(array(&$this, 'my_' . $method), $args);
        $this->wsdl->matchMethod($method);
        $return_value = $this->call($method, $args);
        return TRUE;
    }
}
if (extension_loaded('overload')) {
    overload('SOAP_Client');
}
开发者ID:GabrielDiniz,项目名称:FluxNetControl,代码行数:31,代码来源:client.php


示例5: make_object_extendable

function make_object_extendable($classname)
{
    if (_PHP_ < 5) {
        overload($classname);
    }
}
开发者ID:laiello,项目名称:hotel-os,代码行数:6,代码来源:obj.extendable.php


示例6: AddSibling

        }
        return $siblingList;
    }
    /**
     * Associates the sibling object to this one
     * @return 
     */
    function AddSibling($sibling)
    {
        if (is_a($sibling, "sibling")) {
            foreach (array_keys($sibling->_objectList) as $key) {
                $otherObject =& $sibling->_objectList[$key];
                if ($otherObject === $this) {
                    return false;
                }
            }
            $found = false;
            foreach ($this->_siblingList as $sibling2) {
                if ($sibling->siblingId > 0 && $sibling->siblingId == $sibling2->siblingId) {
                    $found = true;
                    break;
                }
            }
            if (!$found) {
                $this->_siblingList[] =& $sibling;
            }
        }
    }
}
overload('object');
开发者ID:rafasashi,项目名称:php-object-generator,代码行数:30,代码来源:class.object.php


示例7: clearCache

                clearCache($assoc);
                return true;
            }
        } else {
            //Will use for query cache deleting
        }
    }
    /**
     * Called when serializing a model
     *
     * @return array
     * @access public
     */
    function __sleep()
    {
        $return = array_keys(get_object_vars($this));
        return $return;
    }
    /**
     * Called when unserializing a model
     *
     * @return void
     * @access public
     */
    function __wakeup()
    {
    }
}
// --- PHP4 Only
overload('Model');
// --- PHP4 Only
开发者ID:uwitec,项目名称:eduoa,代码行数:31,代码来源:model_php4.php


示例8: overload

 * CakePHP(tm) :  Rapid Development Framework <http://www.cakephp.org/>
 * Copyright 2005-2007, Cake Software Foundation, Inc.
 *								1785 E. Sahara Avenue, Suite 490-204
 *								Las Vegas, Nevada 89104
 *
 * Licensed under The MIT License
 * Redistributions of files must retain the above copyright notice.
 *
 * @filesource
 * @copyright		Copyright 2005-2007, Cake Software Foundation, Inc.
 * @link				http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
 * @package			cake
 * @subpackage		cake.cake.libs.model
 * @since			CakePHP(tm) v 0.10.0.0
 * @version			$Revision: 4409 $
 * @modifiedby		$LastChangedBy: phpnut $
 * @lastmodified	$Date: 2007-02-02 07:20:59 -0600 (Fri, 02 Feb 2007) $
 * @license			http://www.opensource.org/licenses/mit-license.php The MIT License
 */
/**
 * Load the model class based on the version of PHP.
 *
 */
if (phpversion() < 5) {
    require LIBS . 'model' . DS . 'model_php4.php';
    if (function_exists("overload")) {
        overload("Model");
    }
} else {
    require LIBS . 'model' . DS . 'model_php5.php';
}
开发者ID:carriercomm,项目名称:pastebin-5,代码行数:31,代码来源:model.php


示例9: sub

    }
    function sub($part, $num = 1)
    {
        return $this->__dateOperation('-', $part, $num);
    }
    function substract($part, $num = 1)
    {
        return $this->__dateOperation('-', $part, $num);
    }
    function __toString()
    {
        return $this->getDateTime();
    }
}
if (function_exists('overload') && phpversion() < 5) {
    overload('HessDateTime');
}
/*
// Tests

$date1 = new DateTime('2004-09-06 8:00:00');
$date2 = new DateTime('2004-09-06 9:00:00');
$date3 = new DateTime('2004-09-06 8:00:00');


if($date1->isBefore($date2))
	echo 'si<br>';
if($date2->isAfter($date1))
	echo 'si<br>';
if($date1->equals($date3))
	echo 'si<br>';
开发者ID:kotishe,项目名称:API-for-AOServer,代码行数:31,代码来源:DateTime.php


示例10: SetObjectList

    function SetObjectList($list)
    {
        $this->_objectList = array();
        $existingObjectList = $this->GetObjectList();
        foreach ($existingObjectList as $object) {
            $object->parent_Id = '';
            $object->Save(false);
        }
        $this->_objectList =& $list;
    }
    /**
     * Associates the object object to this one
     * @return 
     */
    function AddObject($object)
    {
        $object->parent_Id = $this->parent_Id;
        $found = false;
        foreach ($this->_objectList as $object2) {
            if ($object->objectId > 0 && $object->objectId == $object2->objectId) {
                $found = true;
                break;
            }
        }
        if (!$found) {
            $this->_objectList[] =& $object;
        }
    }
}
overload('parent_');
开发者ID:rafasashi,项目名称:php-object-generator,代码行数:30,代码来源:class.parent_.php


示例11: getCmdResult

    /**
     * getCmdResult 
     *  returns the result returned by the command, or error in case the command failed. 
     * @access public
     * @return mixed string on sucess, false and error on faliure.
     */
    function getCmdResult()
    {
        $descriptorspec = array(0 => array('pipe', 'r'), 1 => array('pipe', 'w'), 2 => array('pipe', 'w'));
        $proc = proc_open($this->getCmdForExec(), $descriptorspec, $pipes);
        //so long...
        fclose($pipes[0]);
        $stdout = NULL;
        $stderr = NULL;
        foreach (array('stdout' => $pipes[1], 'stderr' => $pipes[2]) as $pipename => $piperes) {
            while (!feof($piperes)) {
                ${$pipename} .= fgets($piperes);
            }
            fclose($piperes);
        }
        if (!empty($stderr)) {
            trigger_error(sprintf('Command %s failed : %s', htmlspecialchars($this->command), htmlspecialchars($stderr)));
            return false;
        }
        return $stdout;
    }
}
//PHP4 requires this non-sense
if (PHP_VERSION < 5) {
    overload('CommandExecution');
}
开发者ID:negram,项目名称:flyspray,代码行数:31,代码来源:class.commandexecution.php


示例12: __get_foo

    function __get_foo(&$value)
    {
        debug("Fetching foo...");
        $value = 'BAR';
    }
    function __set($propname, $value)
    {
        debug("Setting {$propname} to {$value}...");
        $this->props[$propname] = $value;
        return true;
    }
    function __call($methodname, $args, &$ret)
    {
        debug("Calling {$methodname}...");
        $func = $this->methods[$methodname];
        if (isset($func)) {
            $ret = call_user_func_array($func, $args);
        }
        return true;
    }
}
overload('OverloadMe');
$obj =& new OverloadMe();
// Property overloading
$obj->someprop = 'BAM BAM GO BAM';
print $obj->someprop;
// Print out property $foo which is a special case and
// directly handled
print $obj->foo;
// Method overloading
print $obj->convn2br("\n\nYABBADABBADOOOOO\n\n");
开发者ID:SandyS1,项目名称:presentations,代码行数:31,代码来源:overload.php


示例13: GetObject

                    }
                    if (isset($this->pog_attribute_type[$fcv_array[$i][0]]['db_attributes']) && $this->pog_attribute_type[$fcv_array[$i][0]]['db_attributes'][0] != 'NUMERIC' && $this->pog_attribute_type[$fcv_array[$i][0]]['db_attributes'][0] != 'SET') {
                        $pog_query = $pog_query . "`" . $fcv_array[$i][0] . "` " . $fcv_array[$i][1] . " '" . $this->Escape($fcv_array[$i][2]) . "'";
                    } else {
                        $pog_query = $pog_query . "`" . $fcv_array[$i][0] . "` " . $fcv_array[$i][1] . " '" . $fcv_array[$i][2] . "'";
                    }
                }
            }
            return Database::NonQuery($pog_query, $connection);
        }
    }
    /**
     * Associates the object object to this one
     * @return boolean
     */
    function GetObject()
    {
        $object = new object();
        return $object->Get($this->objectId);
    }
    /**
     * Associates the object object to this one
     * @return 
     */
    function SetObject(&$object)
    {
        $this->objectId = $object->objectId;
    }
}
overload('child');
开发者ID:rafasashi,项目名称:php-object-generator,代码行数:30,代码来源:class.child.php


示例14: createDoceboDOMObject

        if ($contextnode === NULL) {
            $result = $xpath->xpath_eval($expression);
        } else {
            $result = $xpath->xpath_eval($expression, DoceboDOMNode::getRef($contextnode));
        }
        return createDoceboDOMObject($result->nodeset, FALSE);
    }
}
overload("DoceboDOMNode");
overload("DoceboDOMText");
overload("DoceboDOMDocument");
overload("DoceboDOMDocumentType");
overload("DoceboDOMAttr");
overload("DoceboDOMElement");
overload("DoceboDOMNodeList");
overload("DoceboDOMNamedNodeMap");
function _doceboNodePropertyGet(&$obj, $param, &$value)
{
    $ret_bool = TRUE;
    $secondChoice = FALSE;
    switch ($param) {
        case "nodeName":
            $value = $obj->nodeRef->node_name();
            return $ret_bool;
        case "nodeValue":
            $value = $obj->nodeRef->node_value();
            return $ret_bool;
        case "nodeType":
            $value = $obj->nodeRef->node_type();
            return $ret_bool;
        case "parentNode":
开发者ID:abhinay100,项目名称:forma_app,代码行数:31,代码来源:lib.domxml4.php


示例15: __call

} else {
    if (phpversion() < 5) {
        $class = <<<TEXT
        class XML_FastCreate_Overload extends PEAR {
            function __call(\$method, \$args, &\$return)
            {
                if (\$method != __CLASS__) {
                    \$return = \$this->_call(\$method, \$args);
                }
                return true;
            }
        }
TEXT;
        eval($class);
        if (function_exists('overload')) {
            overload('XML_FastCreate_Overload');
        }
    } else {
        $class = <<<TEXT
        class XML_FastCreate_Overload extends PEAR {
            function __call(\$method, \$args) 
            {
                if (\$method != __CLASS__) {
                    return \$this->_call(\$method, \$args);
                }
            }
        }
TEXT;
        eval($class);
    }
}
开发者ID:vinnivinsachi,项目名称:Vincent-DR,代码行数:31,代码来源:FastCreate.php


示例16: isset

            $ident = isset($this) && is_a($this, __CLASS__) ? get_class($this) : __CLASS__;
        }
        NDebug::debug($message, $debug_type, $log_level, $ident);
    }
}
class NModelError extends PEAR_Error
{
    /**
     * NModelError constructor.
     *
     * @param mixed      NModel error code, or string with error message.
     * @param integer    what "error mode" to operate in
     * @param integer    what error level to use for $mode & PEAR_ERROR_TRIGGER
     * @param mixed      additional debug info, such as the last query
     *
     * @access public
     *
     * @see PEAR_Error
     */
    function Model_Error($code = N_DAO_ERROR, $mode = PEAR_ERROR_RETURN, $level = E_USER_NOTICE, $debuginfo = null)
    {
        if (is_int($code)) {
            $this->PEAR_Error('N_DAO Error: ' . NModel::errorMessage($code), $code, $mode, $level, $debuginfo);
        } else {
            $this->PEAR_Error("N_DAO Error: {$code}", N_DAO_ERROR, $mode, $level, $debuginfo);
        }
    }
}
if (version_compare(phpversion(), "5") < 0) {
    overload('NModel');
}
开发者ID:nonfiction,项目名称:nterchange,代码行数:31,代码来源:n_model.php


示例17: CCSystemAPIClient

 * Provides an interface to the System class of the CentovaCast XML API.
 */
class CCSystemAPIClient extends CCBaseAPIClient
{
    var $classname = 'system';
    function CCSystemAPIClient($ccurl)
    {
        $this->cc_initialize($ccurl);
    }
    function build_argument_payload($functionargs)
    {
        if (count($functionargs) < 2) {
            trigger_error(sprintf('Function %s requires a minimum of 2 arguments, %d given', $this->methodname, count($functionargs)), E_USER_WARNING);
        }
        $adminpassword = $functionargs[0];
        $arguments = $functionargs[1];
        if (!is_array($arguments)) {
            $arguments = array();
        }
        $arguments = array_merge(array('password' => $adminpassword), $arguments);
        return $this->build_argument_xml($arguments);
    }
}
if (!defined('CCAPI_NO_OVERLOAD')) {
    if (function_exists('overload')) {
        overload('CCSystemAPIClient');
        overload('CCServerAPIClient');
    } elseif (version_compare(PHP_VERSION, '5.0.0', '<')) {
        die('The CentovaCast PHP API client requires that object overloading support is built into PHP.');
    }
}
开发者ID:Ryan-Nolan,项目名称:boxbilling,代码行数:31,代码来源:ccapiclient.php


示例18: sub

    }
    function sub($part, $num = 1)
    {
        return $this->__dateOperation('-', $part, $num);
    }
    function substract($part, $num = 1)
    {
        return $this->__dateOperation('-', $part, $num);
    }
    function __toString()
    {
        return $this->getHessian_DateTime();
    }
}
if (function_exists('overload') && phpversion() < 5) {
    overload('Hessian_DateTime');
}
/*
// Tests

$date1 = new Hessian_DateTime('2004-09-06 8:00:00');
$date2 = new Hessian_DateTime('2004-09-06 9:00:00');
$date3 = new Hessian_DateTime('2004-09-06 8:00:00');


if($date1->isBefore($date2))
	echo 'si<br>';
if($date2->isAfter($date1))
	echo 'si<br>';
if($date1->equals($date3))
	echo 'si<br>';
开发者ID:robstar,项目名称:HessianPHP,代码行数:31,代码来源:DateTime.php


示例19: isset

        $options = $_DB_DATAOBJECT['CONFIG'];
        $null_strings = !isset($options['disable_null_strings']) || $options['disable_null_strings'] === false;
        $crazy_null = isset($options['disable_null_strings']) && is_string($options['disable_null_strings']) && strtolower($options['disable_null_strings'] === 'full');
        if ($null_strings && $isset && is_string($value) && strtolower($value) === 'null') {
            return true;
        }
        if ($crazy_null && !$isset) {
            return true;
        }
        return false;
    }
    /* ---- LEGACY BC METHODS - NOT DOCUMENTED - See Documentation on New Methods. ---*/
    function _get_table()
    {
        return $this->table();
    }
    function _get_keys()
    {
        return $this->keys();
    }
}
// technially 4.3.2RC1 was broken!!
// looks like 4.3.3 may have problems too....
if (!defined('DB_DATAOBJECT_NO_OVERLOAD')) {
    if (phpversion() != '4.3.2-RC1' && version_compare(phpversion(), "4.3.1") > 0) {
        if (version_compare(phpversion(), "5") < 0) {
            overload('DB_DataObject');
        }
        $GLOBALS['_DB_DATAOBJECT']['OVERLOADED'] = true;
    }
}
开发者ID:bigpussy,项目名称:statusnet,代码行数:31,代码来源:DataObject.php


示例20: HessianClient

 **/
class HessianClient
{
    /**
     * Constructor, requires the url of the remote Hessian service
     *  
     * @param string url Url of the remote service
     **/
    function HessianClient($url, $options = false)
    {
        $this->__hessian__proxy__ =& Hessian::getHessianProxy($url, $options);
    }
    /**
     * PHP magic function used to execute a remote call to a remote Hessian service.
     *  
     * @param string method Method name
     * @param array params Arguments
     * @param mixed return Returned value
     * @return mixed True if PHP 4, return value of the function otherwise
     * @access public 
     **/
    function __call($method, $params, &$return)
    {
        $return = $this->__hessian__proxy__->call($method, $params);
        return true;
    }
}
// Call the overload() function when appropriate
if (function_exists('overload')) {
    overload('HessianClient');
}
开发者ID:kotishe,项目名称:API-for-AOServer,代码行数:31,代码来源:HessianClient4.php



注:本文中的overload函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP override_value_to_string函数代码示例发布时间:2022-05-15
下一篇:
PHP overlib_link函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap