Last active
October 22, 2015 07:13
-
-
Save xto3na/c72ec30d85b971f25875 to your computer and use it in GitHub Desktop.
Особенности PHP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1) Конкатенация: | |
$a = 10; | |
$b = 5; | |
<?php echo $a . $b; ?> | |
Это выражение выведет: "105". | |
2) Экранирование спецсимволов в строках: | |
$brand = "<p style=\"color: red;\"> \"AUDI\" </p>"; | |
<?php echo $brand; ?> <!-- Выведет: "AUDI" (выведет в кавычках и красного цвета) --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment