String in PHP

Advertisements

MySQL Order By String Function in PHP

String in PHP

In PHP string is a sequence of characters i.e. used to store and manipulate text. There are 4 ways to specify string in PHP.

  • single quoted
  • double quoted
  • heredoc syntax
  • newdoc syntax (since PHP 5.3)

Single Quoted PHP String

It is simple and easy way to specify string in php. We can create a string in PHP by enclosing text in a single quote.

Use String in PHP

<?php

$str='Hello php I am single quote String';  
echo $str;

?>

Output

Hello php I am single quote String

Double Quoted PHP String

In PHP, we can also specify string through enclosing text within double quote

Use String in PHP

<?php

$str="Hello php I am double quote String";
echo $str;

?>

Output

Hello php I am double quote String

Note: Now, you can't use double quote directly inside double quoted string.

Double String in PHP

<?php

$str="Hello "php" I am double quote String";
echo $str;

?>

Output

Parse error: syntax error, unexpected 'quote' (T_STRING) in C:\wamp\www\string1.php on line 2

We can store multiple line text, special characters and escape sequences in a double quoted PHP string.

Example

<?php

$str="Hello \"php\" I am double quote String";
echo $str;

?>

Output

Hello php I am double quote String

Using double quote String you can also display variable value on webpage

Display variable on webpage PHP

<?php

$num=10;
$str="Number is: $num";
echo $str;

?>

Output

Number is: 10

MySQL Order By String Function in PHP

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements