repo stringlengths 7 63 | file_url stringlengths 81 284 | file_path stringlengths 5 200 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 15:02:33 2026-01-05 05:24:06 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
saxap/clean-wp-template | https://github.com/saxap/clean-wp-template/blob/30d352222831f098d0f50785f5aa453744b2e07c/your-clean-template-3/functions.php | your-clean-template-3/functions.php | <?php
/**
* Функции шаблона (function.php)
* @package WordPress
* @subpackage your-clean-template-3
*/
add_theme_support('title-tag'); // теперь тайтл управляется самим вп
register_nav_menus(array( // Регистрируем 2 меню
'top' => 'Верхнее', // Верхнее
'bottom' => 'Внизу' // Внизу
));
add_theme_support('post-th... | php | MIT | 30d352222831f098d0f50785f5aa453744b2e07c | 2026-01-05T05:18:29.067673Z | false |
saxap/clean-wp-template | https://github.com/saxap/clean-wp-template/blob/30d352222831f098d0f50785f5aa453744b2e07c/your-clean-template-3/index.php | your-clean-template-3/index.php | <?php
/**
* Главная страница (index.php)
* @package WordPress
* @subpackage your-clean-template-3
*/
get_header(); // подключаем header.php ?>
<section>
<div class="container">
<div class="row">
<div class="<?php content_class_by_sidebar(); // функция подставит класс в зависимости от того есть ли сайдбар, ле... | php | MIT | 30d352222831f098d0f50785f5aa453744b2e07c | 2026-01-05T05:18:29.067673Z | false |
saxap/clean-wp-template | https://github.com/saxap/clean-wp-template/blob/30d352222831f098d0f50785f5aa453744b2e07c/your-clean-template-3/404.php | your-clean-template-3/404.php | <?php
/**
* Страница 404 ошибки (404.php)
* @package WordPress
* @subpackage your-clean-template-3
*/
get_header(); // Подключаем header.php ?>
<section>
<div class="container">
<div class="row">
<div class="<?php content_class_by_sidebar(); // функция подставит класс в зависимости от того есть ли сайдбар, ле... | php | MIT | 30d352222831f098d0f50785f5aa453744b2e07c | 2026-01-05T05:18:29.067673Z | false |
saxap/clean-wp-template | https://github.com/saxap/clean-wp-template/blob/30d352222831f098d0f50785f5aa453744b2e07c/your-clean-template-3/header.php | your-clean-template-3/header.php | <?php
/**
* Шаблон шапки (header.php)
* @package WordPress
* @subpackage your-clean-template-3
*/
?>
<!DOCTYPE html>
<html <?php language_attributes(); // вывод атрибутов языка ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); // кодировка ?>">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta ... | php | MIT | 30d352222831f098d0f50785f5aa453744b2e07c | 2026-01-05T05:18:29.067673Z | false |
saxap/clean-wp-template | https://github.com/saxap/clean-wp-template/blob/30d352222831f098d0f50785f5aa453744b2e07c/your-clean-template-3/single.php | your-clean-template-3/single.php | <?php
/**
* Шаблон отдельной записи (single.php)
* @package WordPress
* @subpackage your-clean-template-3
*/
get_header(); // подключаем header.php ?>
<section>
<div class="container">
<div class="row">
<div class="<?php content_class_by_sidebar(); // функция подставит класс в зависимости от того есть ли сайд... | php | MIT | 30d352222831f098d0f50785f5aa453744b2e07c | 2026-01-05T05:18:29.067673Z | false |
saxap/clean-wp-template | https://github.com/saxap/clean-wp-template/blob/30d352222831f098d0f50785f5aa453744b2e07c/your-clean-template-3/searchform.php | your-clean-template-3/searchform.php | <?php
/**
* Шаблон формы поиска (searchform.php)
* @package WordPress
* @subpackage your-clean-template-3
*/
?>
<form role="search" method="get" class="search-form form-inline" action="<?php echo home_url( '/' ); ?>">
<div class="form-group">
<label class="sr-only" for="search-field">Поиск</label>
<input type=... | php | MIT | 30d352222831f098d0f50785f5aa453744b2e07c | 2026-01-05T05:18:29.067673Z | false |
saxap/clean-wp-template | https://github.com/saxap/clean-wp-template/blob/30d352222831f098d0f50785f5aa453744b2e07c/your-clean-template-3/sidebar.php | your-clean-template-3/sidebar.php | <?php
/**
* Шаблон сайдбара (sidebar.php)
* @package WordPress
* @subpackage your-clean-template-3
*/
?>
<?php if (is_active_sidebar( 'sidebar' )) { // если в сайдбаре есть что выводить ?>
<aside class="col-sm-3">
<?php dynamic_sidebar('sidebar'); // выводим сайдбар, имя определено в functions.php ?>
</aside>
<?ph... | php | MIT | 30d352222831f098d0f50785f5aa453744b2e07c | 2026-01-05T05:18:29.067673Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Client.php | src/Client.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http;
use Arr... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | true |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Request.php | src/Request.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http;
use Zen... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Response.php | src/Response.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http;
use Zen... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/ClientStatic.php | src/ClientStatic.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http;
/**
* ... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/AbstractMessage.php | src/AbstractMessage.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http;
use Zen... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/HeaderLoader.php | src/HeaderLoader.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http;
use Zen... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Headers.php | src/Headers.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http;
use Arr... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Cookies.php | src/Cookies.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http;
use Arr... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Client/Exception/OutOfRangeException.php | src/Client/Exception/OutOfRangeException.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Client\Ex... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Client/Exception/ExceptionInterface.php | src/Client/Exception/ExceptionInterface.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Client\Ex... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Client/Exception/RuntimeException.php | src/Client/Exception/RuntimeException.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Client\Ex... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Client/Exception/InvalidArgumentException.php | src/Client/Exception/InvalidArgumentException.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Client\Ex... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Client/Adapter/Proxy.php | src/Client/Adapter/Proxy.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Client\Ad... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Client/Adapter/Socket.php | src/Client/Adapter/Socket.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Client\Ad... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Client/Adapter/Curl.php | src/Client/Adapter/Curl.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Client\Ad... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Client/Adapter/Test.php | src/Client/Adapter/Test.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Client\Ad... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Client/Adapter/AdapterInterface.php | src/Client/Adapter/AdapterInterface.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Client\Ad... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Client/Adapter/StreamInterface.php | src/Client/Adapter/StreamInterface.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Client\Ad... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Client/Adapter/Exception/OutOfRangeException.php | src/Client/Adapter/Exception/OutOfRangeException.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Client\Ad... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Client/Adapter/Exception/ExceptionInterface.php | src/Client/Adapter/Exception/ExceptionInterface.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Client\Ad... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Client/Adapter/Exception/RuntimeException.php | src/Client/Adapter/Exception/RuntimeException.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Client\Ad... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Client/Adapter/Exception/TimeoutException.php | src/Client/Adapter/Exception/TimeoutException.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Client\Ad... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Client/Adapter/Exception/InvalidArgumentException.php | src/Client/Adapter/Exception/InvalidArgumentException.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Client\Ad... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Client/Adapter/Exception/InitializationException.php | src/Client/Adapter/Exception/InitializationException.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Client\Ad... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Response/Stream.php | src/Response/Stream.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Response;... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Exception/OutOfRangeException.php | src/Exception/OutOfRangeException.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Exception... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Exception/ExceptionInterface.php | src/Exception/ExceptionInterface.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Exception... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Exception/RuntimeException.php | src/Exception/RuntimeException.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Exception... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Exception/InvalidArgumentException.php | src/Exception/InvalidArgumentException.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Exception... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/PhpEnvironment/RemoteAddress.php | src/PhpEnvironment/RemoteAddress.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\PhpEnviro... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/PhpEnvironment/Request.php | src/PhpEnvironment/Request.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\PhpEnviro... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/PhpEnvironment/Response.php | src/PhpEnvironment/Response.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\PhpEnviro... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/MultipleHeaderInterface.php | src/Header/MultipleHeaderInterface.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/MaxForwards.php | src/Header/MaxForwards.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/RetryAfter.php | src/Header/RetryAfter.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/HeaderValue.php | src/Header/HeaderValue.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/GenericHeader.php | src/Header/GenericHeader.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/Etag.php | src/Header/Etag.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/Expires.php | src/Header/Expires.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/Connection.php | src/Header/Connection.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/HeaderInterface.php | src/Header/HeaderInterface.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/AbstractAccept.php | src/Header/AbstractAccept.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/SetCookie.php | src/Header/SetCookie.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/Authorization.php | src/Header/Authorization.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/AcceptEncoding.php | src/Header/AcceptEncoding.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/LastModified.php | src/Header/LastModified.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/Pragma.php | src/Header/Pragma.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/ContentDisposition.php | src/Header/ContentDisposition.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/ContentSecurityPolicy.php | src/Header/ContentSecurityPolicy.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/Via.php | src/Header/Via.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/TE.php | src/Header/TE.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/ProxyAuthenticate.php | src/Header/ProxyAuthenticate.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/Referer.php | src/Header/Referer.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/Date.php | src/Header/Date.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/KeepAlive.php | src/Header/KeepAlive.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/From.php | src/Header/From.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/Origin.php | src/Header/Origin.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/Upgrade.php | src/Header/Upgrade.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/Range.php | src/Header/Range.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/ContentLanguage.php | src/Header/ContentLanguage.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/GenericMultiHeader.php | src/Header/GenericMultiHeader.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/IfNoneMatch.php | src/Header/IfNoneMatch.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/AuthenticationInfo.php | src/Header/AuthenticationInfo.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/IfModifiedSince.php | src/Header/IfModifiedSince.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/WWWAuthenticate.php | src/Header/WWWAuthenticate.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/IfUnmodifiedSince.php | src/Header/IfUnmodifiedSince.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/AbstractLocation.php | src/Header/AbstractLocation.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/AbstractDate.php | src/Header/AbstractDate.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/FeaturePolicy.php | src/Header/FeaturePolicy.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
/**
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/Vary.php | src/Header/Vary.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/IfMatch.php | src/Header/IfMatch.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/Location.php | src/Header/Location.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/Server.php | src/Header/Server.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/IfRange.php | src/Header/IfRange.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/ProxyAuthorization.php | src/Header/ProxyAuthorization.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/ContentTransferEncoding.php | src/Header/ContentTransferEncoding.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/Cookie.php | src/Header/Cookie.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/Expect.php | src/Header/Expect.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/Warning.php | src/Header/Warning.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/ContentMD5.php | src/Header/ContentMD5.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/AcceptCharset.php | src/Header/AcceptCharset.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/UserAgent.php | src/Header/UserAgent.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/Trailer.php | src/Header/Trailer.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/Accept.php | src/Header/Accept.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/ContentType.php | src/Header/ContentType.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/AcceptLanguage.php | src/Header/AcceptLanguage.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/CacheControl.php | src/Header/CacheControl.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/ContentEncoding.php | src/Header/ContentEncoding.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/Age.php | src/Header/Age.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/AcceptRanges.php | src/Header/AcceptRanges.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/Refresh.php | src/Header/Refresh.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/TransferEncoding.php | src/Header/TransferEncoding.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
zendframework/zend-http | https://github.com/zendframework/zend-http/blob/ac4ffd09d509b2c5c0285178c4f7de740f05c3d9/src/Header/ContentLength.php | src/Header/ContentLength.php | <?php
/**
* @see https://github.com/zendframework/zend-http for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
*/
namespace Zend\Http\Header;
... | php | BSD-3-Clause | ac4ffd09d509b2c5c0285178c4f7de740f05c3d9 | 2026-01-05T05:18:13.309357Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.