PHP: Basic String Operations

2007-11

Strings can be joined by the period “.” symbol.

<?php
$a = "this" . " that";
echo $a; // prints “this that”
?>

String Operators↗

Substring extraction is done using the function “substr”. The form is: “substr( $myStr, $startIndex, $length)”. String index starts with 0.

<?php
$a = "once upon a time";
echo substr($a,0,4); // prints “once” 
?>

substr↗

Length of the string is “strlen()”.

<?php
$a = "once...";
echo strlen($a); // prints 7
?>

strlen↗

Page created: 2007-11.
© 2007 by Xah Lee.
Xah Signet