This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5948 https://github.com/eryx/php-framework-benchmark | |
1324 https://github.com/symfony/symfony | |
988 https://github.com/xpressengine/xe-core | |
780 https://github.com/LExpress/symfony1 | |
622 https://github.com/dupondje/PHP-Push-2 | |
615 https://github.com/nfephp-org/nfephp | |
481 https://github.com/phpbb/phpbb | |
479 https://github.com/michael-romer/zf-boilerplate | |
472 https://github.com/phpmyadmin/phpmyadmin | |
464 https://github.com/yiisoft/yii |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/a1phanumeric/PHP-MySQL-Class | |
https://github.com/aaronpk/Google-Voice-PHP-API | |
https://github.com/abhinavsingh/JAXL | |
https://github.com/abraham/twitteroauth | |
https://github.com/achingbrain/php5-akismet | |
https://github.com/adamgriffiths/ag-auth | |
https://github.com/adlawson/vfs.php | |
https://github.com/adoy/PHP-OAuth2 | |
https://github.com/aerialls/Plum | |
https://github.com/afreiday/php-waveform-png |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[remi] | |
name=Les RPM de remi pour Enterprise Linux 6 - $basearch | |
#baseurl=http://rpms.famillecollet.com/enterprise/6/remi/$basearch/ | |
mirrorlist=http://rpms.famillecollet.com/enterprise/6/remi/mirror | |
enabled=0 | |
gpgcheck=1 | |
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi | |
[remi-php55] | |
name=Les RPM de remi de PHP 5.5 pour Enterprise Linux 6 - $basearch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$f = fopen("data.txt", "r"); | |
fread($f, 10); | |
fread($f, 10); | |
// Run with: strace -e trace=read php test2. | |
/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foo: | |
default_endpoint: endpoint_1 # this endpoint *must* be defined inside the endpoints array | |
endpoints: | |
- name: endpoint_1 | |
value: some_endpoint_1_data | |
- name: endpoint_2 | |
value: some_endpoint_2_data | |
- name: endpoint_3 | |
value: some_endpoint_3_data |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace NoxLogic\DemoBundle\Form\Type; | |
use Doctrine\ORM\EntityManager; | |
use NoxLogic\DemoBundle\Entity\Province; | |
use Symfony\Component\Form\AbstractType; | |
use Symfony\Component\Form\FormBuilderInterface; | |
use Symfony\Component\Form\FormEvent; | |
use Symfony\Component\Form\FormEvents; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Python 2.7.3 (default, Jan 2 2013, 16:53:07) | |
[GCC 4.7.2] on linux2 | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> s = "foo" | |
>>> type(s) | |
<type 'str'> | |
>>> class mys(str) : | |
... i = 4; | |
... | |
>>> type(s) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class foo { | |
public function f1() { | |
print("F1: ".get_class($this). "\n"); | |
} | |
public function f2() { | |
$this->f1(); | |
} | |
public function f3() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import io; | |
class foo { | |
public method f1() { | |
io.print("F1: ",self.__name(), "\n"); | |
} | |
public method f2() { | |
self.f1(); | |
} | |
public method f3() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class A | |
m1 | |
m2 | |
m3 | |
class B extends A class C extends A | |
m1' m6 | |
m4 | |
m5 |