Php: Difference between revisions

From Server STB
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
PHP
PHP


Contoh menampilkan ip address server
* Contoh menampilkan ip address server


<?php
<?php

Revision as of 14:16, 20 September 2023

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