本文整理汇总了PHP中safe_map_named函数的典型用法代码示例。如果您正苦于以下问题:PHP safe_map_named函数的具体用法?PHP safe_map_named怎么用?PHP safe_map_named使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了safe_map_named函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: safe_map
/**
* Copy the specified request variable to the member variable of the specified object.
* Do no copy if the member variable is already set.
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
* All Rights Reserved.
*/
function safe_map($request_var, &$focus, $always_copy = false)
{
global $log;
$log->debug("Entering safe_map(" . $request_var . "," . get_class($focus) . "," . $always_copy . ") method ...");
safe_map_named($request_var, $focus, $request_var, $always_copy);
$log->debug("Exiting safe_map method ...");
}
示例2: safe_map
/**
* Copy the specified request variable to the member variable of the specified object.
* Do no copy if the member variable is already set.
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
* All Rights Reserved.
* Contributor(s): ______________________________________..
*/
function safe_map($request_var, &$focus, $always_copy = false)
{
safe_map_named($request_var, $focus, $request_var, $always_copy);
}
示例3: safe_map
/**
* Copy the specified request variable to the member variable of the specified object.
* Do no copy if the member variable is already set.
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
* All Rights Reserved.
* Contributor(s): ______________________________________..
*/
function safe_map($request_var, &$focus, $always_copy = false)
{
global $log;
//changed by dingjianting on 2007-11-05 for php5.2.x
$log->debug("Entering safe_map() method ...");
safe_map_named($request_var, $focus, $request_var, $always_copy);
$log->debug("Exiting safe_map method ...");
}