This autoloader extends the PSR-0 standard.
It uses PHP SPL extensions and include_path directories.
This autoloader extends the PSR-0 standard.
It uses PHP SPL extensions and include_path directories.
| <?php | |
| namespace igorw\lusp; | |
| // all functions return a pair of [val, env] | |
| function evaluate($expr, $env = []) { | |
| if (is_string($expr)) { | |
| if (is_numeric($expr)) { | |
| $val = (float) $expr; |
| <?php | |
| use Doctrine\ORM\EntityManager, | |
| Doctrine\ORM\Configuration, | |
| Doctrine\ORM\Mapping\ClassMetadata; | |
| /** | |
| * Active Entity trait | |
| * | |
| * Limitations: a class can only ever be assocaited with ONE active entity manager. Multiple entity managers |
| <?php | |
| namespace Foo\XXXBundle\Command; | |
| use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand; | |
| use Symfony\Component\Console\Input\InputInterface; | |
| use Symfony\Component\Console\Output\OutputInterface; | |
| use JMS\Payment\CoreBundle\Plugin\Exception\CommunicationException; | |
| use JMS\Payment\CoreBundle\Entity\Payment; | |
| use JMS\Payment\CoreBundle\Plugin\PluginInterface; |
| cd ~ | |
| sudo apt-get update | |
| sudo apt-get install openjdk-7-jre-headless -y | |
| ### Check http://www.elasticsearch.org/download/ for latest version of ElasticSearch and replace wget link below | |
| # NEW WAY / EASY WAY | |
| wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.1.0.deb | |
| sudo dpkg -i elasticsearch-1.1.0.deb |
| <?php | |
| namespace PW\ApplicationBundle\Command; | |
| use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand, | |
| Symfony\Component\Console\Input\InputArgument, | |
| Symfony\Component\Console\Input\InputInterface, | |
| Symfony\Component\Console\Input\StringInput, | |
| Symfony\Component\Console\Output\OutputInterface; |
#Introduction If you're a php developer on ubuntu, there comes the time where you have to install/reinstall your system. I did it already a few times and i decided to write down the steps for a typical web developer stack with php. This is for a developer machine and not for a live environment!
I hope it helps you too!
fyi @mheiniger and me started with an installer here: https://github.com/mheiniger/webdev-setup
Install git:
sudo apt-get install git
Configure Git:
touch ~/.gitignore_global
git config --global core.excludesfile ~/.gitignore_global
git config --global user.name "Your Name"
git config --global user.email "Your Email"
Elasticsearch was created in 2010 by Shay Banon after forgoing work on another search solution, Compass, also built on Lucene and created in 2004.
| <?php | |
| const ✓ = true; | |
| const ✕ = false; | |
| const ∞ = INF; | |
| const γ = M_EULER; | |
| const π = M_PI; | |
| const e = M_E; | |
| function ≠($left, $right) { |