There are similar questions in SO, but I couldn\'t find any exactly like this. I need to remove everything up to (and including) a particular delimiter. For example, given t
EDIT: this one works fine.
$str = "File:MyFile.jpg"; $str = substr( $str, ( $pos = strpos( $str, ':' ) ) === false ? 0 : $pos + 1 );