当前位置: 首页>>代码示例>>PHP>>正文


PHP safe_map_named函数代码示例

本文整理汇总了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 ...");
}
开发者ID:jgjermeni,项目名称:corebos,代码行数:13,代码来源:utils.php

示例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);
}
开发者ID:razorinc,项目名称:sugarcrm-example,代码行数:11,代码来源:utils.php

示例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 ...");
}
开发者ID:Pengzw,项目名称:c3crm,代码行数:15,代码来源:utils.php


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