├── 01_primeiro_projeto ├── README.md └── index.php ├── 02_conceitos_fundamentais ├── 01_echo.php ├── 02_lineBreak.php ├── 03_readLine.php ├── 04_comments.php └── README.md ├── 03_variaveis_constantes ├── 01_variaveis.php ├── 02_constantes.php ├── 03_variaveis_variaveis.php └── README.md ├── 04_tipos_de_dados ├── README.md └── tipos_de_dados.php ├── 05_operadores_aritmeticos ├── 01_adicao.php ├── 02_subtracao.php ├── 03_multiplicacao.php ├── 04_divisao.php ├── 05_modulo.php ├── 06_exponencial.php ├── 07_identidade.php ├── 08_negacao.php └── README.md ├── 06_strings ├── 01_char_string.php ├── 02_aspas.php ├── 03_concatenacao.php ├── 04_interpolação.php ├── 05_funcoes.php ├── 06_heredoc_nowdoc.php └── README.md ├── 07_operadores_de_comparacao ├── 01_igual.php ├── 02_identico.php ├── 03_diferente.php ├── 04_nao_identico.php ├── 05_menor_que.php ├── 06_maior_que.php ├── 07_menor_ou_igual.php ├── 08_maior_ou_igual.php ├── 09_spaceship.php └── README.md ├── 08_operadores_logicos ├── 01_operador_E_AND.php ├── 02_operador_E_OU_OR.php ├── 03_operador_NAO_NOT.php ├── 04_operador_OU_XOR.php └── README.md ├── 09_estruturas_condicionais ├── 01_if.php ├── 02_if_else.php ├── 03_if_elseif_else.php ├── 04_switch.php └── README.md ├── 10_arrays ├── 01_like_vector.php ├── 02_like_dictionary.php ├── 03_multidimensional.php ├── 04_mixed.php ├── 05_functions.php └── README.md ├── 11_estruturas_de_repeticao ├── 01_for.php ├── 02_foreach.php ├── 03_while.php ├── 04_do_while.php ├── 05_break.php ├── 06_continue.php └── README.md ├── 12_funcoes ├── 01_ready_functions.php ├── 02_return.php ├── 03_parameter.php ├── 04_reference.php └── README.md ├── 13_jogo_da_velha └── v1 │ ├── README.md │ └── index.php ├── LICENSE ├── README.md └── course-logo.png /01_primeiro_projeto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeeasy-dev/php-para-iniciantes/HEAD/01_primeiro_projeto/README.md -------------------------------------------------------------------------------- /01_primeiro_projeto/index.php: -------------------------------------------------------------------------------- 1 |