PEAR_Validate::getFailures

PEAR_Validate::getFailures()

PEAR_Validate::getFailures()  -- 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.

© Copyright 2003-2023 www.php-editors.com. The ultimate PHP Editor and PHP IDE site.