Php-mysql Course

1. Building strings

A string is simply a quoted chunk of characters: letters, numbers, spaces, punctuation, and so forth. Strings can be contained within either single or double quotation marks, and in a HEREDOC construction.
These are all strings:   "Web Courses",   'coursesweb.net',   "1976",   '$5, 78%',   'August, 23, 2011'.
To make a string variable, assign a string value to a valid variable name:

<?php
$name = 'Marius';
$a_date = 'July, 07, 1996';
?>

You must use the same type of quotation mark for the beginning and the end of the string. You can add simple quote in a string delimited by double quotes and vice versa, double quotes when you use single-quote bookends.
If you want to add the same quote mark within a string, it must be escaped (preceding it with a backslash (\)). This keeps PHP from interpreting the second quotation mark as the end of the string.
- Double-quote bookends allow you to escape a whole list of characters:
<?php
$tag = '<p id="idp">Paragraph</p>';         // Double quotes in a string created with simple quotes
$site = "Domain: 'CoursesWeb.net'";         // Simple quotes in a string created with double quotes

$div = "<div id=\"idd\">Content</div> \n";         // Double quotes and "new line (\n)" escaped in a string with same quotes
?>
- The "\n" character combination is seen by PHP as a new line directive when written within a double-quoted string (this does not work the same way with single quotes).

To print out the value of a string, use either echo or print.
To print the value of a variable within a context, use double quotation marks. If you add a variable inside simple quotation marks, will display its name (not its value).
<?php
$name = 'Marius';
echo "Hy $name";        // Hy Marius
echo 'Hy $name';        // Hy $name
?>

• Another way to build a string is to use a construct called HEREDOC. It's used to build longer strings, and therefore makes them more readable to the programmer.
Begin the HEREDOC with three less than (<) signs followed by a name designation for that string. After the string is complete, repeat the name designation on its own line with a terminating semicolon. Here is an example:
<?php
$str = <<< aName
The text content
of this string,
created with HEREDOC construct.
aName;

echo $str;
?>
- PHP has no set limits on how big a string can be.

2. Concatenating Strings

Concatenation is used to join strings. It's performed using the concatenation operator (.).
<?php
$site1 = 'marplo.net';
$site2 = 'coursesweb.net';
echo 'Web sites: '. $site1. ', '. $site2;         // Web sites: marplo.net, https://coursesweb.net
?>
- You see that we used the concatenation operator (.) three times. The second (.) is used to insert a comma and a space character ( ', ' ), to separate the value of the two variables.
If you are concatenating one value to another, you can use the concatenation assignment operator ( .= ).
<?php
$hy = 'Hy ';
$hy .= 'MarPlo';
echo $hy;             // Hy MarPlo
?>

3. Some PHP function for strings

PHP has a lot of useful string-specific functions. Here are just some example, the complete list can be found at the official website: PHP string functions.

1.   trim("string", 'character')

- Strip whitespace (or other characters, specified at 'character') from the beginning and end of a string. Without the second parameter, trim() will strip ordinary white space.

<?php
$str = '   Have a good life ...  ';
var_dump($str);            // string(25) "   Have a good life ...  "

$str = trim($str);
var_dump($str);            // string(20) "Have a good life ..."

?>
- var_dump() displays structured information about its parameter, that includes its type, the number of characters and value.

2.   strlen("string")

- Returns the length of a string.

<?php
$str =  'coursesweb.net/php-mysql/';
echo strlen($str);          // 29
?>

1.   str_word_count("string")

- Counts the number of words inside "string".

<?php
$str = 'Have a good life.';
echo str_word_count($str);                // 4
?>

4.   ucwords("string")

- Returns a string with the first character of each word in "string" capitalized.

<?php
$str = 'hy there, how are you?';
echo ucwords($str);               // Hy There, How Are You?
?>

5.   strtolower("string")

- Returns "string" with all alphabetic characters converted to lowercase.

<?php
$str = 'HY THERE, How are you?';
echo strtolower($str);               // hy there, how are you?
?>

6.   stristr("string", 'needle')

- Return the portion of the string from the beginning of the 'needle' to the end of the "string". If the 'needle' is not found, False is returned. 'needle' and "string" are examined in a case-insensitive manner.

<?php
$str = 'PHP course and tutorials';
$re = stristr($str, 'se');
echo $re;                  // se and tutorials
?>

7.   stripos("string", 'needle')

- Returns the numeric position of the first occurrence of 'needle' in the "string". If the 'needle' is not found, False is returned. 'needle' and "string" are examined in a case-insensitive manner.

<?php
$str = 'PHP course and tutorials';
$re = stripos($str, 'se');
echo $re;                  // 8
?>

8.   strip_tags("string")

- Removes embedded HTML tags from within "string".

<?php
$str = 'Example with <b>html</b> <h6>tags</h6>';
echo strip_tags($str);       // Example with html tags
?>

9.   str_ireplace('search', 'replace' "subjec")

- Replace all occurrences of the 'search' string with the 'replace' string in "subject" (case-insensitive).

<?php
$str = 'PHP course and tutorials';
$re = str_ireplace('course', 'lessons', $str);
echo $re;                  // PHP lessons and tutorials
?>

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which meta tag provides a short description of the page?
<meta content="..."> <meta description="..."> <meta http-equiv="...">
<meta name="description" content="70-160 characters that describes the content of the page" />
Which CSS property is used to stop the wrapping effect of the "float"?
clear text-align position
#some_id {
  clear: both;
}
Click on the method which gets an array with all the elements in the document that have a specified tag name.
getElementsByName() getElementById() getElementsByTagName()
var divs = document.getElementsByTagName("div");
var nr_divs = divs.length;
alert(nr_divs);
Indicate the PHP function which returns the number of elements in array.
is_[) count() strlen()
$arr =[7, 8, "abc", 10);
$nri = count($arr);
echo $nri;        // 4
PHP Strings

Last accessed pages

  1. Get Attribute (ID, Class, Name, Title, Src) with jQuery (74439)
  2. Node.js Move and Copy file (28290)
  3. AJAX with POST and PHP (18849)
  4. JQZoom Image Magnifier (12975)
  5. Change CSS file with jQuery (5381)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (201)
  2. Read Excel file data in PHP - PhpExcelReader (66)
  3. The Mastery of Love (56)
  4. PHP Unzipper - Extract Zip, Rar Archives (51)
  5. Working with MySQL Database (34)
Chat
Chat or leave a message for the other users
Full screenInchide