本文整理汇总了PHP中CreateDocx::modifyPageLayout方法的典型用法代码示例。如果您正苦于以下问题:PHP CreateDocx::modifyPageLayout方法的具体用法?PHP CreateDocx::modifyPageLayout怎么用?PHP CreateDocx::modifyPageLayout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CreateDocx
的用法示例。
在下文中一共展示了CreateDocx::modifyPageLayout方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: CreateDocx
<?php
//path to the CreateDocx class within your PHPDocX installation
require_once '../../../classes/CreateDocx.inc';
$docx = new CreateDocx();
for ($j = 0; $j < 50; $j++) {
$text = 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, ' . 'sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut ' . 'enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut' . 'aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit ' . 'in voluptate velit esse cillum dolore eu fugiat nulla pariatur. ' . 'Excepteur sint occaecat cupidatat non proident, sunt in culpa qui ' . 'officia deserunt mollit anim id est laborum.';
$docx->addText($text);
}
$docx->modifyPageLayout('A3-landscape', array('numberCols' => '3'));
$docx->createDocx('example_modifyPageLayout_1');
示例2: CreateDocx
<?php
//path to the CreateDocx class within your PHPDocX installation
require_once '../../../classes/CreateDocx.inc';
$docx = new CreateDocx();
$docx->embedHTML('<h1 style="color: #b70000">The Wikipedia Article on the Periodic Table</h1>');
$html = file_get_contents('http://en.wikipedia.org/wiki/Periodic_table');
$options = array('parseDivsAsPs' => true, 'baseURL' => 'http://en.wikipedia.org/', 'downloadImages' => true, 'filter' => '#bodyContent');
$docx->embedHTML($html, $options);
$docx->modifyPageLayout('A3-landscape');
$docx->createDocx('example_embedHTML_2');