php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #38544 tryeach
Submitted: 2006-08-22 12:16 UTC Modified: 2021-09-30 11:39 UTC
Votes:3
Avg. Score:2.0 ± 1.4
Reproduced:1 of 3 (33.3%)
Same Version:1 (100.0%)
Same OS:1 (100.0%)
From: dtyschenko at soft-ukraine dot com Assigned: cmb (profile)
Status: Wont fix Package: Scripting Engine problem
PHP Version: 5.1.5 OS: Any
Private report: No CVE-ID: None
Have you experienced this issue?
Rate the importance of this bug to you:

 [2006-08-22 12:16 UTC] dtyschenko at soft-ukraine dot com
Description:
------------
Sometimes I need to run few functions that can throw new exception

Reproduce code:
---------------
<?php

$errors = array();

try {
	$Item->Title($_POST['title']);
} catch (InvalidArgument $e) {
	$errors[] = $e->getMessage();
}

try {
	$Item->Content($_POST['content']);
} catch (InvalidArgument $e) {
	$errors[] = $e->getMessage();
}

// In this case tryeach operator can be very usefull

tryeach {
	$Item->Title($_POST['title']);
	$Item->Content($_POST['content']);
} catch (InvalidArgument $e) {
	$errors[] = $e->getMessage();
}

?>


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-08-22 12:25 UTC] tony2001@php.net
What's the problem with this ?

try {
   $Item->Title($_POST['title']);
   $Item->Content($_POST['content']);
} ...
 [2006-08-22 13:20 UTC] dtyschenko at soft-ukraine dot com
The keyword is each.
When user submit the form, you show them waht he misses. With try you will show only one error.
And with tryeach all errors.
 [2016-12-30 23:52 UTC] cmb@php.net
-Package: Feature/Change Request +Package: Scripting Engine problem
 [2021-09-30 11:39 UTC] cmb@php.net
-Status: Open +Status: Wont fix -Assigned To: +Assigned To: cmb
 [2021-09-30 11:39 UTC] cmb@php.net
15 years and no further feedback on a doubtful feature request (in
my opinion, input validation should not throw exceptions), makes
me close this as WONTFIX.

If anybody is still interested in this feature, please pursue the
RFC process[1].

[1] <https://wiki.php.net/rfc/howto>
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 23:01:27 2024 UTC