Monday, June 15, 2026
HomeLanguagesPHP | getprotobyname() Function

PHP | getprotobyname() Function

The getprotobyname() function is an inbuilt function in PHP which returns the protocol number for a specified protocol name.

Syntax:

int getprotobyname( string $name )

Parameters: This function accepts single parameter $name which is required. It specifies the protocol name, like tcp, icmp, udp, ip etc.

Return Value: This function returns the protocol number on success and FALSE on failure.

Note: This function is available for PHP 4.0.0 and newer version.

Below programs illustrate the getprotobyname() function in PHP:

Program 1: This program gets the protocol number for protocol name “tcp”.




<?php
  
// Use getprotobyname() function to 
// get the protocol number
$protocolnum = getprotobyname("tcp");
  
// Display the result
echo $protocolnum;
  
?>


Output:

6

Program 2: This program checking the many protocols name.




<?php
  
$protocols = array("tcp", "udp", "hmp", "ipv6");
  
foreach( $protocols as $protocol ){
      
    // Use getprotobyname() function to 
    // get the protocol number
    $protocol_name = getprotobyname($protocol);
      
    // Display the result
    echo $protocol_name . ": " . $protocol . "<br>";
}
?>


Output:

6: tcp
17: udp
20: hmp
41: ipv6

Reference: https://www.php.net/manual/en/function.getprotobyname.php

RELATED ARTICLES

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6897 POSTS0 COMMENTS
Nicole Veronica
12013 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6964 POSTS0 COMMENTS