| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 3 years, 7 months |
| seen | 12 hours ago | |
| stats | profile views | 60 |
|
19h |
awarded | Benefactor |
|
19h |
accepted | Underlying philosophy behind php type comparisons |
|
2d |
comment |
Underlying philosophy behind php type comparisons So to be clear, when a string that can be cast to an integer is loosely compared to anything, it is first automatically cast to an integer before comparison - is this right? Or is this only for comparisons with strings, integers and booleans? |
|
2d |
comment |
Underlying philosophy behind php type comparisons Let's use your rules to compare "0" to TRUE. The "0" is a non-empty string, and should (according to your proposal) be TRUE, which means that comparing it to TRUE should yield TRUE. Yet the table in my link says that "0" == TRUE is false. Am I missing something? |
|
2d |
comment |
Underlying philosophy behind php type comparisons Very helpful pictorial representation of the link I posted in my original post. Unfortunately, even though it expresses the what, it doesn't really address the why. |
|
May 15 |
comment |
Underlying philosophy behind php type comparisons So if you have to compare an empty array to "0" (a string), how do you cast the array to the string for comparison? |
|
May 15 |
comment |
Underlying philosophy behind php type comparisons No particular logic? In a programming language??? That's scary. |
|
May 15 |
comment |
Underlying philosophy behind php type comparisons Well, according to the original poster, when evaluating expressions for loose comparisons, an empty array is FALSE. Why should it be case to a string? |
|
May 15 |
awarded | Popular Question |
|
May 14 |
awarded | Promoter |
|
May 13 |
comment |
How do I get the tables in an SSRS report to use the data in a dataset without multiple trips to the database I use filters and parameters. I need the parameters because the dataset is populated by a stored procedure which needs parameters as input. Then I use a filter to filter out the dataset, based on the particular column, as above. |
|
May 10 |
asked | How do I get the tables in an SSRS report to use the data in a dataset without multiple trips to the database |
|
May 10 |
awarded | Nice Question |
|
May 7 |
comment |
Why use the INCLUDE clause when creating an index? @gbn, would you mind explaining this sentence in more detail, and explain why it means that the include clause is not useful for sorting, etc: "The INCLUDE clause adds the data at the lowest/leaf level, rather than in the index tree. This makes the index smaller because it's not part of the tree" |
|
Apr 19 |
comment |
Replicating POST data taken from Fiddler in new POST If the third party program posts the data correctly, I don't understand what the problem is. Do you want to replicate the data post in another way? If so, can you say how? |
|
Apr 18 |
comment |
Replicating POST data taken from Fiddler in new POST I don't believe you can add POST parameters in a url - you can do this for GET params, though. How exactly are you attempting to replicate the POST? |
|
Apr 16 |
comment |
Underlying philosophy behind php type comparisons This is a helpful answer, as it largely explains a lot of the comparison results, but looking at the table on the php site that I referred to in my original question, it says that when you loosely compare "0" (having nothing) with array() (also having nothing), the answer is FALSE. Shouldn't that be TRUE instead? |
|
Apr 16 |
comment |
Underlying philosophy behind php type comparisons The question is related to mine, but it's a superset of what I'm asking. I'm interested specifically in the equality comparison, and having a fixed set of rules to guide me in determining whether two values are loosely or strictly equal. |
|
Apr 16 |
asked | Underlying philosophy behind php type comparisons |
|
Apr 1 |
awarded | Popular Question |