w3resource

PHP Exercises : Display strings

PHP : Exercise-2 with Solution

Write a PHP script to display the following strings.

Sample Strings :

'Tomorrow I \'ll learn PHP global variables.'
'This is a bad command : del c:\\*.*'

String: A string is series of characters, where a character is the same as a byte. PHP supports a 256-character set, and hence does not offer native Unicode support.
Note: As of PHP 7.0.0, there are no particular restrictions regarding the length of a string on 64-bit builds. On 32-bit builds and in earlier versions, a string can be as large as up to 2GB (2147483647 bytes maximum).

A string literal can be specified in four different ways:

  • single quoted: The simplest way to specify a string is to enclose it in single quotes (the character ').
  • double quoted: The simplest way to specify a string is to enclose it in single quotes (the character ").
  • heredoc syntax: A third way to delimit strings is the heredoc syntax: <<<. After this operator, an identifier is provided, then a newline.
  • nowdoc syntax (since PHP 5.3.0): Nowdocs are to single-quoted strings what heredocs are to double-quoted strings. A nowdoc is specified similarly to a heredoc, but no parsing is done inside a nowdoc.

Sample Solution: -

PHP Code:

<?php
echo "Tomorrow I \'ll learn PHP global variables."."\n"; 
echo "This is a bad command : del c:\\*.*"."\n"; 
?>

Sample Output:

Tomorrow I 'll learn PHP global variables.                  
This is a bad command : del c:\*.*

Flowchart:

Flowchart: Display strings

PHP Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a PHP script to get the PHP version and configuration information.
Next: $var = 'PHP Tutorial'. Put this variable into the title section, h3 tag and as an anchor text within an HTML document.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.

PHP: Tips of the Day

Returns all elements in an array except for the first one

Example:

<?php
function tips_tail($items)
{
  return count($items) > 1 ? array_slice($items, 1) : $items;
}

print_r(tips_tail([1, 5, 7]));
?> 

Output:

Array
(
    [0] => 5
    [1] => 7
)