本文整理汇总了PHP中objectWrapperBase::shouldWrap方法的典型用法代码示例。如果您正苦于以下问题:PHP objectWrapperBase::shouldWrap方法的具体用法?PHP objectWrapperBase::shouldWrap怎么用?PHP objectWrapperBase::shouldWrap使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类objectWrapperBase
的用法示例。
在下文中一共展示了objectWrapperBase::shouldWrap方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: internalExecute
/**
* Will execute the executeImpl method with a little change:
* the ouput will be an associative-list of name + OBJECTs - the originals NOT THE WRAPPERS !
*/
public function internalExecute($add_extra_debug_data = false)
{
// ignore ticketType
$this->response_type = $this->getP("format", self::DEFAULT_FORMAT);
//
$this->force_ticket_check = false;
// HERE AND ONLY HERE !!
if ($this->response_type == kalturaWebserviceRenderer::RESPONSE_TYPE_PHP_OBJECT) {
// return objects - NOT the wrapped objects
objectWrapperBase::shouldWrap(false);
}
$res = $this->execute($add_extra_debug_data);
return $res;
}