Php

From Server STB
Revision as of 14:16, 20 September 2023 by Admin (talk | contribs)
Jump to navigation Jump to search

PHP

  • Contoh menampilkan ip address server

<?php

$command = 'ip addr show eth0 | grep -oP "inet \K[\d.]*"';

$ipaddr = shell_exec($command);

$host = trim($ipaddr);

echo $host;

?>

Koneksi

Database

API

web