Instalasipkg update ypkg upgrade -ypkg install php curl wget git -yContoh Penggunaan PHP CLI pada termuxbuat file
Instalasi
buat file php
pkg update -yContoh Penggunaan PHP (CLI) pada termux
pkg upgrade -y
pkg install php curl wget git -y
buat file php
Usage/penggunaan<?php
parse_str(implode('&', array_slice($argv, 1)), $_GET);
?>
php -f namafile.php a=1 b[]=2 b[]=3
//output
//$_GET['a'] to '1' and $_GET['b'] to array('2', '3').