Skip to Content
PHP6 and MySQL® 6 Bible
book

PHP6 and MySQL® 6 Bible

by Tim Converse, Steve Suehring, Joyce Park
January 2009
Intermediate to advanced
911 pages
20h 32m
English
Wiley
Content preview from PHP6 and MySQL® 6 Bible

Chapter 7. Learning PHP String Handling

Although images, sound files, videos, animations, and applets make up an important portion of the World Wide Web, much of the web is still text — one character's worth after another, like this sentence. The basic PHP data type for representing text is the string.

In this chapter, we cover almost all PHP's capabilities for manipulating strings (although we leave more advanced string functions and the pattern-matching power of regular expressions for separate treatment in Chapter 22). We start with the basics of strings, then move to the most commonly used operators and functions.

Strings in PHP

Strings are sequences of characters that can be treated as a unit — assigned to variables, given as input to functions, returned from functions, or sent as output to appear on your user's web page. The simplest way to specify a string in PHP code is to enclose it in quotation marks, whether single quotation marks (') or double quotation marks ("), like this:

$my_string = 'A literal string';
$another_string = "Another string";

The difference between single and double quotation marks lies in how much interpolation PHP does of the characters between the quote signs before creating the string itself. If you enclose a string in single quotation marks, almost no interpolation will be performed; if you enclose it in double quotation marks, PHP will splice in the values of any variables you include, as well as make substitutions ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Beginning PHP 5.3

Beginning PHP 5.3

Matt Doyle
PHP 7: Real World Application Development

PHP 7: Real World Application Development

Doug Bierer, Altaf Hussain, Branko Ajzele
MySQL®

MySQL®

Paul DuBois

Publisher Resources

ISBN: 9780470384503Purchase book