Moved to: https://github.com/EmanueleMinotto/crystal
Read more: https://github.com/EmanueleMinotto/crystal/wiki
<?php | |
$factorial = call_user_func( | |
function ($le) { | |
return call_user_func( | |
function ($f) { | |
return $f($f); | |
}, | |
function ($f) use ($le) { | |
return $le(function ($x) use ($f) { |
This release has two major improvements. The first one is that react/dns
is now using a promise based API. In case you missed it, react/promise is a PHP library for promises. Take a look at the README and familiarize yourself with it, as it will be used by many libs in the react ecosystem, including core.
The previous API was:
$dns->resolve('igor.io', function ($ip) {
echo "Yay, the IP is $ip.\n";
<?php | |
class A{ | |
protected $b; | |
function __construct() {unset($this->b);} | |
function __get($name){ | |
echo $name; | |
return $this->$name; | |
} | |
} | |
$a = new A; |
In order to get a bit of "hard data" on what accessors will actually be used for once they are introduced I wrote a small script that scans through a codebase, finds all getter and setter methods and checks them for various characteristics. (The analyze.php file in this Gist.)
Here are the results of running it on a Symfony (Standard) skeleton.
absoluteTotal => 18516 (486.6%)
total => 3805 (100.0%)
skipped => 124 ( 3.3%)
// Use Reflection | |
// if by_val === true (or by_reference === false) | |
extract : | |
$data = array(); | |
for every elements in object | |
getter = getElementName | |
if element is scalar (object or primitive type) |
<?php | |
/** | |
* Created by JetBrains PhpStorm. | |
* User: Marco Pivetta | |
* Date: 16.08.12 | |
* Time: 11:05 | |
* To change this template use File | Settings | File Templates. | |
*/ | |
class CriteriaTest extends \PHPUnit_Framework_TestCase | |
{ |
Locate the section for your github remote in the .git/config
file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/*
to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
<?php | |
use Doctrine\ORM\Mapping as ORM; | |
use Doctrine\Common\Collections\ArrayCollection; | |
/** | |
* @ORM\Entity() | |
* @ORM\Table(name="user") | |
*/ | |
class User |
I've collected all the links related to Backbone.js that I find useful. Most of these are well-built projects and epic guides (not ephemeral blog posts.) Please feel free to fork and even contribute.