видео уже купили, кто хочет получить доступ, пишите сразу на [email protected]
видео за 2007-2013 года
Если разделить сумму на 10, то по 2.5к руб с носа, но можно больше.
- отправил ли деньги - ✓
- деньги в пути - ➡
видео уже купили, кто хочет получить доступ, пишите сразу на [email protected]
видео за 2007-2013 года
Если разделить сумму на 10, то по 2.5к руб с носа, но можно больше.
<?php | |
/** | |
* DuplicateFilter prevents Yii from exposing URLs starting with /index.php/ when showScriptName is false. Such | |
* URLs are automatically redirected to proper ones. | |
* | |
* To use add the following to your controller: | |
* | |
* ```php | |
* public function filters() { | |
* return array( |
<?php | |
namespace Acme\PeopleSoftBundle\Listener; | |
use Doctrine\DBAL\Event\ConnectionEventArgs; | |
use Doctrine\DBAL\Events; | |
use Doctrine\Common\EventSubscriber; | |
/** | |
* Changes Doctrine's default Oracle-specific column type mapping to Doctrine |
<?php | |
//set_include_path(get_include_path() . PATH_SEPARATOR . __DIR__); // optional | |
spl_autoload_register(function ($class) { | |
$file = preg_replace('#\\\|_(?!.+\\\)#','/', $class) . '.php'; | |
if (stream_resolve_include_path($file)) | |
require $file; | |
}); |