PEAR_Validate::getFailures

PEAR_Validate::getFailures() – getFailures

Synopsis

require_once '/Validate.php';

void PEAR_Validate::getFailures ( )

Description

Returns a list of failures recorded by the last validation attempt. The list is in format:

<?php
array(
    
'error' =>
        array(
            array(
'field' => 'name''name must contain only letters, numbers or underscore'),
        ),
    
'warning' =>
        array(
            array(
'field' => 'version''version should be less than 2.0'),
        )
);
?>

Throws

throws no exceptions thrown

Note

This function can not be called statically.