本文整理匯總了PHP中Zend\View\Model\JsonModel::setOption方法的典型用法代碼示例。如果您正苦於以下問題:PHP JsonModel::setOption方法的具體用法?PHP JsonModel::setOption怎麽用?PHP JsonModel::setOption使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Zend\View\Model\JsonModel
的用法示例。
在下文中一共展示了JsonModel::setOption方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: saveAuthJson
/**
* Saves auth.json file
*
* @param string $username
* @param string $password
* @return bool
* @throws \Exception
*/
public function saveAuthJson($username, $password)
{
$authContent = [self::KEY_HTTPBASIC => [$this->getCredentialBaseUrl() => [self::KEY_USERNAME => "{$username}", self::KEY_PASSWORD => "{$password}"]]];
$json = new JsonModel($authContent);
$json->setOption('prettyPrint', true);
$jsonContent = $json->serialize();
return $this->getDirectory()->writeFile(DirectoryList::COMPOSER_HOME . DIRECTORY_SEPARATOR . $this->pathToAuthFile, $jsonContent) && $this->getDirectory()->changePermissions(DirectoryList::COMPOSER_HOME . DIRECTORY_SEPARATOR . $this->pathToAuthFile, \Magento\Framework\Filesystem\DriverInterface::WRITEABLE_FILE_MODE);
}
示例2: saveAuthJson
/**
* Saves auth.json file
*
* @param string $username
* @param string $password
* @return bool
* @throws \Exception
*/
public function saveAuthJson($username, $password)
{
$authContent = [self::KEY_HTTPBASIC => [$this->getCredentialBaseUrl() => [self::KEY_USERNAME => "{$username}", self::KEY_PASSWORD => "{$password}"]]];
$json = new JsonModel($authContent);
$json->setOption('prettyPrint', true);
$jsonContent = $json->serialize();
return $this->getDirectory()->writeFile(DirectoryList::COMPOSER_HOME . DIRECTORY_SEPARATOR . $this->pathToAuthFile, $jsonContent);
}
示例3: saveAuthJson
/**
* Saves auth.json file
*
* @param string $username
* @param string $password
* @return bool
* @throws \Exception
*/
public function saveAuthJson($username, $password)
{
$directory = $this->filesystem->getDirectoryWrite(DirectoryList::COMPOSER_HOME);
$authContent = [PackagesAuth::KEY_HTTPBASIC => [$this->getCredentialBaseUrl() => [PackagesAuth::KEY_USERNAME => "{$username}", PackagesAuth::KEY_PASSWORD => "{$password}"]]];
$json = new \Zend\View\Model\JsonModel($authContent);
$json->setOption('prettyPrint', true);
$jsonContent = $json->serialize();
return $directory->writeFile(self::PATH_TO_AUTH_FILE, $jsonContent);
}