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


PHP OLE::LocalDate2OLE方法代码示例

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


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

示例1: _getPpsWk

 /**
 * Returns a string with the PPS's WK (What is a WK?)
 *
 * @access private
 * @return string The binary string
 */
 function _getPpsWk()
 {
     $ret = $this->Name;
     for ($i = 0; $i < (64 - strlen($this->Name)); $i++) {
         $ret .= "\x00";
     }
     $ret .= pack("v", strlen($this->Name) + 2)  // 66
           . pack("c", $this->Type)              // 67
           . pack("c", 0x00) //UK                // 68
           . pack("V", $this->PrevPps) //Prev    // 72
           . pack("V", $this->NextPps) //Next    // 76
           . pack("V", $this->DirPps)  //Dir     // 80
           . "\x00\x09\x02\x00"                  // 84
           . "\x00\x00\x00\x00"                  // 88
           . "\xc0\x00\x00\x00"                  // 92
           . "\x00\x00\x00\x46"                  // 96 // Seems to be ok only for Root
           . "\x00\x00\x00\x00"                  // 100
           . OLE::LocalDate2OLE($this->Time1st)       // 108
           . OLE::LocalDate2OLE($this->Time2nd)       // 116
           . pack("V", isset($this->_StartBlock)? 
                     $this->_StartBlock:0)        // 120
           . pack("V", $this->Size)               // 124
           . pack("V", 0);                        // 128
     return $ret;
 }
开发者ID:kosmosby,项目名称:medicine-prof,代码行数:31,代码来源:PPS.php

示例2: _getPpsWk

 /**
  * Returns a string with the PPS's WK (What is a WK?)
  *
  * @access private
  * @return string The binary string
  */
 function _getPpsWk()
 {
     $ret = $this->Name;
     for ($i = 0; $i < 64 - strlen($this->Name); $i++) {
         $ret .= "";
     }
     $ret .= pack("v", strlen($this->Name) + 2) . pack("c", $this->Type) . pack("c", 0x0) . pack("V", $this->PrevPps) . pack("V", $this->NextPps) . pack("V", $this->DirPps) . "\t" . "" . "À" . "F" . "" . OLE::LocalDate2OLE($this->Time1st) . OLE::LocalDate2OLE($this->Time2nd) . pack("V", isset($this->_StartBlock) ? $this->_StartBlock : 0) . pack("V", $this->Size) . pack("V", 0);
     // 128
     return $ret;
 }
开发者ID:bitweaver,项目名称:sheets,代码行数:16,代码来源:pps.php


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