Jump to content

multisort; flags (defines) v/s variables


fatkatie

Recommended Posts

This works fine if $field_one_order is replaced with SORT_ASC.

   array_multisort($field_one, $field_one_order, $field_two, SORT_ASC, $data_array);

It gives the following error if a variable is used in place of a define
 

 

array_multisort(): Argument #2 is expected to be an array or a sort flag

 

 

I dump the var and it is indeed valued as expected.

 

$field_one_order = 'SORT_ASC'

 

Is the use of a variable not allowed here?   If a def is required, can a variable be typed as one?

Link to comment
Share on other sites

the php defined constants are integer values. if you put the actual value into a variable, this will work. you have a string now, the name of the defined constant, not its value.

 

Use - 

$field_one_order = SORT_ASC;

You probably have this now - 

$field_one_order = 'SORT_ASC';
  • Like 1
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.