Guest User

Untitled

a guest
Jul 17th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. $data = file_get_contents('testing.doc');
  2.  
  3. $soap->SetLocalTemplate(
  4. array(
  5. 'template' => base64_encode($data),
  6. 'format' => 'doc'
  7. )
  8. );
  9.  
  10. $soap->CreateDocument();
  11. $result = $soap->RetrieveDocument(
  12. array(
  13. 'format' => 'txt'
  14. )
  15. );
  16.  
  17. $data = $result->RetrieveDocumentResult;
  18. file_put_contents(file.txt', base64_decode($data));
  19.  
  20. echo base64_decode($data);
Add Comment
Please, Sign In to add comment