Skip to content

Instantly share code, notes, and snippets.

@adamgoose
Created April 30, 2013 00:50
Show Gist options
  • Save adamgoose/5485935 to your computer and use it in GitHub Desktop.
Save adamgoose/5485935 to your computer and use it in GitHub Desktop.
Rename image
<?php
foreach($order->images() as $key => $image) {
$ext = explode(".", $image->imageName);
$ext = $ext[count($ext)-1];
$newName = "NEWFILENAME_".$key.".".$ext;
//rename file from $image->imageName to $newName
$image->imageName = $newName;
$image->save();
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment