Cet article énumère JavaScript certaines comparaisons entre deux langages de programmation web les plus populaires dans le monde de l'open source: JavaScript et PHP. Variables, Objet et Array, Structure de contrôle s; dans cette liste, les programmeurs web (les programmeurs) jetez un oeil à leur sujet plus précis et donner les solutions mai appropriative pour les besoins de leurs missions.
- Demo
- Agrandir
- Recharger
- New window
Gratuit iPage h�bergement Web pour la premi�re ann�e MOMENT
Si vous �tes toujours � la recherche d'un fournisseur d'h�bergement Web fiable avec des tarifs abordables, pourquoi vous ne prenez pas un peu de temps pour essayer iPage, seulement avec $1.89/month, inclus $500+ Cr�dits suppl�mentaires gratuites pour le paiement de 24 mois ($45)?
Plus de 1.000.000 de clients + existisng peuvent pas avoir tort, vraiment vous n'�tes pas aussi! Plus important encore, lorsque vous enregistrez l'h�bergement web � iPage gr�ce � notre lien, nous allons �tre heureux de renvoyer un plein remboursement. C'est g�nial! Vous devriez essayer iPage h�bergement web GRATUITEMENT maintenant! Et contactez-nous pour tout ce que vous devez savoir sur iPage.
This is a basic comparison between PHP and JavaScript. It's intended for users familiar with PHP and looking for JavaScript equivalents.
JavaScript and PHP Comparisons:
Variables
Variable Scope
PHP and JavaScript take two very different approaches to declaring variables. In PHP, all variables are local in scope unless declared as global. JavaScript is opposite, and all variables are global unless declared with the var
keyword.
PHP
<?php
function foo() {
$variable_a = 'value'; // Local variable declaration.
}
function bar() {
print $variable_a; // Prints nothing.
}
function foo() {
global $variable_b; // Global variable declaration.
$variable_b = 'value';
}
function bar() {
global $variable_b;
print $variable_b; // Prints 'value'.
}
?>
JavaScript
function foo() {
var variableA = 'value'; // Local variable with use of "var".
}
function bar() {
alert(variableA); // Variable not defined error.
}
function foo() {
variableB = 'value'; // Global variable, no "var" declaration.
}
function bar() {
alert(variableB); // alert('value')
}
An interesting twist is JavaScript also allows scoping within functions. When using the "var" declaration, variables are available for everything in the current function or any sub-functions.
PHP
function foo() {
$variable_a = 'value'; // Local variable declaration.
function bar() {
print $variable_a; // Prints nothing.
}
}
JavaScript
function foo() {
var variableA = 'value'; // Local variable with use of "var".
function bar() {
alert(variableA); // alert('value');
}
}
Variable Types
Both PHP and JavaScript are loosely typed, meaning a variable can be of any type, and change from one type to another. However both PHP and JavaScript keep track of the type of variables, and you can check this type.
PHP
<?php
$foo = 3;
is_int($foo); // TRUE
$foo = '3';
is_int($foo); // FALSE
is_string($foo); // TRUE
?>
JavaScript
var foo = 3;
type_of(foo); // 'number'
foo = '3';
type_of(foo); // 'string'
Casting Variables
Every now and then you might need to cast variables to a specific
type. This is extremely important when dealing with JavaScript's +
operator, which is used for both string concatenation and for numeric addition.
PHP
In PHP, variables may be cast to certain type by using parenthesis. String concatenation is done with "." and addition with "+".
<?php
$foo = '3.5 kg';
$bar = (float)$foo; // 3.5
$bar = (int)$foo; // 3
$baz = (string)$foo; // '3.5 kg'
print $bar + $baz; // 6
print $bar . $baz; // '33'
?>
JavaScript
JavaScript has functions specifically for casting variables to numbers.
Both string concatenation and addition is done with "+". If mixing a
string and a number with "+", concatenation will take precedence over
addition.
var foo = '3.5 kg';
var bar = parseFloat(foo); // 3.5
bar = parseInt(foo); // 3
var baz = '3';
alert(bar + baz); // '33'
alert(bar + parseInt(baz)); // 6
Checking for NULL or empty() values
Variables in PHP don't have to be defined for you to use them, though if you're working with E_ALL compliance on (not the default of most PHP installs), your script will throw a notice if you try to use an undeclared variable. JavaScript is a bit mixed concerning undeclared variables, if you attempt to modify or compare with an undeclared variable, the script will break entirely, but you can check the variable status using typeof() or in conditional statements containing only that variable.
PHP
<?php
// Check if a variable is declared at all.
if (!isset($foo)) {
$foo = TRUE;
}
// Or check if a variable has a value that equates to FALSE.
// This includes variables that have not been declared.
if (empty($bar)) {
$bar = TRUE;
}
?>
JavaScript
// Check if a variable is declared at all.
if (typeof(foo) == 'undefined') {
var foo = true;
}
// Or check if a variable has a value that equates to false.
// This includes variables that have not been declared.
if (!bar) {
var bar = true;
}
// However an undeclared variable can't be used in comparisons.
if (baz == false) { // Variable undefined error.
var baz = true;
}
Boolean Variables
A simple but important thing to remember is that JavaScript only recognizes the keyword true
in all lowercase. PHP accepts both uppercase and lowercase.
PHP
<?php
is_boolean(TRUE); // TRUE
is_boolean(true); // TRUE
is_boolean(True); // TRUE
?>
JavaScript
typeof(true); // 'boolean'
typeof(TRUE); // 'undefined'
typeof(True); // 'undefined'
Case Sensitivity
Both JavaScript and PHP are case sensitive in their variables. PHP is not case-sensitive in function or class declarations, but JavaScript is case sensitive for these also.
PHP
<?php
// Variable case:
$foo = 'bar';
print $foo; // Prints 'bar'.
print $Foo; // Prints nothing.
// Function case:
function foo() {
print 'bar';
}
foo(); // Prints 'bar'.
Foo(); // Prints 'bar'.
?>
JavaScript
// Variable case:
var foo = 'bar';
alert(foo); // alert('bar')
alert(Foo); // Variable not defined error.
// Function case:
function foo() {
alert('bar');
}
foo(); // alert('bar')
Foo(); // Function not defined error.
- Sent (0)
- Nouveau
Générez vos vidéos d'entreprise par l'IA avec la voix ou simplement du texte
chatGPTaz.com
Parlez à ChatGPT dans votre langue maternelle
AppAIVidéo
Votre première application vidéo AI GRATUITE
Deepfake Video
Deepfake AI Video Maker
Deepfake
Deepfake AI Video Maker
AI Deep Fake
Deepfake AI Video Maker
AIvidio
AI Video Mobile Solutions
AIvideos
AI Video Platform & Solutions
AIvedio
AI Video App Maker
Faceswap AI en ligne
Échangez des visages, des vidéos, des photos et des GIF instantanément avec de puissants outils d'IA - Faceswap AI Online GRATUIT
Faceswap AI en ligne
Échangez des visages, des vidéos, des photos et des GIF instantanément avec de puissants outils d'IA - Faceswap AI Online GRATUIT
Temu gratuit 500 $ pour les nouveaux utilisateurs
Claim Free Temu $500 Credit via Affiliate & Influencer Program
Crédits publicitaires TikTok gratuits
Maîtrisez les publicités TikTok pour le marketing de votre entreprise
Dall-E-OpenAI.com
Générez automatiquement des images créatives avec l'IA
chatGPT4.win
Parlez à ChatGPT dans votre langue maternelle
Premier produit d'intelligence artificielle d'Elon Musk - Grok/UN.com
Parlez au chatbot Grok AI dans votre langue
Outily.win
Centre d'outils ouvert et gratuit, utilisable par tous et pour tous, avec des centaines d'outils
GateIO.gomymobi.com
Airdrops gratuits à réclamer et à partager jusqu'à 150 000 $ par projet
iPhoneKer.com
Économisez jusqu'à 630 $ à l'achat d'un nouvel iPhone 16
Acheter le robot Tesla Optimus
Commandez votre robot Tesla Bot : Optimus Gen 2 dès aujourd'hui pour moins de 20 000 $