|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2014-08-22 20:02 UTC] teo8976 at gmail dot com
Description: ------------ --- From manual page: http://www.php.net/curl.constants --- The names of the predefined constants are listed, but their values are missing. This is ridiculous. I go to that page because I'm being returned an integer from a curl function and I wanted to check to which constant it corresponds, and that's not documented. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 17:00:02 2025 UTC |
> As the user you're not supposed to either know their actual values > or make your code depend on them. I was logging the error code just for debugging purposes, and I wanted to "manually" (i.e. as a human being) look up the error that had been logged. As opposed to writing code such as switch ($myErrorCode) { case CONSTANT_FOO: "FOO Error"; break; case CONSTANT_BAR: "BAR Error"; break; // and so on for a few dozens cases } Perhaps curl_error() is the solution in most cases but: > Which of curl functions returned you an integer Good question, not sure now. If it was curl_errno, then perhaps I could have used curl_error(), but I was also using curl_multi_exec, which returns an integer error code, so in this case the issue exists. and secondly, if I'm inspecting existing logs where only error codes have been logged, it's annoying that there's not a reference that I can't look up. > I'm pretty sure that there is no need to know actual value. I just demonstarted such need (as I already had in the original report). Which is just the reason why usually constants values in most languages and libraries are usually documented, even when you are not supposed to rely on them, because you know, documentation is for documenting things, you never know when you may need it. > Note that the upstream itself is not documenting the values on functions' > return values, so it would be quite strange for PHP to document them. It would be "strange"? Excellent reason for leaving undocumented. > No feedback was provided. The bug is being suspended because > we assume that you are no longer experiencing the problem. I understand this is an automated message, but this bug shouldn't have been put in the "NeedsFeedback" state in the first place, as the question was completely irrelevant.