Scriptindex.de

[ Menü ]

Home
News
Scripts
Neuzugänge
Suchen
Bücher
Manuals

[ Inhalt ]

Script eintragen
Tutorial eintragen
Newsletter
Umfragen
Link zu uns
Werbung bei uns
Kontakt
Impressum

[ Statistik ]

Hits gesamt: 5201507
Hits Heute: 936
max. Hits (10.07.07): 6964
User Online: 27
Scripts: 2828

[ Partner ]

CodeBase
I.S.U.M.
LUG Bayreuth
PEAR NEWS
PHP Classes

[ Facebook ]

[ Eigene Domain? ]

[ Buchtipp ]

C# IT-Tutorial
C# IT-Tutorial

Manuals > PEAR > Controller::container()

Controller::container()

Controller::container() -- Returns a reference to the form's values container.

Description

Returns a reference to a session variable containing the form-page values and pages' validation status. This is a "low-level" method, use exportValues() if you want just to get the form's values.

The structure of the container is the following
array ( 'defaults' => array(... default form values ...), 'constants' => array(... constant form values ...), 'values' => array( 'page1' => array(... submitted values for this page ...), ... 'pageN' => array(... submitted values for this page ...) ), 'valid' => array( 'page1' => null if the page was never validated, true if valid, false otherwise ... 'pageN' => null if the page was never validated, true if valid, false otherwise ) )

Parameter

boolean $reset

If true, then reset the container: clear all default, constant and submitted values

Throws

throws no exceptions thrown

Note

This function can not be called statically.


Copyright 1998 - 2009 by I.S.U.M.