Moved to github.com/andreyvit/OCISL.
- PHP and friends devroom (FOSDEM 2015)
- PHP & Friends @ FOSDEM 2015 (http://joind.in/)
- Wikimedia adopts Phabricator, deprecates seven infrastructure tools First hand experiences from a big free software project on a complex migration
- Video recordings 2015
This file contains 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 CurlDebug | |
* | |
* drop-in class to add verbose information to curl requests and to display trouble-shooting information | |
* | |
* @author hakre <http://hakre.wordpress.com/> | |
* @link http://stackoverflow.com/a/14436877/367456 | |
*/ | |
class CurlDebug |
This file contains 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 | |
/** | |
* Example: Decode an Input Stream with PHP filters | |
* | |
* decode-input-stream-example.php | |
* | |
* @link https://gist.github.com/hakre/d34239bb237c50e728fd | |
* @link http://stackoverflow.com/q/25051578/367456 | |
*/ |
This file contains 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 | |
/** | |
* StreamNotifyPrinter | |
* | |
* @author hakre <http://hakre.wordpress.com> | |
* @version 0.0.2 | |
* @example http://stackoverflow.com/a/24711469/367456 | |
* @link https://gist.github.com/hakre/8ba2c0d49b7baf062acd | |
*/ |
This file contains 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 | |
/** | |
* spl_autoload_register() just with added PSR-0 support | |
* | |
* The support is added, that means, for each classname first of all | |
* by the priority given in the include-path directive, a per-directory | |
* test is done for the full-classname based file and then sub-directories | |
* are traversed. | |
* | |
* PHP 5.3 Namespace Separators are always mapped to a directory to |
This file contains 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 RecursiveSimpleXMLIterator | |
* | |
* RecursiveIterator for SimpleXMLElement | |
*/ | |
class RecursiveSimpleXMLIterator extends IteratorIterator implements RecursiveIterator | |
{ | |
function __construct(SimpleXMLElement $xml) { | |
parent::__construct($xml); |
@TODO add this to the PHP manual
PHP has two resource types related to the PHP Zip Extension:
- Zip Directory
- Zip Entry
Both are not a "stream" resource (if tested with stream_get_meta_data
).
This file contains 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 | |
/** | |
* duri - data:// URI based, non-javascript anonymous redirect script | |
* | |
* Redirects tested to ... | |
* ... work with: | |
* - Firefox (23.0.1) | |
* - Chrome (29.0.1547.76 m) | |
* - Google URL shortener <http://goo.gl/> | |
* ... not work with: |