當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Zend_Io_Writer::writeInt64BE方法代碼示例

本文整理匯總了PHP中Zend_Io_Writer::writeInt64BE方法的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Io_Writer::writeInt64BE方法的具體用法?PHP Zend_Io_Writer::writeInt64BE怎麽用?PHP Zend_Io_Writer::writeInt64BE使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Zend_Io_Writer的用法示例。


在下文中一共展示了Zend_Io_Writer::writeInt64BE方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: writeMessageData

 /**
  * Writes a data-record to the file.
  * @param mixed[] $msg_def
  * @param mixed[] $message_data
  * @return \Fit\Writer
  */
 protected function writeMessageData($msg_def, $message_data)
 {
     $local_msg_type = $this->getLocalMsgType($msg_def['global_msg_number']);
     $this->writeRecordHeaderByte($local_msg_type, false);
     //en nu de velddata wegschrijven
     foreach ($msg_def['fields'] as $field_def) {
         if (isset($message_data[$field_def[\Fit\Field::NAME]])) {
             $val = $message_data[$field_def[\Fit\Field::NAME]];
         } else {
             $val = null;
         }
         if (is_numeric($val) && $field_def[\Fit\Field::FACTOR] > 0) {
             $val /= $field_def[\Fit\Field::FACTOR];
         }
         $big_endian = $msg_def['architecture'] === 1;
         switch ($field_def[\Fit\Field::TYPE_NUMBER]) {
             case \Fit\Core::STRING:
                 $this->writer->writeString8((string) $val, $field_def[\Fit\Field::SIZE]);
                 break;
             case \Fit\Core::SINT8:
                 $this->writer->writeInt8($val);
                 break;
             case \Fit\Core::ENUM:
             case \Fit\Core::UINT8Z:
             case \Fit\Core::UINT8:
                 $this->writer->writeUInt8($val);
                 break;
             case \Fit\Core::SINT16:
                 $big_endian ? $this->writer->writeInt16BE($val) : $this->writer->writeInt16LE($val);
                 break;
             case \Fit\Core::UINT16Z:
             case \Fit\Core::UINT16:
                 $big_endian ? $this->writer->writeUInt16BE($val) : $this->writer->writeUInt16LE($val);
                 break;
             case \Fit\Core::SINT32:
                 $big_endian ? $this->writer->writeInt32BE($val) : $this->writer->writeInt32LE($val);
                 break;
             case \Fit\Core::UINT32Z:
             case \Fit\Core::UINT32:
                 $big_endian ? $this->writer->writeUInt32BE($val) : $this->writer->writeUInt32LE($val);
                 break;
             case \Fit\Core::FLOAT32:
                 $big_endian ? $this->writer->writeFloatBE($val) : $this->writer->writeFloatLE($val);
                 break;
             case \Fit\Core::FLOAT64:
                 $big_endian ? $this->writer->writeInt64BE($val) : $this->writer->writeInt64LE($val);
                 break;
             case \Fit\Core::BYTE:
             default:
                 $this->writer->write($val, $field_def[\Fit\Field::SIZE]);
         }
     }
     return $this;
 }
開發者ID:alexmcroberts,項目名稱:fit-php,代碼行數:60,代碼來源:Writer.php

示例2: _writeData

 /**
  * Writes the frame raw data without the header.
  *
  * @param Zend_Io_Writer $writer The writer object.
  * @return void
  */
 protected function _writeData($writer)
 {
     $writer->writeString8($this->_owner, 1)->writeInt8($this->_rating);
     if ($this->_counter > 0xffffffff) {
         $writer->writeInt64BE($this->_counter);
     } else {
         if ($this->_counter > 0) {
             $writer->writeUInt32BE($this->_counter);
         }
     }
 }
開發者ID:adam-fonseca,項目名稱:RuneUI,代碼行數:17,代碼來源:Popm.php

示例3: _writeData

 /**
  * Writes the frame raw data without the header.
  *
  * @param Zend_Io_Writer $writer The writer object.
  * @return void
  */
 protected function _writeData($writer)
 {
     if ($this->_counter > 4294967295) {
         $writer->writeInt64BE($this->_counter);
         // UInt64
     } else {
         $writer->writeUInt32BE($this->_counter);
     }
 }
開發者ID:adam-fonseca,項目名稱:RuneUI,代碼行數:15,代碼來源:Pcnt.php

示例4: _writeData

 /**
  * Writes the box data.
  *
  * @param Zend_Io_Writer $writer The writer object.
  * @return void
  */
 protected function _writeData($writer)
 {
     $writer->writeUInt32BE($entryCount = count($this->_chunkOffsetTable));
     for ($i = 1; $i <= $entryCount; $i++) {
         $writer->writeInt64BE($this->_chunkOffsetTable[$i]);
     }
 }
開發者ID:lokamaya,項目名稱:zend-mp3,代碼行數:13,代碼來源:Co64.php

示例5: _writeData

 /**
  * Writes the box header. Subclasses should overwrite this method and call
  * the parent method first and then write the box related data.
  *
  * @param Zend_Io_Writer $writer The writer object.
  * @return void
  */
 protected function _writeData($writer)
 {
     if (get_class($this) == "Zend_Media_Iso14496_Box") {
         require_once 'Zend/Media/Iso14496/Exception.php';
         throw new Zend_Media_Iso14496_Exception('Unknown box \'' . $this->getType() . '\' cannot be written.');
     }
     $this->_size = $this->getHeapSize();
     if ($this->_size > 4294967295.0) {
         $writer->writeUInt32BE(1);
     } else {
         $writer->writeUInt32BE($this->_size);
     }
     if (strlen($this->_type) > 4) {
         $writer->write('uuid');
     } else {
         $writer->write($this->_type);
     }
     if ($this->_size > 4294967295.0) {
         $writer->writeInt64BE($this->_size);
     }
     if (strlen($this->_type) > 4) {
         $writer->writeGuid($this->_type);
     }
 }
開發者ID:andreiamfg,項目名稱:MobileWebHybrid,代碼行數:31,代碼來源:Box.php


注:本文中的Zend_Io_Writer::writeInt64BE方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。