Posts by giordanolima • 118 points
3 posts
-
0
votes1
answer28
viewsA: Comparison of ID in XML elements
So it doesn’t work? var_dump((string)$filme->attributes()['id'] == (string)$m->attributes()['id']);
-
0
votes2
answers513
viewsQ: MYSQL - Column order and performance
I may be asking a silly question, but come on. The order of the columns in the MYSQL interferes something in terms of performance in some way (whether in writing or in research)? Foreign keys are at…
-
0
votes3
answers1814
viewsA: Sort a multidimensional array with numerical values
Try this: array_multisort($array); print_r($array); Something’s looking for something around here: Link…