$int = 10; echo "I. Value of \$int is: $int\n"; echo gettype("$int"); // outputs : string
$int = 10; echo "II. Value of \$int is: ".$int;
Pro tip: use ```triple backticks around text``` to write in code fences