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
> **Note:** when working with names that contain non-standard alphanumerical characters (such as spaces or non-English characters), you must ensure they are encoded with [`urlencode`](http://php.net/urlencode) before passing them in
Copy file name to clipboardExpand all lines: docs/userguide/ObjectStore/Storage/Container.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,7 @@ If the response returned is `FALSE`, there was an API error - most likely due to
26
26
27
27
Container names must be valid strings between 0 and 256 characters. Forward slashes are not currently permitted.
28
28
29
+
> **Note:** when working with names that contain non-standard alphanumerical characters (such as spaces or non-English characters), you must ensure they are encoded with [`urlencode`](http://php.net/urlencode) before passing them in
Copy file name to clipboardExpand all lines: docs/userguide/ObjectStore/Storage/Object.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,9 +22,11 @@ setter methods:
22
22
23
23
There are three ways to upload a new file, each of which has different business needs.
24
24
25
-
__N.B__: Unlike previous versions, you do not need to manually specify your object's content type. The API will do this
25
+
> **Note:** Unlike previous versions, you do not need to manually specify your object's content type. The API will do this
26
26
for you.
27
27
28
+
> **Note:** when working with names that contain non-standard alphanumerical characters (such as spaces or non-English characters), you must ensure they are encoded with [`urlencode`](http://php.net/urlencode) before passing them in
Copy file name to clipboardExpand all lines: docs/userguide/ObjectStore/USERGUIDE.md
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ To use the object store service, you must first instantiate a `OpenStack` or `Ra
28
28
'apiKey' => '<YOURRACKSPACECLOUDACCOUNTAPIKEY>'
29
29
));
30
30
```
31
-
31
+
32
32
### Object Store Service
33
33
All operations on the object store are done via an object store service object.
34
34
@@ -46,7 +46,10 @@ For example, you may create a container called `logos` to hold all the image fil
46
46
47
47
A container may contain zero or more objects in it.
48
48
49
+
> **Note:** when working with names that contain non-standard alphanumerical characters (such as spaces or non-English characters), you must ensure they are encoded with [`urlencode`](http://php.net/urlencode) before passing them in
[[Get the executable PHP script for this example](/samples/ObjectStore/get-container-metadata.php)]
95
98
96
99
### Delete Container
97
-
When you no longer have a need for the container, you can remove it.
100
+
When you no longer have a need for the container, you can remove it.
98
101
99
102
If the container is empty (that is, it has no objects in it), you can remove it as shown below:
100
103
@@ -184,6 +187,8 @@ An **object** (sometimes referred to as a file) is the unit of storage in an Obj
184
187
185
188
For example, you may upload an object named `php-elephant.jpg`, a JPEG image file, to the `logos` container. Further, you may assign metadata to this object to indicate that the author of this object was someone named Jane Doe.
186
189
190
+
> **Note:** when working with names that contain non-standard alphanumerical characters (such as spaces or non-English characters), you must ensure they are encoded with [`urlencode`](http://php.net/urlencode) before passing them in
191
+
187
192
### Upload Object
188
193
189
194
Once you have created a container, you can upload objects to it.
0 commit comments