Advertisement
Guest User

Untitled

a guest
Feb 19th, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. <?php
  2.    
  3.    $x = 8;
  4.    $y = -3;
  5.    $a = $x + $y;
  6.    $b = $x += 9;
  7.  
  8.    echo {$z};  // 5
  9.    echo {$b};  // 17
  10.  
  11.    $string_1 = "Hello";
  12.    $string_2 = "World!";
  13.  
  14.    $string_1 .= $string_2;
  15.    $string_3 = $string_1 . "World!"
  16.  
  17.    echo {string_1};  // Hello World!
  18.    echo {string_3};  // Hello World!
  19.  
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement