Skip to content

Instantly share code, notes, and snippets.

View putuyogipratama's full-sized avatar

Putu Yogi Pratama putuyogipratama

View GitHub Profile
@Anexo
Anexo / phpWordCountWords.php
Last active July 4, 2024 07:37
Read in a docx, save into variable and count the words. Word 2007 format only.
<?php
require 'vendor/autoload.php';
$source = 'example.docx';
$phpword = \PhpOffice\PhpWord\IOFactory::load($source);
$sections = $phpword->getSections();