array_multisort source code

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
Thopaga
Forum Newbie
Posts: 3
Joined: Wed Dec 22, 2010 3:58 pm

array_multisort source code

Post by Thopaga »

Hello.
I was wondering if someone can help me and tell me if it is possible to see the source for separate functions?
In my case I would like to have the source code for array_multisort.
Thanks.
User avatar
Jonah Bron
DevNet Master
Posts: 2764
Joined: Thu Mar 15, 2007 6:28 pm
Location: Redding, California

Re: array_multisort source code

Post by Jonah Bron »

Why? The manual gives you everything you need.

http://php.net/array-multisort

But anyway, it's not written in PHP, it's written in C(++?). You can get the source from the PHP site.

http://php.net/
Thopaga
Forum Newbie
Posts: 3
Joined: Wed Dec 22, 2010 3:58 pm

Re: array_multisort source code

Post by Thopaga »

Thanks Jonah, that clarified a lot.
I actually have previously downloaded php-5.3.4-src.zip but not understood it.
So I will install C++ and see if I can find it.
Thanks for your kind help.
User avatar
Jonah Bron
DevNet Master
Posts: 2764
Joined: Thu Mar 15, 2007 6:28 pm
Location: Redding, California

Re: array_multisort source code

Post by Jonah Bron »

Thopaga wrote:I actually have previously downloaded php-5.3.4-src.zip but not understood it.
Welcome to the club.
Thopaga wrote:So I will install C++ and see if I can find it.
The compiler won't help you. You'll just have to browse through it and find it. Either that, or google it.
User avatar
McInfo
DevNet Resident
Posts: 1532
Joined: Wed Apr 01, 2009 1:31 pm

Re: array_multisort source code

Post by McInfo »

User avatar
Jonah Bron
DevNet Master
Posts: 2764
Joined: Thu Mar 15, 2007 6:28 pm
Location: Redding, California

Re: array_multisort source code

Post by Jonah Bron »

Ah-ha! Thank you, McManual ;)
Thopaga
Forum Newbie
Posts: 3
Joined: Wed Dec 22, 2010 3:58 pm

Re: array_multisort source code

Post by Thopaga »

Thanks McInfo, you solved it.
Thanks both for your kind help.
I actually have installed Visual C++ just now, and that will help me a lot.
Post Reply