summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'PHP-7.1'Christopher Jones2017-06-216-6/+6
|\
| * Merge branch 'PHP-7.0' into PHP-7.1Christopher Jones2017-06-216-6/+6
| |\
| | * Remove use of obsolete create_function()Christopher Jones2017-06-216-6/+6
| | |
* | | Merge branch 'PHP-7.1'Christopher Jones2017-06-212-9/+9
|\ \ \ | |/ /
| * | Merge branch 'PHP-7.0' into PHP-7.1Christopher Jones2017-06-212-9/+9
| |\ \ | | |/
| | * Update OCI8 version test and package.xmlChristopher Jones2017-06-212-9/+9
| | |
| | * Fix bug #73634 - grapheme_strpos illegal memory accessStanislav Malyshev2017-06-201-1/+2
| | |
| | * Fix bug #73648 - integer overflow in substrStanislav Malyshev2017-06-201-6/+6
| | |
| * | bump versionsJoe Watkins2017-06-203-5/+9
| | |
* | | Added specialized FE_FETCH_R handler for iteration over arrayDmitry Stogov2017-06-202-7/+269
| | |
* | | FE_RESER/FE_FETCH optimisationDmitry Stogov2017-06-202-507/+115
| | |
* | | Update NEWS for 7.2.0alpha3Sara Golemon2017-06-201-0/+3
| | |
* | | Update NEWS for PHP 7.2.0alpha2Sara Golemon2017-06-201-1/+1
| | |
* | | Merge branch 'PHP-7.1'Anatol Belski2017-06-201-1/+3
|\ \ \ | |/ / | | | | | | | | | * PHP-7.1: Split requested size as expected by CreateFileMapping.
| * | Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2017-06-201-1/+3
| |\ \ | | |/ | | | | | | | | | * PHP-7.0: Split requested size as expected by CreateFileMapping.
| | * Split requested size as expected by CreateFileMapping.Anatol Belski2017-06-201-1/+3
| | | | | | | | | | | | Thus fixing ext\opcache\tests\log_verbosity_bug.phpt fails on 64-bit.
* | | NEWS entries for 7.2.0alpha2Sara Golemon2017-06-201-1/+10
| | |
* | | Merge branch 'PHP-7.1'Anatol Belski2017-06-200-0/+0
|\ \ \ | |/ / | | | | | | | | | * PHP-7.1: move next
| * | Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2017-06-200-0/+0
| |\ \ | | |/ | | | | | | | | | * PHP-7.0: move next
| | * move nextAnatol Belski2017-06-203-5/+9
| | |
* | | Fixed Bug #74537 (Align --with-pdo-oci configure option with --with-oci8 syntax)Christopher Jones2017-06-203-59/+64
| | |
* | | Merge branch 'PHP-7.1'Christopher Jones2017-06-200-0/+0
|\ \ \ | |/ /
| * | Update NEWSChristopher Jones2017-06-201-0/+4
| | |
| * | Merge branch 'PHP-7.0' into PHP-7.1Christopher Jones2017-06-201-12/+26
| |\ \ | | |/
| | * PDO_OCI: support IC 12.2 in configure optionChristopher Jones2017-06-202-12/+30
| | |
* | | Mention OCI8 TAF callback support in UPGRADINGChristopher Jones2017-06-201-0/+7
| | |
* | | Merge branch 'PHP-7.1'Christopher Jones2017-06-202-2/+19
|\ \ \ | |/ / | | | | | | | | | * PHP-7.1: Bump OCI8 version
| * | Merge branch 'PHP-7.0' into PHP-7.1Christopher Jones2017-06-202-2/+19
| |\ \ | | |/ | | | | | | | | | * PHP-7.0: Bump OCI8 version
| | * Bump OCI8 versionChristopher Jones2017-06-202-2/+19
| | |
* | | Merge branch 'PHP-7.1'Christopher Jones2017-06-201-0/+183
|\ \ \ | |/ / | | | | | | | | | * PHP-7.1: add test for bug #70700
| * | Merge branch 'PHP-7.0' into PHP-7.1Christopher Jones2017-06-201-0/+183
| |\ \ | | |/ | | | | | | | | | * PHP-7.0: add test for bug #70700
| | * Merge branch 'pull-request/1569' into PHP-7.0Christopher Jones2017-06-201-0/+183
| | |\ | | | | | | | | | | | | | | | | * pull-request/1569: add test for bug #70700
| | | * add test for bug #70700Chuck Burgess2017-06-201-0/+183
| | |/
| | * Update NEWSChristopher Jones2017-06-201-0/+3
| | |
| * | Update NEWSChristopher Jones2017-06-201-0/+3
| | |
* | | Update NEWSChristopher Jones2017-06-201-0/+3
| | |
* | | Merge branch 'PHP-7.1'Christopher Jones2017-06-207-4/+250
|\ \ \ | |/ / | | | | | | | | | * PHP-7.1: oci8 - Implementation of Oracle TAF Callback
| * | Merge branch 'PHP-7.0' into PHP-7.1Christopher Jones2017-06-207-4/+250
| |\ \ | | |/ | | | | | | | | | * PHP-7.0: oci8 - Implementation of Oracle TAF Callback
| | * Merge branch 'pull-request/2459' into PHP-7.0Christopher Jones2017-06-207-4/+250
| | |\ | | | | | | | | | | | | | | | | * pull-request/2459: oci8 - Implementation of Oracle TAF Callback
| | | * oci8 - Implementation of Oracle TAF CallbackKoenigsKind2017-06-207-4/+250
| | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds support for the Transparent Application Failover Callback. The php_oci_connection struct got a char* added which will contain the callback function, it should be set to PHP_OCI_TAF_DISABLE_CALLBACK at the end of a php request for permanent connections so that, if a TAF callback occurs, no userspace function will be called. Maybe add support for registering object functions (via array), currently the register function only accepts a string. I didn't know how to implement it correctly. As a failover occurs very rarely it might be better to not keep the cache when saving the zend_fcall_info. Things to do [ ] config.m4 needs to compile oci8_failover.c [ ] Check if correctly implemented (especially for multithreading) [ ] Add support for registering callback function via array
* | | Merge branch 'PHP-7.1'Christopher Jones2017-06-201-0/+124
|\ \ \ | |/ / | | | | | | | | | * PHP-7.1: add test for bug #60994
| * | Merge branch 'PHP-7.0' into PHP-7.1Christopher Jones2017-06-201-0/+124
| |\ \ | | |/ | | | | | | | | | * PHP-7.0: add test for bug #60994
| | * Merge branch 'pull-request/1566' into PHP-7.0Christopher Jones2017-06-201-0/+124
| | |\ | | | | | | | | | | | | | | | | * pull-request/1566: add test for bug #60994
| | | * add test for bug #60994Chuck Burgess2017-06-201-0/+124
| | |/
* | | BUG #74737: Incorrect ReflectionFunction information for mysqli_get_client_infoMitch Hagstrand2017-06-192-1/+20
| | |
* | | Test ftp_ssl_connect() function : error conditionschance garcia2017-06-191-0/+51
| | | | | | | | | | | | | | | | | | | | | test timeout warning ensure connection fails with invalid hostname test invalid parameter types test exceeds expected number of parameters
* | | Fixed wrong usage of old ZPP API.Dmitry Stogov2017-06-1910-15/+14
| | |
* | | Merge branch 'pull-request/2528'Christoph M. Becker2017-06-193-8/+72
|\ \ \ | | | | | | | | | | | | | | | | | | | | * pull-request/2528: Change flags to use SQLITE3_OPEN_READ* constants instead of a fake-boolean, add tests on errors Implement writing to BLOBs in SQLite3
| * | | Change flags to use SQLITE3_OPEN_READ* constants instead of a fake-boolean, ↵BohwaZ2017-06-082-5/+19
| | | | | | | | | | | | | | | | add tests on errors
| * | | Implement writing to BLOBs in SQLite3BohwaZ2017-05-182-6/+53
| | | |