Skip to content

Instantly share code, notes, and snippets.

@saaeiddev
Created October 29, 2022 16:39
Show Gist options
  • Save saaeiddev/fcf916612070feb4d4bc1f5794a9962a to your computer and use it in GitHub Desktop.
Save saaeiddev/fcf916612070feb4d4bc1f5794a9962a to your computer and use it in GitHub Desktop.
<?php
/* a few functions for debugging in php */
$a = 100;
$b = 500;
$c = 3.333;
$r = var_dump($c);
$e = print_r($b);
$u = gettype($a);
$u2 = gettype($b);
$u3 = gettype($c);
echo $r;
echo $e;
echo $u;
echo $u2;
echo $u3;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment