diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-06-11 10:44:52 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-06-11 10:44:52 +0200 |
commit | 6b5ee00bb10dc073c3d70aa7b218efa9265933c5 (patch) | |
tree | a12fb3fcbdb92dd94264f671dac953c128b478e2 /user_guide_src/source/libraries | |
parent | 4db16326a0418776f10802ecdcccb385ff67e363 (diff) | |
parent | 0ee287ea08de5f3098a27230dcd8ca242b2eb793 (diff) |
Merge pull request #1454 from IT-Can/upload-index-1453
Upload library: data() index support
Diffstat (limited to 'user_guide_src/source/libraries')
-rw-r--r-- | user_guide_src/source/libraries/file_uploading.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/user_guide_src/source/libraries/file_uploading.rst b/user_guide_src/source/libraries/file_uploading.rst index d573fc770..414d84f0b 100644 --- a/user_guide_src/source/libraries/file_uploading.rst +++ b/user_guide_src/source/libraries/file_uploading.rst @@ -287,6 +287,10 @@ data related to the file you uploaded. Here is the array prototype:: [image_size_str] => width="800" height="200" ) +To return one element from the array:: + + $this->upload->data('file_name'); // Returns: mypic.jpg + Explanation *********** |