I tried to var_dump
a Zend_Controller_Request_Http
object in Zend framework.
The output is below:
object(Zend_Controller_Request_Http)[14]
protected '_paramSources' =>
array (size=2)
0 => string '_GET' (length=4)
1 => string '_POST' (length=5)
protected '_requestUri' => string '/' (length=1)
protected '_baseUrl' => string '' (length=0)
protected '_basePath' => null
protected '_pathInfo' => string '/' (length=1)
protected '_params' =>
array (size=3)
'controller' => string 'index' (length=5)
'action' => string 'index' (length=5)
'module' => string 'default' (length=7)
protected '_rawBody' => null
protected '_aliases' =>
array (size=0)
empty
protected '_dispatched' => boolean true
protected '_module' => string 'default' (length=7)
protected '_moduleKey' => string 'module' (length=6)
protected '_controller' => string 'index' (length=5)
protected '_controllerKey' => string 'controller' (length=10)
protected '_action' => string 'index' (length=5)
protected '_actionKey' => string 'action' (length=6)
I noticed at the first line, there's a [14]
, what's the meaning of that number?
I looked up it in the PHP manual but didn't find any explanation.
No, it's not "the number of properties in this object"
I tried below code:
the output is :