DEV Community

Cover image for ROADMAP PHP 🐘
Allan Rodrigues Machado
Allan Rodrigues Machado

Posted on • Updated on

ROADMAP PHP 🐘

🚧 Roadmap Em construção... 🚧

Delimitadores de código

en-US

PHP code must be written inside the code delimiters as if the code is outside the delimiters it will not be interpreted.

pt-BR

O código PHP deve ser escrito nos delimitadores de código, pois se o código estiver fora dos delimitadores não será interpretado pelo php.

<?php

    Aqui vai todo nosso código PHP

    Here goes all our PHP code

?>
Enter fullscreen mode Exit fullscreen mode

Comentários

en-US

Comments, serves to pass some information about our code, or describe something about the classes, but we must be very careful with comments, not to get that code full of comments, and comment only when necessary.

pt-BR

Comentários serve para passar alguma informação sobre nosso código, ou descrever algo sobre as classes, mas devemos tomar muito cuidado com os comentários, para não ficar aquele código cheio de comentários, e comentar somente quando necessário.

<?php

    // Comentario de uma uníca linha
    // Single line comment

    # Comentario de uma uníca linha
    # Single line comment


    /**
     *  Comentarios de 
     *  Multiplas linhas
     **/

    /**
     *  multiline 
     *  comment
     **/
?>
Enter fullscreen mode Exit fullscreen mode

Comandos de saída


pt-br

São usados para gerar uma saída em tela (OUTPUT).

  • Linhas de comando executadas no prompt do sistema sua saída será no proprio console.
  • Linhas de comando executadas no servidor web - Apache, NGINX ou IIS sua saída será no propria pagina HTML.

en-us

They are used to generate an output on the screen (OUTPUT).

  • Command lines executed in the system prompt will be output in the console itself.
  • Command lines executed on the web server - Apache, NGINX or IIS will be output in the HTML page itself.

pt-br

echo É um comando usado para imprimir uma ou mais string na tela.

<?php
    echo 'Hello World';
?>
Enter fullscreen mode Exit fullscreen mode

Output Hello World

en-US

echo Is a command used to print one or more strings to the screen.

<?php
    echo 'Hello World';
?>
Enter fullscreen mode Exit fullscreen mode

Output Hello World


pt-br

var_dump Explana todo conteúdo de uma variável, mostrando toda estrutura sobre uma ou mais
Expressão, incluindo o tipo e o valor

<?php
$user = [
    "fisrt_name" => "Allan",
    "last_name" => "Rodrigues"
];

var_dump($user);
?>
Enter fullscreen mode Exit fullscreen mode

Output

array(2) {
    ["first_name"]=>
    string(5) "Allan"
    ["last_name"]=>
    string(9) "Rodrigues"
}
Enter fullscreen mode Exit fullscreen mode
en-US

var_dump Explains the entire contents of a variable, showing the entire structure over one or more
Expression, including type and value

<?php
$user = [
    "fisrt_name" => "Allan",
    "last_name" => "Rodrigues"
];

var_dump($user);
?>
Enter fullscreen mode Exit fullscreen mode

Output

array(2) {
    ["first_name"]=>
    string(5) "Allan"
    ["last_name"]=>
    string(9) "Rodrigues"
}
Enter fullscreen mode Exit fullscreen mode

pt-br

print_r Explana todo conteúdo de uma variável igual ao var_dump, mas em um formato mais legivel e suprimindo os dados.

<?php
$user = [
        "fisrt_name" => "Allan",
        "last_name" => "Rodrigues"
    ];

 print_r($user);
?>
Enter fullscreen mode Exit fullscreen mode
Array
(
    [fisrt_name] => Allan
    [last_name] => Rodrigues
)
Enter fullscreen mode Exit fullscreen mode
en-US

print_r explain all contents of a variable like var_dump, but in a more readable format and suppressing the data.

<?php
$user = [
        "fisrt_name" => "Allan",
        "last_name" => "Rodrigues"
    ];

 print_r($user);
?>
Enter fullscreen mode Exit fullscreen mode
Array
(
[fisrt_name] => Allan
[last_name] => Rodrigues
)
Enter fullscreen mode Exit fullscreen mode




Find me elsewhere 🌎

@allanrodriguesmachado

Top comments (0)