Skip to content

Instantly share code, notes, and snippets.

@vienhoang
Created September 15, 2014 13:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vienhoang/03b90bd5f2fe174b7874 to your computer and use it in GitHub Desktop.
Save vienhoang/03b90bd5f2fe174b7874 to your computer and use it in GitHub Desktop.
PHP: substr
<?php
$images = array(
'logo.png',
'background.jpg',
'http://www.hardcoregamer.com/wp-content/uploads/2014/03/BAK_Sshot019.jpg'
);
foreach ($images as $image) {
$src = (substr($image,0,4) == 'http') ? $image : "images/$image";
echo $src . "<br />";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment