Q&A

Q1:Can you include a function call within a double- or single-quoted string, as you can with a variable?
A1: No. You must call functions outside quotation marks. However, you can break the string apart and place the function call between the parts of the string, using the concatenation operator to tie them together. For example:
$newstring = "I purchased".numPurchase($somenum)." items.";

Get Sams Teach Yourself PHP, MySQL® and Apache All in One now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.