Jump to content

[SOLVED] Does UTF8's Byte Order Mark mess around with headers?


jordanwb

Recommended Posts

Now I have to figure out why my script isn't working. I guess that happens when you perform a major rewrite of the menu engine.

 

[Edit]

 

A large part of the code wouldn't work because the order of three parameters in a function. Getting a new computer mouse was the only thing I've gotten right today. :-(

You can use this method of argument passing.  It's more verbose but that's often a good thing:

 

function foo($args) {
  $bob = $args['bob'];
  $baz = $args['baz'];
  $enable_some_flag = $args['enable_some_flag'];
}

foo(array(
  'bob' => 'bob',
  'baz' => 'baz',
  'enable_some_flag' => true,
));

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.