You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 30, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -102,7 +102,7 @@ fclose($fh);
102
102
```
103
103
104
104
**Note**: write() will truncate your file to 0bytes. You may open a writeable stream with append() which will point
105
-
the cursor to the end of the file or create it if it does not exists yet. (append() is only compatible with libsmbclient-php)
105
+
the cursor to the end of the file or create it if it does not exist yet. (append() is only compatible with libsmbclient-php)
106
106
```php
107
107
$fh = $share->append('test.txt');
108
108
fwrite($fh, 'bar');
@@ -141,7 +141,7 @@ Note, setting the protocol version is not supported with php-smbclient version 1
141
141
142
142
The `smbclient` backend needs to get various information about the system it's running on to function
143
143
such as the paths of various binaries or the system timezone.
144
-
While the default logic for getting this information should work on most systems, it possible to customize this behaviour.
144
+
While the default logic for getting this information should work on most systems, it is possible to customize this behaviour.
145
145
146
146
In order to customize the integration you provide a custom implementation of `ITimezoneProvider` and/or `ISystem` and pass them as arguments to the `ServerFactory`.
0 commit comments