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


PHP Assertion::readable方法代码示例

本文整理汇总了PHP中Assert\Assertion::readable方法的典型用法代码示例。如果您正苦于以下问题:PHP Assertion::readable方法的具体用法?PHP Assertion::readable怎么用?PHP Assertion::readable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Assert\Assertion的用法示例。


在下文中一共展示了Assertion::readable方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct($directory)
 {
     Assertion::directory($directory);
     Assertion::readable($directory);
     $directory .= substr($directory, -1) === '/' ? '' : '/';
     //add ending slash
     $this->directory = $directory;
 }
开发者ID:mathielen,项目名称:report-write-engine,代码行数:8,代码来源:ExcelFileRepository.php

示例2: testReadable

 public function testReadable()
 {
     Assertion::readable(__FILE__);
     $this->setExpectedException('Assert\\AssertionFailedException', null, Assertion::INVALID_READABLE);
     Assertion::readable(__DIR__ . '/does-not-exist');
 }
开发者ID:GerDner,项目名称:luck-docker,代码行数:6,代码来源:AssertTest.php

示例3: fromFile

 /**
  * Creates a new Doc with the DocStream set to the content of
  * the specified file path.
  *
  * @param $DocType
  * @param $DocMimeType
  * @param $FilePath
  * @return Doc
  *
  * @throws \InvalidArgumentException If the file does not exist or is not readable.
  */
 public static function fromFile($DocType, $DocMimeType, $FilePath)
 {
     Assertion::file($FilePath, "{$FilePath} does not exist.");
     Assertion::readable($FilePath, "{$FilePath} is not readable.");
     return new self($DocType, $DocMimeType, file_get_contents($FilePath));
 }
开发者ID:swisspost-yellowcube,项目名称:yellowcube-php,代码行数:17,代码来源:Doc.php

示例4: setCertificateFilePath

 /**
  * Sets a certificate file path and optional passphrase to use.
  *
  * @param string $certificateFilePath Path to a certificate file.
  * @return Config
  *
  * @throws \InvalidArgumentException If certificate path is invalid.
  */
 public function setCertificateFilePath($certificateFilePath, $passphrase = null)
 {
     Assertion::file($certificateFilePath);
     Assertion::readable($certificateFilePath);
     $this->certificateFilePath = $certificateFilePath;
     $this->soapClientOptions['local_cert'] = $certificateFilePath;
     if (!empty($passphrase)) {
         $this->soapClientOptions['passphrase'] = $passphrase;
     }
     return $this;
 }
开发者ID:swisspost-yellowcube,项目名称:yellowcube-php,代码行数:19,代码来源:Config.php

示例5: __construct

 /**
  * @param string $path
  */
 public function __construct($path)
 {
     Assertion::readable($path);
     $this->setResource(fopen($path, "rb"));
     $this->validate();
 }
开发者ID:metasyntactical,项目名称:xml-tools,代码行数:9,代码来源:FileXmlStream.php


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