forked from PHPSP/php-the-right-way
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request PHPSP#119 from henriqueholanda/stable-version
Alterando stable version
- Loading branch information
Showing
1 changed file
with
7 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
--- | ||
title: Use a versão estável atual (7.0) | ||
title: Use a versão estável atual (7.1) | ||
isChild: true | ||
anchor: use_a_versao_estavel_atual | ||
--- | ||
|
||
## Use a versão estável atual (7.0) {#use_a_versao_estavel_atual_title} | ||
## Use a versão estável atual (7.1) {#use_a_versao_estavel_atual_title} | ||
|
||
Se você está começando com o PHP, certifique-se de começar com a versão estável mais recente [PHP 7.0][php-release]. O PHP 7.0 é muito novo, e adicionou [novas funcionalidades](#destaques_da_linguagem) incríveis às antigas versões 5.x. O motor tem sido amplamente reescrito e o PHP é agora ainda mais rápido que as versões antigas. | ||
Se você está começando com o PHP, certifique-se de começar com a versão estável mais recente [PHP 7.1][php-release]. O PHP 7.1 é muito novo, e adicionou [novas funcionalidades][php-news] incríveis às antigas versões 5.x. O motor tem sido amplamente reescrito e o PHP é agora ainda mais rápido que as versões antigas. | ||
|
||
O mais comum atualmente, é encontrar o PHP 5.x sendo usado e a versão 5.x mais recente é a 5.6. Não é uma opção ruim, mas | ||
você deve tentar migrar para a última versão rapidamente. Atualizar é bem simples, não existem muitas | ||
você deve tentar migrar para a última versão rapidamente. PHP 5.6 [não receberá atualizações de segurança após 2018][php-security] Atualizar é bem simples, não existem muitas | ||
[quebras de compatibilidade com versões anteriores][php-breaks]. Se você não tem certeza em qual versão uma função ou determinado recurso se encontra, você pode verificar a documentação do PHP no site [php.net][php-docs]. | ||
|
||
[php-release]: http://php.net/downloads | ||
[php-docs]: http://php.net/manual/ | ||
[php-breaks]: http://php.net/manual/pt_BR/migration70.incompatible.php | ||
[php-breaks]: http://php.net/manual/pt_BR/migration71.incompatible.php | ||
[php-news]: http://php.net/manual/pt_BR/migration71.new-features.php | ||
[php-security]: http://php.net/supported-versions.php |