Skip to content

Instantly share code, notes, and snippets.

View avalanche123's full-sized avatar

Bulat Shakirzyanov avalanche123

View GitHub Profile
<?php
$query = $em->createQuery('SELECT u.name FROM CmsUser u WHERE u.id IN(?1)');
$query->setParameter(1, array(1,2,3));
$usernames = $query->getResult();
<?php
// extract file name and path from a full file path /tmp/images/image.jpg
$path = '/tmp/images/image.jpg';
list($name, $dir) = array_map('strrev', explode(DIRECTORY_SEPARATOR, strrev(str_replace('/', DIRECTORY_SEPARATOR, $path)), 2));
// or , thanks to @nicholascloud
<?php
interface TemplatingAware
{
function setTemplating(EngineInterface $engine);
}
interface RouterAware
{
function setRouter(RouterInterface $router);
interface Symfony\Bundle\FrameworkBundle\Request\ParamConverter\ConverterInterface
{
function convert($value);
function setOption($key, $option);
function getOption($key);
}
@avalanche123
avalanche123 / gist:733353
Created December 8, 2010 14:43
config.yml
parameters:
session.storage.juokaz.options:
name: juokaz
description: custom_session
app.config:
session:
storage_id: juokaz
<?php
class BankAccount
{
public function debit($amount)
{
//...
}
public function credit($amount)
{
server {
listen 80;
server_name your_app.lcl;
#charset koi8-r;
access_log logs/your_app.lcl.access.log main;
location / {
root c:\www\path\to\your\website;
<?php
namespace Symfony\Bundle\FrameworkBundle\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Output\Output;
use Symfony\Bundle\FrameworkBundle\Util\Filesystem;
<?php
namespace MyCompany\Bundle\PaymentBundle\DependencyInjection;
use Symfony\Component\DependencyInjection\Extension\Extension;
use Symfony\Component\DependencyInjection\ContainerBuilder;
class PaymentExtension extends Extension
{
/**
<?php
namespace Symfony\Component\DependencyInjection;
/*
* This file is part of the Symfony framework.
*
* (c) Fabien Potencier <[email protected]>
*
* This source file is subject to the MIT license that is bundled