![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/vendor/laminas/laminas-view/src/Model/ |
<?php declare(strict_types=1); namespace Laminas\View\Model; use Laminas\Json\Json; use Laminas\Stdlib\ArrayUtils; use Traversable; class JsonModel extends ViewModel { /** * JSON probably won't need to be captured into a * a parent container by default. * * @var string|null */ protected $captureTo; /** * JSONP callback (if set, wraps the return in a function call) * * @var string|null */ protected $jsonpCallback; /** * JSON is usually terminal * * @var bool */ protected $terminate = true; /** * Set the JSONP callback function name * * @param string $callback * @return JsonModel */ public function setJsonpCallback($callback) { $this->jsonpCallback = $callback; return $this; } /** * Serialize to JSON * * @return string */ public function serialize() { $variables = $this->getVariables(); if ($variables instanceof Traversable) { $variables = ArrayUtils::iteratorToArray($variables); } $options = [ 'prettyPrint' => $this->getOption('prettyPrint'), ]; if (null !== $this->jsonpCallback) { return $this->jsonpCallback . '(' . Json::encode($variables, false, $options) . ');'; } return Json::encode($variables, false, $options); } }