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


PHP Style::getParagraph方法代码示例

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


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

示例1: merge

 /**
  * Merges two styles
  *
  * Every element has a cloned style object. However, the style will usually 
  * change very litte element-to-element. Thus, it's a waste of space to have 
  * hundreds of identical objects in memory.
  *
  * I'll merge this style object with $style. If a state is identical between 
  * the two, I'll set this style's property to reference $style's property.
  *
  * @param  Jstewmc\Rtf\Style  $style  the reference style
  * @return  self
  * @since  0.1.0
  */
 public function merge(Style $style)
 {
     if ($style->getDocument() == $this->document) {
         $this->document = $style->getDocument();
     }
     if ($style->getSection() == $this->section) {
         $this->section = $style->getSection();
     }
     if ($style->getParagraph() == $this->paragraph) {
         $this->paragraph = $style->getParagraph();
     }
     if ($style->getCharacter() == $this->character) {
         $this->character = $style->getCharacter();
     }
     return;
 }
开发者ID:jstewmc,项目名称:rtf,代码行数:30,代码来源:Style.php

示例2: testMerge_doesNotMergeStyles_ifStatesAreDifferent

 /**
  * merge() should not merge style if the states are different
  */
 public function testMerge_doesNotMergeStyles_ifStatesAreDifferent()
 {
     $style1 = new Style();
     $style2 = new Style();
     // $style2->getDocument()->setSomething();
     $style2->getSection()->setIndex(999);
     $style2->getParagraph()->setIndex(999);
     $style2->getCharacter()->setIsBold(true);
     $style2->merge($style1);
     // $this->assertNotSame($style1->getDocument(), $style2->getDocument());
     $this->assertNotSame($style1->getSection(), $style2->getSection());
     $this->assertNotSame($style1->getParagraph(), $style2->getParagraph());
     $this->assertNotSame($style1->getCharacter(), $style2->getCharacter());
     return;
 }
开发者ID:jstewmc,项目名称:rtf,代码行数:18,代码来源:StyleTest.php


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