Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 63e00144368abb1245aebc8fa7676672 > files > 17

ezcomponents-Url-1.2.2-4.mga4.noarch.rpm

<?php
require_once 'tutorial_autoload.php';

// register an url under the alias 'map'
ezcUrlCreator::registerUrl( 'map', '/images/geo?xsize=450&ysize=450&zoom=4' );

// display the the url prepended to map_norway.gif
var_dump( ezcUrlCreator::prependUrl( 'map', 'map_norway.gif' ) );

// display the the url prepended to map_sweden.gif
var_dump( ezcUrlCreator::prependUrl( 'map', 'map_sweden.gif' ) );

// display the stored url under the alias 'map'
var_dump( ezcUrlCreator::getUrl( 'map' ) );

?>