“Comment obtenir une variable de PHP à JavaScript” Réponses codées

Variable PHP JavaScript

<script type="text/javascript">
   var php_var = "<?php echo $php_var; ?>";
</script>
Mobile Star

Variable PHP d'accès JavaScript

//passing PHP variable to JavaScript
var myJSVar = <?php echo json_encode($myPHPVar); ?>;
Grepper

Comment obtenir une variable de PHP à JavaScript

<script type="text/javascript">
// boolean outputs "" if false, "1" if true
var bool = "<?php echo $bool ?>"; 

// numeric value, both with and without quotes
var num = <?php echo $num ?>; // 7
var str_num = "<?php echo $num ?>"; // "7" (a string)

var str = "<?php echo $str ?>"; // "A string here"
</script>
Unusual Unicorn

Réponses similaires à “Comment obtenir une variable de PHP à JavaScript”

Questions similaires à “Comment obtenir une variable de PHP à JavaScript”

Plus de réponses similaires à “Comment obtenir une variable de PHP à JavaScript” dans HTML

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code