{1388} - 3.5.2.4.8 url

$this->params['url']
  1. $this->params['url']

Stores the current URL requested, along with key-value pairs of get variables. For example, if the URL /posts/view/?var1=3&var2=4 was called, $this->params['url'] would contain:

[url] => Array
(
    [url] => posts/view
    [var1] => 3
    [var2] => 4
)
  1. [url] => Array
  2. (
  3. [url] => posts/view
  4. [var1] => 3
  5. [var2] => 4
  6. )

{3903} - 3.5.2.4.8 url

$this->params['url']

Stores the current URL requested, along with key-value pairs of get variables. For example, if the URL /posts/view/?var1=3&var2=4 was called, $this->params['url'] would contain:

[url] => Array
(
    [url] => posts/view
    [var1] => 3
    [var2] => 4
)

Differences

Lines: 1-8Lines: 1-8
 <title>url</title> <title>url</title>
-<pre>$this-&amp;gt;params['url']</pre>
<p>Stores the current URL requested, along with key-value pairs of get variables. For example, if the URL /posts/view/?var1=3&amp;var2=4 was called, $this-&amp;gt;params['url'] would contain:</p>
<pre>
+<p class="method"><code>$this->params['url']</code></p>
<p>Stores the current URL requested, along with key-value pairs of get variables. For example, if the URL <kbd>/posts/view/?var1=3&amp;var2=4</kbd> was called, <code>$this->params['url']</code> would contain:</p>
<pre class="plain">
 [url] =&gt; Array [url] =&gt; Array
 ( (
  [url] =&gt; posts/view  [url] =&gt; posts/view
  [var1] =&gt; 3  [var1] =&gt; 3