Output string value : print « Utility Function « PHP
- PHP
- Utility Function
- print
Output string value
$first_name = 'James';
$last_name = 'Mc';
$full_name = "$first_name $last_name";
print $full_name;
print strlen($full_name);
Related examples in the same category