vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   How do I order an array by neither ASC or DESC ? (https://vborg.vbsupport.ru/showthread.php?t=152646)

Antivirus 07-18-2007 07:04 PM

How do I order an array by neither ASC or DESC ?
 
I have an array of values such as follows: '4,8,8,7,4,7,8'

and I want to them order them in the following order: 7,4,8

so that the array orders like this: '7,7,4,4,8,8,8'

Is there a function (in php or mysql) which defines custom sort orders? I have been searching the php manual but can't seem to find anything

Farcaster 07-18-2007 09:08 PM

You could use a CASE statement, like:

[SQL]ORDER BY
(CASE WHEN field = '7' THEN 1
WHEN field = '4' THEN 2
WHEN field = '8' THEN 3 END) ASC[/SQL]

I may have mistook you, you mean to order the rows in a particular order?

El_Muerte 07-19-2007 06:14 AM

<a href="http://www.php.net/usort" target="_blank">http://www.php.net/usort</a>

Antivirus 07-19-2007 11:22 AM

Farcaster, I would have never thought of using CASE, but it works very nicely - thanks!

El Muerte, I am going to try it with usort as well and see how it goes. thanks!


All times are GMT. The time now is 07:01 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01192 seconds
  • Memory Usage 1,706KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete