Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> PHP

จะรับชื่อตัวแปรเป็นสตริงใน PHP ได้อย่างไร


ในการรับชื่อตัวแปรเป็นสตริงใน PHP โค้ดจะเป็นดังนี้−

ตัวอย่าง

<?php
   $a = "This is it!";
   $$a = "Demo string!";
   print($a);
?>

ผลลัพธ์

สิ่งนี้จะทำให้เกิดผลลัพธ์ดังต่อไปนี้−

This is it!

ตัวอย่าง

เรามาดูตัวอย่างอื่นกัน −

<?php
   $val = "This is it!";
   function display($var) {
      foreach($GLOBALS as $demo => $value) {
         if ($value === $var) {
            return $demo;
         }
      }
      return false;
   }
   print display($val);
?>

ผลลัพธ์

สิ่งนี้จะทำให้เกิดผลลัพธ์ดังต่อไปนี้−

Val