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
<?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body> | |
<CATALOG> | |
<CD> | |
<TITLE>Empire Burlesque</TITLE> | |
<ARTIST>Bob Dylan</ARTIST> | |
<COUNTRY>USA</COUNTRY> | |
<COMPANY>Columbia</COMPANY> | |
<PRICE>10.90</PRICE> | |
<YEAR>1985</YEAR> | |
</CD> |
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 FileSessionHandler implements SessionHandlerInterface | |
{ | |
/** | |
* time in milliseconds how fast to poll the filesystem for a file-lock | |
* in case it cannot be acquired / is (b)locked by other resources. | |
* | |
* @var int | |
* @internal |
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 | |
<<<CONFIG | |
packages: | |
- "codeguy/arachnid: 1.*" | |
CONFIG; | |
set_time_limit(0); | |
$crawler = new \Arachnid\Crawler('https://www.example.com/', 5); | |
$crawler->traverse(); |
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
/*! | |
* jQuery Validation Plugin v1.15.1-pre | |
* | |
* http://jqueryvalidation.org/ | |
* | |
* Copyright (c) 2016 Jörn Zaefferer | |
* Released under the MIT license | |
*/ | |
(function( factory ) { | |
if ( typeof define === "function" && define.amd ) { |
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
Program terminated with signal 11, Segmentation fault. | |
#0 zend_mm_remove_from_free_list (heap=0x7f22fe23fe30, mm_block=0x7f22fed48448) at /build/php5-0ouR7y/php5-5.4.45/Zend/zend_alloc.c:833 | |
833 /build/php5-0ouR7y/php5-5.4.45/Zend/zend_alloc.c: No such file or directory. | |
(gdb) bt | |
#0 zend_mm_remove_from_free_list (heap=0x7f22fe23fe30, mm_block=0x7f22fed48448) at /build/php5-0ouR7y/php5-5.4.45/Zend/zend_alloc.c:833 | |
#1 0x00007f22f9cc8280 in _zend_mm_free_int (heap=0x7f22fe23fe30, p=0x7f22fed48400) at /build/php5-0ouR7y/php5-5.4.45/Zend/zend_alloc.c:2101 | |
#2 0x00007f22f9cfcd1e in zend_hash_destroy (ht=0x7f22fed48260) at /build/php5-0ouR7y/php5-5.4.45/Zend/zend_hash.c:565 | |
#3 0x00007f22f9ced85b in _zval_dtor_func (zvalue=0x7f22fed48230) at /build/php5-0ouR7y/php5-5.4.45/Zend/zend_variables.c:45 | |
#4 0x00007f22f9cdf6ca in _zval_dtor (zvalue=<optimized out>) at /build/php5-0ouR7y/php5-5.4.45/Zend/zend_variables.h:35 | |
#5 _zval_ptr_dtor (zval_ptr=0x7f22fed7ece0) at /build/php5-0ouR7y/php5-5.4.45/Zend/zend_execut |
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
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> | |
<style> | |
<!-- | |
ul { | |
float: left; | |
width: 300px; | |
margin-top: 10px; | |
padding-left: 10px; |
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
#!/bin/bash | |
if [ "$#" != "1" ] | |
then | |
echo "Usage: $0 <branch>" | |
exit 1; | |
fi | |
if [ $1 == "master" ] | |
then |
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
#from boot2docker | |
docker run -it dockerfile/ubuntu | |
#from withini the new vm | |
apt-get update && apt-get install -y git gcc bison autoconf libxml2-dev libssl-dev valgrind | |
mkdir /dvl && cd /dvl | |
git clone https://github.com/php/php-src.git php/php-src | |
wget https://gist.githubusercontent.com/staabm/d95a5ee8296043fea30d/raw/112820accbb9f7014814d78868a43cc4782408e4/php.sh && chmod +x php.sh && bash php.sh master |
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 | |
function checkPostSizeExceeded() { | |
$maxPostSize = iniGetBytes('post_max_size'); | |
if ($_SERVER['CONTENT_LENGTH'] > $maxPostSize) { | |
throw new Exception( | |
sprintf('Max post size exceeded! Got %s bytes, but limit is %s bytes.', | |
$_SERVER['CONTENT_LENGTH'], | |
$maxPostSize |
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
{ | |
... | |
"scripts": { | |
"post-update-cmd": [ | |
"composer dump-autoload --optimize" | |
], | |
"post-install-cmd": [ | |
"composer dump-autoload --optimize" | |
] | |
}, |