I want to extract text from an msword file (eg: .docx) to use the content of msword file in my PHP script.
Is it possible to get all pages in an array of php? Like
$array = [
[0] => 'content here......',
[1] => 'content here......',
[2] => 'content here......',
];
where index 0 is page one, index 1 is page two and so on.