A string is just text data. You'll handle things like names, emails, titles, messages, addresses, and product descriptions as strings. PHP has a huge set of string functions for checking length, trimming, transforming text, and more.
php
<?php
$message = "Learn PHP step by step";
echo strlen($message);
echo "<br>";
echo str_word_count($message);
echo "<br>";
echo strtoupper($message);
?>You should see
22 5 LEARN PHP STEP BY STEP