Scans your site and returns information about your SSL implementation and certificate. Helpful for debugging and validating your SSL configuration.
One of a set of tools we are providing to everyone as a way of saying thank you for being a part of the community.
I've had a quick look and from what I can see the asort() function is the correct one to use, but I belive the array_merge line you are using afterwards is affecting the order of your array.
For example, try performing another asort() after the array_merge() as follows:
Open in new window
This gives the following (note the second print_r statement outputs the array in your desired order.
Open in new window
If this is in fact the case then I would suggest performing a single asort() after your have finished running any required array_merge() functions.
I hope this helps with your problem.
Cheers
Matt