Wordpress Slider与来自PHP的源图像

I need an image slider for Wordpress in which the images com from PHP. Something behaving like:

[slider]
<?php
get_slider_images();
?>
[/slider]

with get_slider_images() echoing lines like:

<img src="xxxxx.jpg" title="dummy title">

Does any one know any suitable plugin (or any other solution)? Note: I have done my search, but couldn't find anything.

Thanks!!

flexslider option:

$parts = enter in your image urls;

$description .= '<div class="flexslider"><ul class="slides">';

    foreach ($parts as $part) {
        $description .= '<li><img height="200" width="342" src=' . $part . "> </li>";
    }

    $description .= "</ul></div>";

jsfiles http://www.woothemes.com/flexslider/