This is a discussion on Re: [PHP-DOC] Network Interface Card Name within the PHP General forums, part of the PHP Programming Forums category; Forwarding to correct list. On Mon, Jul 7, 2008 at 10:25 AM, Kapil Kapil <help.language@gmail.com&...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Forwarding to correct list.
On Mon, Jul 7, 2008 at 10:25 AM, Kapil Kapil <help.language@gmail.com> wrote: > No, I want the name of network interface cards of server, not of client. > > Thanks & regards > Kapil > > > On Mon, Jul 7, 2008 at 6:38 PM, Thiago H. Pojda <thiago.pojda@gmail.com> > wrote: > >> That's client-side you're probably not going to do that w/o any >> client-side software. >> >> You should be asking this on php-general. >> >> >> Regards, >> Thiago >> >> On Mon, Jul 7, 2008 at 8:19 AM, Kapil Kapil <help.language@gmail.com> >> wrote: >> >>> Hi ! >>> >>> I want to get the name of network interface card, like - "VIA Rhine I >>> Fast Ethernet Adapter". Is there any function in php for this or perhaps a >>> way to find it out? >>> >>> Thanks >>> >>> Kapil >>> >>> >>> >>> >> >> >> -- >> Thiago Henrique Pojda > > > -- Thiago Henrique Pojda |
|
|||
|
Thiago H. Pojda wrote:
>>> On Mon, Jul 7, 2008 at 8:19 AM, Kapil Kapil >>> <help.language@gmail.com> wrote: >>> >>>> Hi ! >>>> >>>> I want to get the name of network interface card, like - "VIA Rhine >>>> I Fast Ethernet Adapter". Is there any function in php for this or >>>> perhaps a way to find it out? Not really a PHP question, but the answer is 'lspci'. Here's some sample output: 00:0c.0 Ethernet controller: Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE] (rev 26) 04:0a.0 Ethernet controller: Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE] (rev 26) /Per Jessen, Zürich |
|
|||
|
Per Jessen wrote:
> Thiago H. Pojda wrote: > >>>> On Mon, Jul 7, 2008 at 8:19 AM, Kapil Kapil >>>> <help.language@gmail.com> wrote: >>>> >>>>> Hi ! >>>>> >>>>> I want to get the name of network interface card, like - "VIA Rhine >>>>> I Fast Ethernet Adapter". Is there any function in php for this or >>>>> perhaps a way to find it out? > > Not really a PHP question, but the answer is 'lspci'. > Here's some sample output: > > 00:0c.0 Ethernet controller: Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE] (rev 26) > 04:0a.0 Ethernet controller: Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE] (rev 26) > > > > /Per Jessen, Zürich > Windows you can use: ipconfig /all Ethernet adapter Local Area Connection: Connection-specific DNS Suffix . : localdomain Description . . . . . . . . . . . : Intel(R) PRO/1000 PL Network Connection -Shawn |
|
|||
|
No, there isn't.
It's a system-related info and doesn't affect how PHP works. And, IMHO, it's good that PHP is not aware of these stuff. Use exec(), `, or system() to run these commands. Regards, Thiago On Mon, Jul 7, 2008 at 2:51 PM, Kapil Kapil <help.language@gmail.com> wrote: > This is a way, I know but does there any function in php specific to this.. > > Thanks > Kapil > > > On Mon, Jul 7, 2008 at 10:16 PM, Thiago H. Pojda <thiago.pojda@gmail.com> > wrote: > >> Forwarding if you're not on this list. >> >> >> ---------- Forwarded message ---------- >> From: Shawn McKenzie <nospam@mckenzies.net> >> Date: Mon, Jul 7, 2008 at 12:30 PM >> Subject: Re: [php] Re: [PHP-DOC] Network Interface Card Name >> To: php-general@lists.php.net >> >> >> Per Jessen wrote: >> >>> Thiago H. Pojda wrote: >>> >>> On Mon, Jul 7, 2008 at 8:19 AM, Kapil Kapil >>>>>> <help.language@gmail.com> wrote: >>>>>> >>>>>> Hi ! >>>>>>> >>>>>>> I want to get the name of network interface card, like - "VIA Rhine >>>>>>> I Fast Ethernet Adapter". Is there any function in php for this or >>>>>>> perhaps a way to find it out? >>>>>>> >>>>>> >>> Not really a PHP question, but the answer is 'lspci'. Here's some sample >>> output: >>> >>> 00:0c.0 Ethernet controller: Advanced Micro Devices [AMD] 79c970 [PCnet32 >>> LANCE] (rev 26) >>> 04:0a.0 Ethernet controller: Advanced Micro Devices [AMD] 79c970 [PCnet32 >>> LANCE] (rev 26) >>> >>> >>> >>> /Per Jessen, Zürich >>> >>> >> Windows you can use: ipconfig /all >> >> >> Ethernet adapter Local Area Connection: >> >> Connection-specific DNS Suffix . : localdomain >> Description . . . . . . . . . . . : Intel(R) PRO/1000 PL Network >> Connection >> >> -Shawn >> >> >> -- >> PHP General Mailing List (http://www.php.net/) >> To unsubscribe, visit: http://www.php.net/unsub.php >> >> >> >> >> -- >> Thiago Henrique Pojda > > > -- Thiago Henrique Pojda |