diff options
author | Andrey Andreev <narf@devilix.net> | 2015-03-25 12:53:16 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2015-03-25 12:53:16 +0100 |
commit | b112a3eb94d19f91ee3b698f43f36fd17a06d9c3 (patch) | |
tree | 01c91d4bc3c69cd97691fafe1068f78cc6a35a0b /user_guide_src/source/libraries/loader.rst | |
parent | 8f5c1780706113c926bb7801db27dbae97d00fcf (diff) | |
parent | bd2a7e4062fd97017c5b16beddc15b0c7fc38210 (diff) |
Merge pull request #3698 from jim-parry/fix/links
[ci skip] Fixed user guide internal & external links to resolve problems reported ...
Diffstat (limited to 'user_guide_src/source/libraries/loader.rst')
-rw-r--r-- | user_guide_src/source/libraries/loader.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide_src/source/libraries/loader.rst b/user_guide_src/source/libraries/loader.rst index efa9d519b..228d5e478 100644 --- a/user_guide_src/source/libraries/loader.rst +++ b/user_guide_src/source/libraries/loader.rst @@ -238,7 +238,7 @@ Class Reference The second **optional** parameter can take an associative array or an object as input, which it runs through the PHP - `extract() <http://www.php.net/extract>`_ function to convert to variables + `extract() <http://php.net/extract>`_ function to convert to variables that can be used in your view files. Again, read the :doc:`Views <../general/views>` page to learn how this might be useful. @@ -259,7 +259,7 @@ Class Reference :rtype: CI_Loader This method takes an associative array as input and generates - variables using the PHP `extract() <http://www.php.net/extract>`_ + variables using the PHP `extract() <http://php.net/extract>`_ function. This method produces the same result as using the second parameter of the ``$this->load->view()`` method above. The reason you might want to use this method independently is if you would like to |