addParagraphStyle('multipleTab', array( 'tabs' => array( new \PhpOffice\PhpWord\Style\Tab('left', 1550), new \PhpOffice\PhpWord\Style\Tab('center', 3200), new \PhpOffice\PhpWord\Style\Tab('right', 5300) ) )); $phpWord->addParagraphStyle('rightTab', array( 'tabs' => array( new \PhpOffice\PhpWord\Style\Tab('right', 9090) ) )); $phpWord->addParagraphStyle('centerTab', array( 'tabs' => array( new \PhpOffice\PhpWord\Style\Tab('center', 4680) ) )); // New portrait section $section = $phpWord->addSection(); // Add listitem elements $section->addText("Multiple Tabs:\tOne\tTwo\tThree", null, 'multipleTab'); $section->addText("Left Aligned\tRight Aligned", null, 'rightTab'); $section->addText("\tCenter Aligned", null, 'centerTab'); // Save file echo write($phpWord, basename(__FILE__, '.php'), $writers); if (!CLI) { include_once 'Sample_Footer.php'; }