(PCC)::[How-to-use-Arithmetic-Subtraction-operator-in-php]::[php]
<!DOCTYPE html> <html> <body> <?php $x = 10; $y = 6; echo $x - $y; ?> </body> </html>