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


PHP Zend_Validate_File_Hash类代码示例

本文整理汇总了PHP中Zend_Validate_File_Hash的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Validate_File_Hash类的具体用法?PHP Zend_Validate_File_Hash怎么用?PHP Zend_Validate_File_Hash使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: addHash

 /**
  * Adds the md5 hash for one or multiple files
  *
  * @param  string|array $hash      Hash to check for
  * @param  string       $algorithm (Depreciated) Algorithm to use, fixed to md5
  * @return Zend_Validate_File_Hash Provides a fluent interface
  */
 public function addHash($hash, $algorithm = 'md5')
 {
     parent::addHash($hash, 'md5');
     return $this;
 }
开发者ID:Velrok,项目名称:wg-organizer,代码行数:12,代码来源:Md5.php

示例2: testAddHash

 /**
  * Ensures that addHash() returns expected value
  *
  * @return void
  */
 public function testAddHash()
 {
     $validator = new Zend_Validate_File_Hash('12345');
     $validator->addHash('12344');
     $this->assertEquals(array('12345' => 'crc32', '12344' => 'crc32'), $validator->getHash());
     $validator->addHash(array('12321', '12121'));
     $this->assertEquals(array('12345' => 'crc32', '12344' => 'crc32', '12321' => 'crc32', '12121' => 'crc32'), $validator->getHash());
 }
开发者ID:sasezaki,项目名称:mirror-zf1-tests,代码行数:13,代码来源:HashTest.php

示例3: hasImage

 /**
  * @param integer $sqArtefato
  * @return boolean
  */
 public function hasImage($sqArtefato, $sqTipoArtefato = null)
 {
     try {
         if ($sqTipoArtefato == \Core_Configuration::getSgdoceTipoArtefatoProcesso()) {
             $entityArtefato = $this->_getRepository($this->_entityArtefato)->find($sqArtefato);
             $sqTipoArtefato = $entityArtefato->getSqTipoArtefatoAssunto()->getSqTipoArtefato()->getSqTipoArtefato();
             /**
              * se for processo recupera a 1ª peça para verificar se tem imagem
              */
             if ($sqTipoArtefato == \Core_Configuration::getSgdoceTipoArtefatoProcesso()) {
                 $entityArtefatoVinculoPrimeiraPeca = $this->_getRepository($this->_entityArtefatoVinculo)->findOneBy(array('sqArtefatoPai' => $sqArtefato, 'sqTipoVinculoArtefato' => \Core_Configuration::getSgdoceTipoVinculoArtefatoAutuacao()));
                 /**
                  * Não existe vinculo de primeira peça para o processo
                  */
                 if (null === $entityArtefatoVinculoPrimeiraPeca) {
                     return false;
                 }
                 //pega o sqArtefato do pai
                 $sqArtefato = $entityArtefatoVinculoPrimeiraPeca->getSqArtefatoFilho()->getSqArtefato();
             }
         }
         $filePath = $this->getImagePath($sqArtefato);
         if (empty($filePath)) {
             return false;
         }
         $file = sprintf('%1$s%2$s..%2$sdata%2$s%3$s', APPLICATION_PATH, DIRECTORY_SEPARATOR, $filePath);
         if (!file_exists($file)) {
             throw new \Core_Exception_ServiceLayer('Imagem cadastrada, porém não foi encontrado o arquivo da mesma');
         }
         $artefatoImagemEntity = $this->_getArtefatoImageEntity($sqArtefato);
         $hashValidate = new \Zend_Validate_File_Hash(array('hash' => $artefatoImagemEntity->getTxHash(), 'algorithm' => self::HASH_ALGORITHM));
         if (!$hashValidate->isValid($file)) {
             throw new \Core_Exception_ServiceLayer('Autenticidade da imagem violada');
         }
     } catch (\Exception $exp) {
         $message = sprintf('[SGDoc-e] Exception %s in %s(%d): "%s"', get_class($exp), __METHOD__, $sqArtefato, $exp->getMessage());
         error_log($message);
         throw $exp;
     }
     return true;
 }
开发者ID:sgdoc,项目名称:sgdoce-codigo,代码行数:45,代码来源:ArtefatoImagem.php

示例4: addHash

 public function addHash($options)
 {
     if (!is_array($options)) {
         $options = (array) $options;
     }
     $options['algorithm'] = 'md5';
     parent::addHash($options);
     return $this;
 }
开发者ID:hackingman,项目名称:TubeX,代码行数:9,代码来源:Md5.php


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