Wiki движки на PHP. Обзор CMS для создания Wiki
2010. Вышла новая версия TikiWiki CMS Groupware
Сообщество разработчиков TikiWiki выпустила новую версию CMS движка Tiki 5.0. Основные новые возможности: покупательская корзина, подписки и платежи, рабочие области и перспективы (для эффективного разделения больших проектов), интеграция веб-конференции BigBlueButton, WebDAV-доступ к галереям файлов, улучшение быстродействия, расширенная система рейтингов, улучшенная поддержка переодов/многоязычности, таблицы с использованием jQuery. Хотя только что опубликована Tiki 5, сообщество уже начало разработку Tiki 6, следующей мажорной версии. Запланированные улучшения включают в себя: генератор тем, обучающая система управления, отложенная работа с корзиной товаров, система валют сообщества, поддержка HTML5.
2008. XWiki — вики нового поколения
Главной идеей, которая лежала в основе технологии Вики — это возможность легкого и быстрого создания сайтов без знания html. И существующие вики отлично справляются с этой задачей. Однако вики-сайты могут состоять лишь из статических страниц с текстом и мультимедийным контентом. Ни форм, ни кнопок, ни скриптов в обычную вики засунуть нельзя. Ребята из французского стартапа XWiki решили снять это ограничение. XWiki — вики-движок, который вполне можно заюзать для Вашего бизнеса. Он бесплатный и с открытым кодом. В нем есть вполне приличный WYSIWYG редактор, система управления страницами, система контроля версий, система прав доступа. Есть даже такие фичи, как экспорт страниц в PDF, гарячие клавиши, RSS, прикрученный к каждой странице, система статистики, блоги, тэги. Русский язык нормально поддерживается. И, конечно, наибольшего внимания заслуживает платформа для создания и интеграции приложений. XWiki предоставляет API для интеграции, возможность создания Java-плагинов, возможность использования вики в качестве портлета в корпоративном портале. Кроме того, разработчики смогут вставлять скрипты (на Velocity или Groovy) прямо в вики-странички.
2008. MediaWiki: корпоративная система и база знаний
MediaWiki — это самая распространенная wiki-система. Документы в wiki хранятся в виде плоского текста с использованием некоторого языка разметки. Текст можно править «по месту» в процессе чтения материала и немедленно публиковать. Следующий момент — облегченная схема построения гиперссылок. В wiki-системе соблюдается цепочка Идентификаторы=Названия=Заголовки и используется адаптивная линковка, заключающаяся в перенаправлениях и даже «опережающих» ссылках на несуществующие еще статьи. Наконец, wiki-система обеспечивает централизованное хранение, что для большинства пользователей удобнее работы со множеством файлов размеченной (HTML, XML, LaTeX, SGML) документации. Не требуется одновременно знать и файловую структуру проекта, и идентификаторы разделов (для ссылок) и иметь систему синхронизации изменений от различных пользователей. Совместное редактирование влечет совместную ответственность за результат, вырабатывается культура обсуждений и поиска правильного решения, легкость редактирования ведет к многократным итерациям, что улучшает качество текста. Кроме того, легкость порождения статей способствует фиксации больших объемов знаний. В wiki-системе на основе MediaWiki мы не дублируем знания, доступные в Сети, а держим исключительно внутреннюю уникальную информацию: описания внутренних технологий, регламентов, инструкций, FAQ-списки, библиотеку, личные странички сотрудников с квалификационными профилями и т.п.
API:Main page — MediaWiki
Toggle the table of contentsFrom mediawiki.org
Languages:
- Bahasa Indonesia
- Bahasa Melayu
- Cymraeg
- Deutsch
- Deutsch (Sie-Form)
- English
- Esperanto
- Nederlands
- Taqbaylit
- Tiếng Việt
- Türkçe
- azərbaycanca
- català
- dansk
- español
- français
- italiano
- latviešu
- lietuvių
- polski
- português
- português do Brasil
- română
- svenska
- čeština
- български
- русский
- српски / srpski
- українська
- עברית
- العربية
- تۆرکجه
- فارسی
- پښتو
- मराठी
- हिन्दी
- বাংলা
- ಕನ್ನಡ
- ไทย
- မြန်မာဘာသာ
- ᏣᎳᎩ
- 中文
- 文言
- 日本語
- 粵語
- ꯃꯤꯇꯩ ꯂꯣꯟ
- 한국어
This page is part of the MediaWiki Action API documentation. |
|
|
|
|
|
|
|
This page provides an overview of the MediaWiki Action API, represented by the api.php
endpoint.
This page is intended for technical contributors and software developers who wish to understand and use the MediaWiki Action API.
Quick Start
Get the contents of an article on English Wikipedia in HTML:
api.php?
Endpoint
All Wikimedia wikis have endpoints that follow this pattern:
https://www.example.org/w/api.php
API Endpoint | Wiki |
---|---|
https://www.mediawiki.org/w/api.php | MediaWiki API |
https://meta.wikimedia.org/w/api.php | Meta-Wiki API |
https://en.wikipedia.org/w/api.php | English Wikipedia API |
https://nl.wikipedia.org/w/api.php | Dutch Wikipedia API |
https://commons.wikimedia.org/w/api.php | Wikimedia Commons API |
https://test.wikipedia.org/w/api.php | Test Wiki API |
To see the endpoint URL on a particular wiki, see section «Entry point URLs» on the Special:Version page.
Introduction
The MediaWiki Action API is a web service that allows access to some wiki features like authentication, page operations, and search. It can provide meta information about the wiki and the logged-in user.
Uses for the MediaWiki Action API
- Monitor a MediaWiki installation
- Create a bot to maintain a MediaWiki installation
- Log in to a wiki, access data, and post changes by making HTTP requests to the web service
Getting started with MediaWiki Action API
Before you start using the MediaWiki Action API, you should review the following pages:
- API etiquette and usage guidelines
- Frequently asked questions
- Input and output formats
- Errors and warnings
- Any policies that apply to the wiki you want to access, such as Wikimedia Foundation wikis’ terms of use and trademark policy. These terms apply to you when you access or edit using the API, just as they do when you use your web browser.
API documentation
Main module
- Source: MediaWiki
- License: GPL-2.0-or-later
- Documentation
- Etiquette & usage guidelines
- FAQ
- Mailing list
- API Announcements
- Bugs & requests
Status: The MediaWiki API is a mature and stable interface that is actively supported and improved. While we try to avoid it, we may occasionally need to make breaking changes; subscribe to the mediawiki-api-announce mailing list for notice of updates.
Erroneous requests: When erroneous requests are sent to the API, an HTTP header will be sent with the key «MediaWiki-API-Error» and then both the value of the header and the error code sent back will be set to the same value. For more information see API: Errors and warnings.
Parameters:
- action
Which action to perform.
- abusefiltercheckmatch
- Check to see if an AbuseFilter matches a set of variables, an edit, or a logged AbuseFilter event.
- abusefilterchecksyntax
- Check syntax of an AbuseFilter filter.
- abusefilterevalexpression
- Evaluates an AbuseFilter expression.
- abusefilterunblockautopromote
- Unblocks a user from receiving autopromotions due to an abusefilter consequence.
- abuselogprivatedetails
- aggregategroups
- Manage aggregate message groups.
- antispoof
- Check a username against AntiSpoof’s normalisation checks.
- block
- Block a user.
- centralauthtoken
- Fetch a centralauthtoken for making an authenticated request to an attached wiki.
- centralnoticecdncacheupdatebanner
- Request the purge of banner content stored in the CDN (front-end) cache for anonymous users, for the requested banner and language
- centralnoticechoicedata
- Get data needed to choose a banner for a given project and language
- centralnoticequerycampaign
- Get all configuration settings for a campaign.
- changeauthenticationdata
- Change authentication data for the current user.
- changecontentmodel
- Change the content model of a page
- checktoken
- Check the validity of a token from action=query&meta=tokens.
- cirrus-config-dump
- Dump of CirrusSearch configuration.
- cirrus-mapping-dump
- Dump of CirrusSearch mapping for this wiki.
- cirrus-profiles-dump
- Dump of CirrusSearch profiles for this wiki.
- cirrus-settings-dump
- Dump of CirrusSearch settings for this wiki.
- clearhasmsg
- Clears the
hasmsg
flag for the current user. - clientlogin
- Log in to the wiki using the interactive flow.
- compare
- Get the difference between two pages.
- createaccount
- Create a new user account.
- createlocalaccount
- Forcibly create a local account
- delete
- Delete a page.
- deleteglobalaccount
- Delete a global user.
- discussiontoolsfindcomment
- Find a comment by its ID or name.
- echomarkread
- Mark notifications as read for the current user.
- echomarkseen
- Mark notifications as seen for the current user.
- echomute
- Mute or unmute notifications from certain users or pages.
- edit
- Create and edit pages.
- editmassmessagelist
- Edit a mass message delivery list.
- emailuser
- Email a user.
- expandtemplates
- Expands all templates within wikitext.
- fancycaptchareload
- Get a new FancyCaptcha.
- featuredfeed
- Returns a featured content feed.
- feedcontributions
- Returns a user’s contributions feed.
- feedrecentchanges
- Returns a recent changes feed.
- feedthreads
- Return a feed of discussion threads.
- feedwatchlist
- Returns a watchlist feed.
- filerevert
- Revert a file to an old version.
- flow
- Allows actions to be taken on Structured Discussions pages.
- flow-parsoid-utils
- Convert text between wikitext and HTML.
- flowthank
- Send a public thank-you notification for a Flow comment.
- globalblock
- Globally block or unblock a user.
- globalpreferenceoverrides
- Change local overrides for global preferences for the current user.
- globalpreferences
- Change global preferences of the current user.
- globaluserrights
- Add/remove a user to/from global groups.
- groupreview
- Set message group workflow states.
- help
- Display help for the specified modules.
- imagerotate
- This module has been disabled.
- import
- Import a page from another wiki, or from an XML file.
- jsonconfig
- Allows direct access to JsonConfig subsystem.
- languagesearch
- Search for language names in any script.
- linkaccount
- Link an account from a third-party provider to the current user.
- login
- Log in and get authentication cookies.
- logout
- Log out and clear session data.
- managetags
- Perform management tasks relating to change tags.
- massmessage
- Send a message to a list of pages.
- mergehistory
- Merge page histories.
- move
- Move a page.
- newslettersubscribe
- Subscribe to or unsubscribe from a newsletter.
- opensearch
- Search the wiki using the OpenSearch protocol.
- options
- Change preferences of the current user.
- paraminfo
- Obtain information about API modules.
- parse
- Parses content and returns parser output.
- patrol
- Patrol a page or revision.
- protect
- Change the protection level of a page.
- purge
- Purge the cache for the given titles.
- query
- Fetch data from and about MediaWiki.
- removeauthenticationdata
- Remove authentication data for the current user.
- resetpassword
- Send a password reset email to a user.
- revisiondelete
- Delete and undelete revisions.
- rollback
- Undo the last edit to the page.
- rsd
- Export an RSD (Really Simple Discovery) schema.
- searchtranslations
- Search translations.
- setglobalaccountstatus
- Set a global user’s status.
- setnotificationtimestamp
- Update the notification timestamp for watched pages.
- setpagelanguage
- Change the language of a page.
- shortenurl
- Shorten a long URL into a shorter one.
- sitematrix
- Get Wikimedia sites list.
- spamblacklist
- Validate one or more URLs against the spam block list.
- streamconfigs
- Exposes event stream config. Returns only format=json with formatversion=2.
- strikevote
- Allows admins to strike or unstrike a vote.
- tag
- Add or remove change tags from individual revisions or log entries.
- templatedata
- Fetch data stored by the TemplateData extension.
- thank
- Send a thank-you notification to an editor.
- threadaction
- Allows actions to be taken on threads and posts in threaded discussions.
- titleblacklist
- Validate a page title, filename, or username against the TitleBlacklist.
- torblock
- Check if an IP address is blocked by Tor.
- transcodereset
- Users with the ‘transcode-reset’ right can reset and re-run a transcode job.
- translationaids
- Query all translations aids.
- translationreview
- Mark translations reviewed.
- translationstats
- Fetch translation statistics
- ttmserver
- Query suggestions from translation memories.
- unblock
- Unblock a user.
- undelete
- Undelete revisions of a deleted page.
- unlinkaccount
- Remove a linked third-party account from the current user.
- upload
- Upload a file, or get the status of pending uploads.
- userrights
- Change a user’s group membership.
- validatepassword
- Validate a password against the wiki’s password policies.
- watch
- Add or remove pages from the current user’s watchlist.
- webapp-manifest
- Returns a webapp manifest.
- webauthn
- API Module to communicate between server and client during registration/authentication process
- wikilove
- Give WikiLove to another user.
- bouncehandler
- Internal. Receive a bounce email and process it to handle the failing recipient.
- categorytree
- Internal. Internal module for the CategoryTree extension.
- collection
- Internal. API module for performing various operations on a wiki user’s collection.
- cspreport
- Internal. Used by browsers to report violations of the Content Security Policy. This module should never be used, except when used automatically by a CSP compliant web browser.
- discussiontoolscompare
- Internal. Get information about comment changes between two page revisions.
- discussiontoolsedit
- Internal. Post a message on a discussion page.
- discussiontoolsgetsubscriptions
- Internal. Get the subscription statuses of given topics.
- discussiontoolspageinfo
- Internal. Returns metadata required to initialize the discussion tools.
- discussiontoolspreview
- Internal. Preview a message on a discussion page.
- discussiontoolssubscribe
- Internal. Subscribe (or unsubscribe) to receive notifications about a topic.
- jsondata
- Internal. Retrieve localized JSON data.
- managegroupsynchronizationcache
- Internal. Manage group synchronization cache.
- managemessagegroups
- Internal. Add a message as a rename of an existing message or a new message in the group during imports
- oathvalidate
- Internal. Validate a two-factor authentication (OATH) token.
- readinglists
- Internal. Reading list write operations.
- sanitize-mapdata
- Internal. Performs data validation for Kartographer extension
- scribunto-console
- Internal. Internal module for servicing XHR requests from the Scribunto console.
- stashedit
- Internal. Prepare an edit in shared cache.
- timedtext
- Internal. Provides timed text content for usage by <track> elements
- translationcheck
- Internal. Validate translations.
- translationentitysearch
- Internal. Search for message groups and messages
- ulslocalization
- Internal. Get the localization of ULS in the given language.
- ulssetlang
- Internal. Update user’s preferred interface language.
- visualeditor
- Internal. Returns HTML5 for a page from the Parsoid service.
- visualeditoredit
- Internal. Save an HTML5 page to MediaWiki (converted to wikitext via the Parsoid service).
- wikimediaeventsblockededit
- Internal. Log information about blocked edit attempts
- One of the following values: abusefiltercheckmatch, abusefilterchecksyntax, abusefilterevalexpression, abusefilterunblockautopromote, abuselogprivatedetails, aggregategroups, antispoof, block, centralauthtoken, centralnoticecdncacheupdatebanner, centralnoticechoicedata, centralnoticequerycampaign, changeauthenticationdata, changecontentmodel, checktoken, cirrus-config-dump, cirrus-mapping-dump, cirrus-profiles-dump, cirrus-settings-dump, clearhasmsg, clientlogin, compare, createaccount, createlocalaccount, delete, deleteglobalaccount, discussiontoolsfindcomment, echomarkread, echomarkseen, echomute, edit, editmassmessagelist, emailuser, expandtemplates, fancycaptchareload, featuredfeed, feedcontributions, feedrecentchanges, feedthreads, feedwatchlist, filerevert, flow-parsoid-utils, flow, flowthank, globalblock, globalpreferenceoverrides, globalpreferences, globaluserrights, groupreview, help, imagerotate, import, jsonconfig, languagesearch, linkaccount, login, logout, managetags, massmessage, mergehistory, move, newslettersubscribe, opensearch, options, paraminfo, parse, patrol, protect, purge, query, removeauthenticationdata, resetpassword, revisiondelete, rollback, rsd, searchtranslations, setglobalaccountstatus, setnotificationtimestamp, setpagelanguage, shortenurl, sitematrix, spamblacklist, streamconfigs, strikevote, tag, templatedata, thank, threadaction, titleblacklist, torblock, transcodereset, translationaids, translationreview, translationstats, ttmserver, unblock, undelete, unlinkaccount, upload, userrights, validatepassword, watch, webapp-manifest, webauthn, wikilove, bouncehandler, categorytree, collection, cspreport, discussiontoolscompare, discussiontoolsedit, discussiontoolsgetsubscriptions, discussiontoolspageinfo, discussiontoolspreview, discussiontoolssubscribe, jsondata, managegroupsynchronizationcache, managemessagegroups, oathvalidate, readinglists, sanitize-mapdata, scribunto-console, stashedit, timedtext, translationcheck, translationentitysearch, ulslocalization, ulssetlang, visualeditor, visualeditoredit, wikimediaeventsblockededit
- Default: help
- format
The format of the output.
- json
- Output data in JSON format.
- jsonfm
- Output data in JSON format (pretty-print in HTML).
- none
- Output nothing.
- php
- Output data in serialized PHP format.
- phpfm
- Output data in serialized PHP format (pretty-print in HTML).
- rawfm
- Output data, including debugging elements, in JSON format (pretty-print in HTML).
- xml
- Output data in XML format.
- xmlfm
- Output data in XML format (pretty-print in HTML).
- One of the following values: json, jsonfm, none, php, phpfm, rawfm, xml, xmlfm
- Default: jsonfm
- maxlag
Maximum lag can be used when MediaWiki is installed on a database replicated cluster. To save actions causing any more site replication lag, this parameter can make the client wait until the replication lag is less than the specified value. In case of excessive lag, error code maxlag is returned with a message like Waiting for $host: $lag seconds lagged.
See Manual: Maxlag parameter for more information.- Type: integer
- smaxage
Set the
s-maxage
HTTP cache control header to this many seconds. Errors are never cached.- Type: integer
- Default: 0
- maxage
Set the
max-age
HTTP cache control header to this many seconds. Errors are never cached.- Type: integer
- Default: 0
- assert
Verify that the user is logged in if set to user, not logged in if set to anon, or has the bot user right if bot.
- One of the following values: anon, bot, user
- assertuser
Verify the current user is the named user.
- Type: user, by username
- requestid
Any value given here will be included in the response. May be used to distinguish requests.
- servedby
Include the hostname that served the request in the results.
- Type: boolean (details)
- curtimestamp
Include the current timestamp in the result.
- Type: boolean (details)
- responselanginfo
Include the languages used for uselang and errorlang in the result.
- Type: boolean (details)
- origin
When accessing the API using a cross-domain AJAX request (CORS), set this to the originating domain. This must be included in any pre-flight request, and therefore must be part of the request URI (not the POST body).
For authenticated requests, this must match one of the origins in the
Origin
header exactly, so it has to be set to something like https://en.wikipedia.org or https://meta.wikimedia.org. If this parameter does not match theOrigin
header, a 403 response will be returned. If this parameter matches theOrigin
header and the origin is allowed, theAccess-Control-Allow-Origin
andAccess-Control-Allow-Credentials
headers will be set.For non-authenticated requests, specify the value *. This will cause the
Access-Control-Allow-Origin
header to be set, butAccess-Control-Allow-Credentials
will befalse
and all user-specific data will be restricted.- uselang
Language to use for message translations. action=query&meta=siteinfo with siprop=languages returns a list of language codes, or specify user to use the current user’s language preference, or specify content to use this wiki’s content language.
- Default: user
- variant
Variant of the language. Only works if the base language supports variant conversion.
- errorformat
Format to use for warning and error text output
- plaintext
- Wikitext with HTML tags removed and entities replaced.
- wikitext
- Unparsed wikitext.
- html
- HTML
- raw
- Message key and parameters.
- none
- No text output, only the error codes.
- bc
- Format used prior to MediaWiki 1.29. errorlang and errorsuselocal are ignored.
- One of the following values: bc, html, none, plaintext, raw, wikitext
- Default: bc
- errorlang
Language to use for warnings and errors. action=query&meta=siteinfo with siprop=languages returns a list of language codes, or specify content to use this wiki’s content language, or specify uselang to use the same value as the uselang parameter.
- Default: uselang
- errorsuselocal
If given, error texts will use locally-customized messages from the MediaWiki namespace.
- Type: boolean (details)
- centralauthtoken
When accessing the API using a cross-domain AJAX request (CORS), use this to authenticate as the current SUL user. Use action=centralauthtoken on this wiki to retrieve the token, before making the CORS request. Each token may only be used once, and expires after 10 seconds. This should be included in any pre-flight request, and therefore should be included in the request URI (not the POST body).
Examples:
- Help for the main module.
- api.php?action=help [open in sandbox]
- All help in one page.
- api.php?action=help&recursivesubmodules=1 [open in sandbox]
Permissions:
- writeapi
- Use of the write API
- Granted to: all, user and bot
- apihighlimits
- Use higher limits in API queries (slow queries: 500; fast queries: 5000). The limits for slow queries also apply to multivalue parameters.
- Granted to: bot and sysop
Other APIs
If you do not find what you are looking for in this API documentation, there are many other APIs related to Wikimedia projects. For the REST API included with MediaWiki 1.35 and later, see API:REST API .
API | Availability | URL base | Example |
---|---|---|---|
MediaWiki Action API | Included with MediaWiki Enabled on Wikimedia projects | /api. php | https://en.wikipedia.org/w/api.php?action=query&prop=info&titles=Earth |
MediaWiki REST API | Included with MediaWiki 1.35+ Enabled on Wikimedia projects | /rest.php | https://en.wikipedia.org/w/rest.php/v1/page/Earth |
Wikimedia REST API | Not included with MediaWiki Available for Wikimedia projects only | /api/rest | https://en.wikipedia.org/api/rest_v1/page/title/Earth |
For commercial-scale APIs for Wikimedia projects, see Wikimedia Enterprise |
Code stewardship
Простая английская Википедия, бесплатная энциклопедия
Переключить оглавлениеИз простой английской Википедии, бесплатной энциклопедии. вещи. Код PHP запускается на веб-сервере. Это называется предшествует процессору , потому что он создает информацию перед отправкой ее на компьютер, который посещает веб-страницу.
Веб-сайт, запрограммированный на PHP, может иметь страницы, защищенные паролем. Сайт без программирования не может этого сделать без других сложных вещей. Стандартные расширения файлов PHP: .php, .php3 или .phtml, но веб-сервер можно настроить для использования любого расширения. [4] [5]
На его структуру повлияли многие языки, такие как C, Perl, Java, C++ и даже Python. Free Software Foundation считает его свободным программным обеспечением. [6]
PHP был впервые создан Расмусом Лердорфом в 1995 году. [7] Сейчас он разрабатывается и улучшается большой командой людей. Сначала его название означало Personal Home Page , но позже оно было изменено на PHP: Hypertext Preprocessor ; используя старую аббревиатуру в новом названии.
Пример программы Hello World:
Код PHP обычно помещают в документ HTML, например:
<голова>Привет, мир голова> <тело> = 'Привет, мир
'; ?> тело>
- ↑ 1. 0 1.1 Расмус Лердорф начал собирать код C, изначально написанный для сценариев CGI, в библиотеку и получать доступ к функциям библиотеки, включая SQL-запросы, с помощью встроенных команд HTML в 1994 году; Лердорф, Расмус (26 апреля 2007 г.). «PHP о гормонах — история презентации PHP Расмусом Лердорфом, сделанной на конференции MySQL в Санта-Кларе, Калифорния». Разговорная сеть. Архивировано из оригинала (mp3) 2019 г.-01-06. Проверено 11 декабря 2009 г. .
- ↑ «Объявление о выпуске PHP 7.3.6». PHP.net . Группа PHP. Проверено 30 мая 2019 г. .
- ↑ «Официальная информация о лицензии PHP». PHP.net . Группа PHP. Проверено 21 апреля 2011 г. .
- ↑ http://www.w3schools.com/php/php_intro.asp Проверено 30 октября 2007 г.
- ↑ «Директива AddHandler модуля Apache mod_mime». Проверено 30 сентября 2015 г. .
- ↑ «Несовместимые с GPL лицензии свободного программного обеспечения». Различные лицензии и комментарии к ним . Фонд свободного программного обеспечения. Архивировано из оригинала 22 июля 2005 г. Проверено 3 ноября 2007 г. .
- ↑ «История PHP». PHP.net . Группа PHP. Проверено 18 июля 2011 г. .
- Официальный сайт PHP
- Учебник по PHP, заархивированный 11 мая 2010 г. на Wayback Machine для начинающих
- Учебник по PHP, заархивированный 27 октября 2020 г. на Wayback Machine для начинающих
- [./Https://webtopfree.blogspot.com/2021/07/php-what-is-php-in-hindi-technology.html Архивировано 29 июля 2021 г. в Wayback Machine https://webtopfree.blogspot .com/2021/08/How-to-learn-PHP.html Архивировано 20 августа 2021 г. на Wayback Machine] что такое PHP
- PHP.orgУчебники по PHP для начинающих
- Компилятор PHP — компиляция кода PHP в браузере
Платформа PHP для веб-мастеров
Laravel — это среда веб-приложений с выразительным и элегантным синтаксисом. Мы уже заложили основу — даем вам возможность творить, не беспокоясь о мелочах.
Начать Смотреть ларакасты
Любимая тысячами разработчиков по всему миру.
«Я использую Laravel почти десять лет, и у меня никогда не было соблазна переключиться на что-то другое».
Адам Ватан
Создатель Tailwind CSS
«Laravel упрощает создание современных масштабируемых веб-приложений».
Аарон Фрэнсис
Создатель Torchlight и коляски
«Laravel превратился в удивительное инновационное и активное сообщество. Laravel — это гораздо больше, чем просто PHP-фреймворк».
Бобби Боуманн
Элитный разработчик Enrise
«Как PHP-разработчик старой школы, я пробовал множество фреймворков; ни один из них не дал мне такой скорости разработки и удовольствия от использования, как Laravel.
Это глоток свежего воздуха в экосистеме PHP с блестящим сообществом вокруг него».Эрика Хайди
Создатель Minicli
«Laravel — не что иное, как наслаждение. Это позволяет мне создавать любые веб-приложения с рекордной скоростью и радостью».
Калеб Порцио
Создатель Livewire и Alpine.js
«Я нашел Laravel случайно, но сразу понял, что нашел свое дело. Фреймворк, экосистема и сообщество — идеальное сочетание. Я работал над потрясающими проектами и встречал невероятных людей; можно с уверенностью сказать, что Laravel изменил мою жизнь».
Zuzana Kunckova
Full-Stack Developer
«Лучшие в своем классе инструменты тестирования Laravel дают мне уверенность в быстрой доставке надежных приложений».
Майкл Дырында
Laravel Artisan + Laracon AU Organizer
«Laravel был как ракетное топливо для моей карьеры и бизнеса».
Крис Артер
Разработчик в Bankrate
«Я использую Laravel более 10 лет и не могу представить себе использование PHP без него».
Эрик Л. Барнс
Основатель Laravel News
«Мне уже много лет нравится то, что Laravel уделяет особое внимание выводу опыта разработчиков на новый уровень. Все части экосистемы мощные, хорошо спроектированные, с ними интересно работать, и у них отличная документация. Приятно быть частью окружающего дружелюбного и готового помочь сообщества».
Фрик Ван дер Хертен
Владелец Spatie
«Laravel и его экосистема инструментов помогают мне создавать клиентские проекты быстрее, безопаснее и качественнее, чем любые другие инструменты».
Джейсон Беггс
Владелец жареного.dev
«Я не в полной мере оценил универсальное, всеобъемлющее решение Laravel, пока не попробовал (много) разных экосистем. Laravel — отдельный класс!»
Джозеф Зильбер
Создатель Bouncer
«Laravel помог мне запускать продукты быстрее, чем любое другое решение, позволяя мне быстрее и быстрее выходить на рынок по мере развития сообщества».
Стив Макдугалл
Создатель Laravel Transporter
«Я использую Laravel для каждого проекта за последние десять лет в то время, когда каждый день запускается новый фреймворк. На сегодняшний день ничего подобного просто нет».
Фило Херманс
Основатель Anystack
«Laravel предназначен для разработчиков, которые пишут код, потому что могут, а не потому, что должны».