Created
October 29, 2022 16:39
-
-
Save saaeiddev/fcf916612070feb4d4bc1f5794a9962a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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