Home
last modified time | relevance | path

Searched refs:header (Results 1 – 25 of 1205) sorted by relevance

12345678910>>...49

/plugin/odp/
DZipLib.class.php29 $header = $this->ReadCentralFileHeaders($zip);
30 $header['index'] = $i;$info['filename'] = $header['filename'];
31 $info['stored_filename'] = $header['stored_filename'];
32 $info['size'] = $header['size'];$info['compressed_size']=$header['compressed_size'];
33 $info['crc'] = strtoupper(dechex( $header['crc'] ));
34 $info['mtime'] = $header['mtime']; $info['comment'] = $header['comment'];
35 $info['folder'] = ($header['external']==0x41FF0010||$header['external']==16)?1:0;
36 $info['index'] = $header['index'];$info['status'] = $header['status'];
37 $ret[]=$info; unset($header);
191 $header = $this->ReadCentralFileHeaders($zip);
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
DMessageTrait.php45 public function hasHeader($header) argument
47 return isset($this->headerNames[strtolower($header)]);
50 public function getHeader($header) argument
52 $header = strtolower($header);
54 if (!isset($this->headerNames[$header])) {
58 $header = $this->headerNames[$header];
60 return $this->headers[$header];
63 public function getHeaderLine($header) argument
65 return implode(', ', $this->getHeader($header));
68 public function withHeader($header, $value) argument
[all …]
DHeader.php13 * @param string|array $header Header to parse into components.
17 public static function parse($header) argument
22 foreach (self::normalize($header) as $val) {
46 * @param string|array $header Header to normalize.
50 public static function normalize($header) argument
52 if (!is_array($header)) {
53 return array_map('trim', explode(',', $header));
57 foreach ($header as $value) {
/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/src/
DMessageTrait.php49 public function hasHeader($header): bool argument
51 return isset($this->headerNames[strtolower($header)]);
54 public function getHeader($header): array argument
56 $header = strtolower($header);
58 if (!isset($this->headerNames[$header])) {
62 $header = $this->headerNames[$header];
64 return $this->headers[$header];
67 public function getHeaderLine($header): string argument
69 return implode(', ', $this->getHeader($header));
72 public function withHeader($header, $value): MessageInterface argument
[all …]
/plugin/upgrade/myvendor/splitbrain/php-archive/src/
DZip.php151 $header = $this->readCentralFileHeader();
152 $header['index'] = $i;
154 fseek($this->fh, $header['offset']); // seek to beginning of file header
155 $header = $this->readFileHeader($header);
156 $fileinfo = $this->header2fileinfo($header);
170 $directory = ($header['folder']) ? $output : dirname($output);
182 if ($header['compression'] == 0) {
195 if ($header['compression'] != 0) {
199 chr($header['compression']),
209 $size = $header['compressed_size'];
[all …]
DTar.php121 $header = $this->parseHeader($read);
122 if (!is_array($header)) {
126 $this->contentUntil = $this->position + $header['size'];
127 $this->skipUntil = $this->position + ceil($header['size'] / 512) * 512;
129 yield $this->header2fileinfo($header);
200 $header = $this->parseHeader($dat);
201 if (!is_array($header)) {
204 $fileinfo = $this->header2fileinfo($header);
211 $this->skipbytes(ceil($header['size'] / 512) * 512);
229 $size = floor($header['size'] / 512);
[all …]
/plugin/zip/pear/File/Archive/Reader/
DZip.php42 var $header = null; variable in File_Archive_Reader_Zip
89 if ($this->header !== null && $this->data === null) {
90 $toSkip = $this->header['CLen'];
101 $header = $this->source->getData(4);
102 if (PEAR::isError($header)) {
103 return $header;
105 if ($header == "\x50\x4b\x03\x04") {
107 $header = $this->source->getData(26);
108 if (PEAR::isError($header)) {
109 return $header;
[all …]
/plugin/dw2pdf/vendor/mpdf/mpdf/data/
Dout.php18 header('Content-Type: application/pdf');
19 header('Content-disposition: inline; filename="' . $name . '"');
20 header('Cache-Control: public, must-revalidate, max-age=0');
21 header('Pragma: public');
22 header('Expires: Sat, 26 Jul 1997 05:00:00 GMT');
23 header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
31 header('Content-Description: File Transfer');
32 header('Content-Transfer-Encoding: binary');
33 header('Cache-Control: public, must-revalidate, max-age=0');
34 header('Pragma: public');
[all …]
/plugin/authucenter/lib/uc_client/model/
Dmisc.php74 $header = "Accept: */*\r\n";
75 $header .= "Accept-Language: zh-cn\r\n";
77 …$header .= $encodetype == 'URLENCODE' ? "Content-Type: application/x-www-form-urlencoded\r\n" : "C…
78 $header .= "User-Agent: $_SERVER[HTTP_USER_AGENT]\r\n";
79 $header .= "Host: $host:$port\r\n";
80 $header .= 'Content-Length: '.strlen($post)."\r\n";
81 $header .= "Connection: Close\r\n";
82 $header .= "Cache-Control: no-cache\r\n";
83 $header .= "Cookie: $cookie\r\n\r\n";
84 $out .= $header.$post;
[all …]
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/
DCore.php38 * @param string $header Header to retrieve
42 public static function headerLines($message, $header) argument
48 if (!strcasecmp($name, $header)) {
65 * @param string $header Header to retrieve
69 public static function header($message, $header) function in GuzzleHttp\\Ring\\Core
71 $match = self::headerLines($message, $header);
81 * @param string $header Header to retrieve
85 public static function firstHeader($message, $header) argument
89 if (!strcasecmp($name, $header)) {
104 * @param string $header Header to check
[all …]
/plugin/smtp/subtree/txtthinking/Mailer/src/Mailer/
H A DMessage.php64 protected $header = array(); variable in Tx\\Mailer\\Message
248 $this->header['Date'] = date('r');
251 $this->header['Return-Path'] = $this->fakeFromEmail;
252 $this->header['From'] = $this->fakeFromName . " <" . $this->fakeFromEmail . ">";
254 $this->header['Return-Path'] = $this->fromEmail;
255 $this->header['From'] = $this->fromName . " <" . $this->fromEmail .">";
258 $this->header['To'] = '';
260 $this->header['To'] .= $toName . " <" . $toEmail . ">, ";
262 $this->header['To'] = substr($this->header['To'], 0, -2);
263 $this->header['Subject'] = $this->subject;
[all …]
/plugin/elwikiupgrade/
DVerboseTarLib.class.php79 $header = $this->parseHeader($read);
80 if(!is_array($header)) continue;
82 $this->skipbytes(ceil($header['size'] / 512) * 512);
83 $result[] = $header;
126 $header = $this->parseHeader($dat);
127 if(!is_array($header)) continue;
128 if(!$header['filename']) continue;
131 $filename = $this->cleanPath($header['filename']);
135 if(!$header['typeflag']) {
166 $extracted[] = $header;
[all …]
/plugin/combo/ComboStrap/
H A DHttp.php12 foreach (headers_list() as $header) {
13 if (preg_match("/$key/i", $header)) {
76 header("$contentTypeHeader: $mime");
88 foreach ($headers as $header) {
89 $loc = strpos($header, ":");
93 $actualHeaderName = substr($header, 0, $loc);
96 $result[] = $header;
105 public static function extractHeaderValue(string $header): string argument
107 $positionDoublePointSeparator = strpos($header, ':');
111 return trim(substr($header, $positionDoublePointSeparator + 1));
/plugin/latexport/implementation/
Ddecorator_headings.php64 function header($text, $level, $pos) { function in DecoratorHeadings
101 $this->decorator->header($text, 1, $pos);
106 $this->decorator->header($text, 1, $pos);
110 $this->decorator->header($text, 3, $pos);
129 $this->decorator->header($text, 3, $pos);
133 $this->decorator->header($text, 2, $pos);
137 $this->decorator->header($text, 3, $pos);
146 $this->decorator->header($text, 3, $pos);
150 $this->decorator->header($text, 4, $pos);
154 $this->decorator->header($text, 5, $pos);
/plugin/webdav/vendor/sabre/dav/lib/DAV/Exception/
DPreconditionFailed.php28 public $header = null; variable in Sabre\\DAV\\Exception\\PreconditionFailed
34 * @param string $header
36 function __construct($message, $header = null) { argument
39 $this->header = $header;
63 if ($this->header) {
65 $prop->nodeValue = $this->header;
/plugin/davcal/vendor/sabre/dav/lib/DAV/Exception/
H A DPreconditionFailed.php28 public $header = null; variable in Sabre\\DAV\\Exception\\PreconditionFailed
34 * @param string $header
36 function __construct($message, $header = null) { argument
39 $this->header = $header;
63 if ($this->header) {
65 $prop->nodeValue = $this->header;
/plugin/latexport/_test/
Ddecorator_headings.test.php28 $this->decoratorHeadings->header("text1", 1, 10); // This would open the main matter.
29 $this->decoratorHeadings->header("text2", 1, 20); // This would open the appendix.
30 $this->decoratorHeadings->header("text3", 1, 30); // This is a chapter in the appendix.
31 $this->decoratorHeadings->header("text4", 1, 40); // This is a chapter in the appendix.
42 $this->decoratorHeadings->header("text1", 2, 10); // This is a chapter in the front matter.
43 $this->decoratorHeadings->header("text2", 2, 20); // This is a chapter in the front matter.
44 $this->decoratorHeadings->header("text3", 1, 30); // This opens the main matter.
45 $this->decoratorHeadings->header("text4", 2, 40); // This is a section in the main matter.
56 $this->decoratorHeadings->header("text1", 10, 10);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
DFirePHPHandler.php130 protected function sendHeader(string $header, string $content): void argument
133 header(sprintf('%s: %s', $header, $content));
158 foreach ($this->getInitHeaders() as $header => $content) {
159 $this->sendHeader($header, $content);
163 $header = $this->createRecordHeader($record);
164 if (trim(current($header)) !== '') {
165 $this->sendHeader(key($header), current($header));
/plugin/crosspost/
Daction.php108 $header = false;
111 $header = p_get_first_heading( $entry );
115 $header = p_get_first_heading( getNS( $entry ) );
119 $header = p_get_first_heading( $entry );
120 if( $header )
123 if( $ns ) $header = $ns . ':' . $header;
128 $header = p_get_first_heading( $entry );
129 if( $header )
138 $header = "$ns:$header";
143 $header = array_pop( $allns ) . ":$header";
[all …]
/plugin/sequencediagram/bower_components/snap.svg/doc/css/
Dmain.css59 #main-header {
68 #main-header hgroup {
71 #main-header hgroup h1 {
77 #main-header hgroup a {
81 #main-header hgroup a:hover {
84 #main-header hgroup p {
89 #main-header nav {
197 #content header h2 {
205 body.light #content header h2 {
208 body.dark #content header h2 {
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Auth/Backend/
H A DAbstractDigestTest.php24 …$header = 'username=null, realm=myRealm, nonce=12345, uri=/, response=HASH, opaque=1, qop=auth, nc…
26 'PHP_AUTH_DIGEST' => $header,
42 …$header = 'username=array, realm=myRealm, nonce=12345, uri=/, response=HASH, opaque=1, qop=auth, n…
44 'PHP_AUTH_DIGEST' => $header,
61 …$header = 'username=false, realm=myRealm, nonce=12345, uri=/, response=HASH, opaque=1, qop=auth, n…
63 'PHP_AUTH_DIGEST' => $header,
77 …$header = 'username=user, realm=myRealm, nonce=12345, uri=/, response=HASH, opaque=1, qop=auth, nc…
79 'PHP_AUTH_DIGEST' => $header,
95 …$header = 'username=user, realm=myRealm, nonce=12345, uri=/, response='.$digestHash.', opaque=1, q…
98 'PHP_AUTH_DIGEST' => $header,
/plugin/photogallery/
Dadmin.php88 function _info_row($item, $value, $state = null, $header = false){ argument
89 if ($header)
92 $this->_info_cell($item,$header);
93 $this->_info_cell($value,$header);
95 $this->_info_cell($state ? "ok" : "error",$header);
97 $this->_info_cell($state,$header);
99 if ($header)
103 function _info_cell($text, $header = false){ argument
104 if ($header)
112 if ($header)
/plugin/grensladawritezor/fckeditor/editor/filemanager/browser/default/connectors/php/
Dbasexml.php32 header('Expires: Mon, 26 Jul 1997 05:00:00 GMT') ;
34 header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT') ;
36 header('Cache-Control: no-store, no-cache, must-revalidate') ;
37 header('Cache-Control: post-check=0, pre-check=0', false) ;
39 header('Pragma: no-cache') ;
42 header( 'Content-Type:text/xml; charset=utf-8' ) ;
/plugin/visrep/
Dimg.php16 header('Content-Type: image/png;');
17 header('Expires: '.gmdate("D, d M Y H:i:s", time()+max($conf['cachetime'], 3600)).' GMT');
18header('Cache-Control: public, proxy-revalidate, no-transform, max-age='.max($conf['cachetime'], 3…
19 header('Pragma: public');
23 header("HTTP/1.0 404 Not Found");
24 header('Content-Type: image/png');
/plugin/mindmap/
Dxml.php21 header('Content-Type: text/xml;');
22 header('Expires: '.gmdate("D, d M Y H:i:s", time()+max($conf['cachetime'], 3600)).' GMT');
23 header('Cache-Control: public, proxy-revalidate, no-transform, max-age='.max($conf['cachetime'], 36…
24 header('Pragma: public');
29 header("HTTP/1.0 404 Not Found");
30 header('Content-Type: text/xml');

12345678910>>...49