Php

From Server STB
Revision as of 12:23, 13 January 2024 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