Ver original<?php$shortcode = '[img.jpg~http://example.com/~100~100]';list($img, $url, $width, $height) = explode('~', trim($shortcode, '[]'));echo $img . '<br />' . $url . '<br />' . $width . '<br />' . $height;