Guest User

Untitled

a guest
Sep 22nd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. <?php
  2. $some_var = 'test';
  3.  
  4. // With inline var:
  5. echo "{$some_var}-with_trailing_text.png";
  6.  
  7. // With prepended var:
  8. echo $some_var.'-with_trailing_text.png';
Add Comment
Please, Sign In to add comment