Re: [PHP-DEV] Pack function : a suggestion - allow array as second argument.

2004-06-14 Thread Derick Rethans
On Sun, 13 Jun 2004, l0t3k wrote: > thanks, i hadn't noticed that. still in the interest of efficiency i think > an array should be allowed. or am i the only one having to use Pack on large > sets of data ? The problem with if we're going that way, this same argument might hold for all other PHP

Re: [PHP-DEV] Pack function : a suggestion - allow array as second argument.

2004-06-13 Thread l0t3k
thanks, i hadn't noticed that. still in the interest of efficiency i think an array should be allowed. or am i the only one having to use Pack on large sets of data ? "Derick Rethans" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On Sun, 13 Jun 2004, l0t3k wrote: > Why not use cal

Re: [PHP-DEV] Pack function : a suggestion - allow array as second argument.

2004-06-13 Thread Derick Rethans
On Sun, 13 Jun 2004, l0t3k wrote: > Suggestion: > Allow for an array as the second parameter. That way all i need to do is : Why not use call_user_func_array? See: http://no2.php.net/call_user_func_array regards, Derick -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, vi

[PHP-DEV] Pack function : a suggestion - allow array as second argument.

2004-06-13 Thread l0t3k
Scenario : i have an extension which requires an external binary (data) file. Since the extension has to be cross platform, the data file has to be built on the target platform to ensure that there are no endian issues. Therefore, i transform the file into a csv file of byte values, hoping to use