1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/lib/Doctrine/Resource.php

11 lines
237 B
PHP
Raw Normal View History

<?php
class Doctrine_Resource
{
2007-09-21 22:01:08 +04:00
public static function request($url, $request)
{
$url .= strstr($url, '?') ? '&':'?';
$url .= http_build_query($request);
return file_get_contents($url);
}
}