PHP code example of lijiuhui / wps-weboffice

1. Go to this page and download the library: Download lijiuhui/wps-weboffice library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

lijiuhui / wps-weboffice example snippets


    
    namespace App\Services;
    
    use Eiixy\WebOffice\Services\WebOfficeHandlerService;
 
    class WebOfficeService extends WebOfficeHandlerService
    {
        // 实现相关业务代码....
    }
    

    

    return [
        // 业务处理
        'handler' => \App\Services\WebOfficeService::class,
        //.....
    

php artisan vendor:publish --provider="Eiixy\WebOffice\Providers\WebOfficeServiceProvider"