Skip to content

Commit 901b8e1

Browse files
author
Jamie Hannaford
committed
[ci skip] Linkify urlencode
1 parent 1e79c32 commit 901b8e1

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/userguide/ObjectStore/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ In the example above, you are connecting to the ``DFW`` region of the cloud. Any
4646
$container = $objectStoreService->createContainer('logos');
4747
```
4848

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` before passing them in
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
5050
5151
### 4. Upload an object to the container.
5252

docs/userguide/ObjectStore/Storage/Container.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ If the response returned is `FALSE`, there was an API error - most likely due to
2626

2727
Container names must be valid strings between 0 and 256 characters. Forward slashes are not currently permitted.
2828

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` before passing them in
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
3030
3131
## List containers
3232

docs/userguide/ObjectStore/Storage/Object.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ There are three ways to upload a new file, each of which has different business
2525
> **Note:** Unlike previous versions, you do not need to manually specify your object's content type. The API will do this
2626
for you.
2727

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` before passing them in
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
2929
3030
### To upload a single/basic file:
3131

docs/userguide/ObjectStore/USERGUIDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ For example, you may create a container called `logos` to hold all the image fil
4646

4747
A container may contain zero or more objects in it.
4848

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` before passing them in
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
5050
5151
### Create Container
5252

@@ -187,7 +187,7 @@ An **object** (sometimes referred to as a file) is the unit of storage in an Obj
187187

188188
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.
189189

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` before passing them in
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
191191
192192
### Upload Object
193193

0 commit comments

Comments
 (0)