-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from karneds/fix-head-requests
fix Curl error "transfer closed with ... bytes remaining to read" with HEAD HTTP method
- Loading branch information
Showing
3 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
/** | ||
* @see https://github.com/laminas/laminas-http for the canonical source repository | ||
* @copyright https://github.com/laminas/laminas-http/blob/master/COPYRIGHT.md | ||
* @license https://github.com/laminas/laminas-http/blob/master/LICENSE.md New BSD License | ||
*/ | ||
|
||
|
||
$clength = filesize(__FILE__); | ||
|
||
header(sprintf('Content-length: %s', $clength)); |