PHP Classes

get a file from SMB

Recommend this page to a friend!

      smb4php  >  All threads  >  get a file from SMB  >  (Un) Subscribe thread alerts  
Subject:get a file from SMB
Summary:Please help to get a file ftom SMB
Messages:1
Author:teodorix
Date:2016-09-26 14:13:02
 

  1. get a file from SMB   Reply   Report abuse  
Picture of teodorix teodorix - 2016-09-26 14:13:02
I try to get a file from server via smb protocol:

$file = 'myserver.com\e$\20160309\09.08.13 - 2468.pdf';
$smblink = "smb://user:123456@".$file;
$newsmb = new smb;
$path = $newsmb->parse_url($smblink);


and now how I can get a file stream or copy to my server&

$r = $newsmb->execute("copy *", $path);
print_r($r);