I need to share same array object across all requests irrespective of requests coming from same browser/user. Is there any application scope in php where I could store that
Some extensions, like APC or Zend Cache allow you to mimic application-scope. If none are available to you, you can cache the object in a file or DB.