#!/usr/bin/php setUsername(Demos_Zend_Service_LiveDocx_Helper::USERNAME) ->setPassword(Demos_Zend_Service_LiveDocx_Helper::PASSWORD); print('Checking whether a template is available... '); if (true === $phpLiveDocx->templateExists('template-1.docx')) { print('EXISTS. '); } else { print('DOES NOT EXIST. '); } print('DONE' . PHP_EOL); print(PHP_EOL); unset($phpLiveDocx);