Hướng dẫn which are not correct variable name in php program - tên biến không đúng trong chương trình php

Đôi khi thuận tiện để có thể có tên biến có thể thay đổi. Đó là, một tên biến có thể được đặt và sử dụng động. Một biến bình thường được đặt với một câu lệnh như:

Một biến có thể lấy giá trị của một biến và coi đó là tên của một biến. Trong ví dụ trên, Hello, có thể được sử dụng làm tên của một biến bằng cách sử dụng hai dấu hiệu đô la. I E.

Tại thời điểm này, hai biến đã được xác định và lưu trữ trong cây ký hiệu PHP: $ a với nội dung "Xin chào" và $ xin chào với nội dung "Thế giới". Do đó, tuyên bố này:

tạo ra đầu ra chính xác như:

tức là cả hai đều sản xuất: Xin chào Thế giới.hello world.

Để sử dụng các biến biến với các mảng, bạn phải giải quyết vấn đề mơ hồ. Đó là, nếu bạn viết $$ A [1] thì trình phân tích cú pháp cần biết liệu bạn có muốn sử dụng $ a [1] làm biến hay không, hoặc nếu bạn muốn $$ a làm biến và sau đó là chỉ mục [1] từ biến đó. Cú pháp để giải quyết sự mơ hồ này là: $ {$ a [1]} cho trường hợp đầu tiên và $ {$ a} [1] cho lần thứ hai.

Thuộc tính lớp cũng có thể được truy cập bằng tên thuộc tính biến. Tên thuộc tính biến sẽ được giải quyết trong phạm vi mà cuộc gọi được thực hiện. Chẳng hạn, nếu bạn có một biểu thức, chẳng hạn như $ foo-> $ Bar, thì phạm vi cục bộ sẽ được kiểm tra $ Bar và giá trị của nó sẽ được sử dụng làm tên của thuộc tính của $ foo. Điều này cũng đúng nếu $ Bar là một truy cập mảng.

Niềng răng xoăn cũng có thể được sử dụng, để phân định rõ ràng tên thuộc tính. Chúng hữu ích nhất khi truy cập các giá trị trong một thuộc tính chứa một mảng, khi tên thuộc tính được tạo từ nhiều phần hoặc khi tên thuộc tính chứa các ký tự không hợp lệ (ví dụ: từ json_decode () hoặc simplexml).json_decode() or SimpleXML).

Ví dụ #1 Ví dụ về thuộc tính biến

<?php
class foo {
    var 
$bar 'I am bar.';
    var 
$arr = array('I am A.''I am B.''I am C.');
    var 
$r   'I am r.';
}
$foo = new foo();
$bar 'bar';
$baz = array('foo''bar''baz''quux');
echo 
$foo->$bar "\n";
echo 
$foo->{$baz[1]} . "\n";$start 'b';
$end   'ar';
echo 
$foo->{$start $end} . "\n";$arr 'arr';
echo 
$foo->{$arr[1]} . "\n";?>

Ví dụ trên sẽ xuất ra:

Tôi là quán bar. Tôi là quán bar. Tôi là quán bar. Tôi là R.
I am bar.
I am bar.
I am r.

Cảnh báo

Xin lưu ý rằng các biến biến không thể được sử dụng với các mảng SuperGlobal của PHP trong các hàm hoặc phương thức lớp. Biến $this cũng là một biến đặc biệt không thể được tham chiếu động.

userb at abertb dot org ¶

12 năm trước

<?php//You can even add more Dollar Signs$Bar = "a";
 
$Foo = "Bar";
 
$World = "Foo";
 
$Hello = "World";
 
$a = "Hello";$a; //Returns Hello
 
$$a; //Returns World
 
$$$a; //Returns Foo
 
$$$$a; //Returns Bar
 
$$$$$a; //Returns a$$$$$$a; //Returns Hello
 
$$$$$$$a; //Returns World

  //... and so on ...//

?>

Ẩn danh ¶

17 năm trước

It may be worth specifically noting, if variable names follow some kind of "template," they can be referenced like this:

<?php
// Given these variables ...
$nameTypes    = array("first", "last", "company");
$name_first   = "John";
$name_last    = "Doe";
$name_company = "PHP.net";// Then this loop is ...
foreach($nameTypes as $type)
  print ${
"name_$type"} . "\n";// ... equivalent to this print statement.
print "$name_first\n$name_last\n$name_company\n";
?>

This is apparent from the notes others have left, but is not explicitly stated.

Nathan Hammond ¶

14 năm trước

These are the scenarios that you may run into trying to reference superglobals dynamically. Whether or not it works appears to be dependent upon the current scope.

<?php

$this0

$this1

Antony Dot Gian hàng tại Nodomain Dot ở đây ¶

20 năm trước

$this2

$this3

$this4

$this5

$this6

$this7

$this8

J. Dyer ¶

20 năm trước

<?php//You can even add more Dollar Signs$Bar = "a";
 
$Foo = "Bar";
 
$World = "Foo";
 
$Hello = "World";
 
$a = "Hello";$a; //Returns Hello
 
$$a; //Returns World
 
$$$a; //Returns Foo
 
$$$$a; //Returns Bar
 
$$$$$a; //Returns a$$$$$$a; //Returns Hello
 
$$$$$$$a; //Returns World
0

<?php//You can even add more Dollar Signs$Bar = "a";
 
$Foo = "Bar";
 
$World = "Foo";
 
$Hello = "World";
 
$a = "Hello";$a; //Returns Hello
 
$$a; //Returns World
 
$$$a; //Returns Foo
 
$$$$a; //Returns Bar
 
$$$$$a; //Returns a$$$$$$a; //Returns Hello
 
$$$$$$$a; //Returns World
1

<?php//You can even add more Dollar Signs$Bar = "a";
 
$Foo = "Bar";
 
$World = "Foo";
 
$Hello = "World";
 
$a = "Hello";$a; //Returns Hello
 
$$a; //Returns World
 
$$$a; //Returns Foo
 
$$$$a; //Returns Bar
 
$$$$$a; //Returns a$$$$$$a; //Returns Hello
 
$$$$$$$a; //Returns World
2

<?php//You can even add more Dollar Signs$Bar = "a";
 
$Foo = "Bar";
 
$World = "Foo";
 
$Hello = "World";
 
$a = "Hello";$a; //Returns Hello
 
$$a; //Returns World
 
$$$a; //Returns Foo
 
$$$$a; //Returns Bar
 
$$$$$a; //Returns a$$$$$$a; //Returns Hello
 
$$$$$$$a; //Returns World
3

<?php//You can even add more Dollar Signs$Bar = "a";
 
$Foo = "Bar";
 
$World = "Foo";
 
$Hello = "World";
 
$a = "Hello";$a; //Returns Hello
 
$$a; //Returns World
 
$$$a; //Returns Foo
 
$$$$a; //Returns Bar
 
$$$$$a; //Returns a$$$$$$a; //Returns Hello
 
$$$$$$$a; //Returns World
4

<?php//You can even add more Dollar Signs$Bar = "a";
 
$Foo = "Bar";
 
$World = "Foo";
 
$Hello = "World";
 
$a = "Hello";$a; //Returns Hello
 
$$a; //Returns World
 
$$$a; //Returns Foo
 
$$$$a; //Returns Bar
 
$$$$$a; //Returns a$$$$$$a; //Returns Hello
 
$$$$$$$a; //Returns World
5

<?php//You can even add more Dollar Signs$Bar = "a";
 
$Foo = "Bar";
 
$World = "Foo";
 
$Hello = "World";
 
$a = "Hello";$a; //Returns Hello
 
$$a; //Returns World
 
$$$a; //Returns Foo
 
$$$$a; //Returns Bar
 
$$$$$a; //Returns a$$$$$$a; //Returns Hello
 
$$$$$$$a; //Returns World
6

<?php//You can even add more Dollar Signs$Bar = "a";
 
$Foo = "Bar";
 
$World = "Foo";
 
$Hello = "World";
 
$a = "Hello";$a; //Returns Hello
 
$$a; //Returns World
 
$$$a; //Returns Foo
 
$$$$a; //Returns Bar
 
$$$$$a; //Returns a$$$$$$a; //Returns Hello
 
$$$$$$$a; //Returns World
7

<?php//You can even add more Dollar Signs$Bar = "a";
 
$Foo = "Bar";
 
$World = "Foo";
 
$Hello = "World";
 
$a = "Hello";$a; //Returns Hello
 
$$a; //Returns World
 
$$$a; //Returns Foo
 
$$$$a; //Returns Bar
 
$$$$$a; //Returns a$$$$$$a; //Returns Hello
 
$$$$$$$a; //Returns World
8

J. Dyer ¶

Tội lỗi ¶

<?php//You can even add more Dollar Signs$Bar = "a";
 
$Foo = "Bar";
 
$World = "Foo";
 
$Hello = "World";
 
$a = "Hello";$a; //Returns Hello
 
$$a; //Returns World
 
$$$a; //Returns Foo
 
$$$$a; //Returns Bar
 
$$$$$a; //Returns a$$$$$$a; //Returns Hello
 
$$$$$$$a; //Returns World
9

  //... and so on ...//0

  //... and so on ...//1

15 năm trước

  //... and so on ...//2

Ở đây (Ta tại TA) [Iwonderr]

  //... and so on ...//3

<?php

  //... and so on ...//5

  //... and so on ...//6

6 năm trước

jefrey.sobreira [at] gmail [dot] com ¶

  //... and so on ...//7

  //... and so on ...//8

7 năm trước

12 năm trước

?> 0

?> 1

?> 2

Ẩn danh ¶

17 năm trước

?> 4

Ẩn danh ¶

20 năm trước

?> 5

?> 6

?> 7

J. Dyer ¶

Tội lỗi ¶

?> 9

15 năm trước

  //... and so on ...//2

It may be worth specifically noting, if variable names follow some kind of "template," they can be referenced like this:0

It may be worth specifically noting, if variable names follow some kind of "template," they can be referenced like this:1

It may be worth specifically noting, if variable names follow some kind of "template," they can be referenced like this:2

It may be worth specifically noting, if variable names follow some kind of "template," they can be referenced like this:3

It may be worth specifically noting, if variable names follow some kind of "template," they can be referenced like this:4

Ở đây (Ta tại TA) [Iwonderr]

6 năm trước

It may be worth specifically noting, if variable names follow some kind of "template," they can be referenced like this:5

jefrey.sobreira [at] gmail [dot] com ¶

7 năm trước

It may be worth specifically noting, if variable names follow some kind of "template," they can be referenced like this:6

It may be worth specifically noting, if variable names follow some kind of "template," they can be referenced like this:7

It may be worth specifically noting, if variable names follow some kind of "template," they can be referenced like this:8

It may be worth specifically noting, if variable names follow some kind of "template," they can be referenced like this:9

<?php
// Given these variables ...
$nameTypes    = array("first", "last", "company");
$name_first   = "John";
$name_last    = "Doe";
$name_company = "PHP.net";// Then this loop is ...
foreach($nameTypes as $type)
  print ${
"name_$type"} . "\n";// ... equivalent to this print statement.
print "$name_first\n$name_last\n$name_company\n";
?>

This is apparent from the notes others have left, but is not explicitly stated.0

<?php
// Given these variables ...
$nameTypes    = array("first", "last", "company");
$name_first   = "John";
$name_last    = "Doe";
$name_company = "PHP.net";// Then this loop is ...
foreach($nameTypes as $type)
  print ${
"name_$type"} . "\n";// ... equivalent to this print statement.
print "$name_first\n$name_last\n$name_company\n";
?>

This is apparent from the notes others have left, but is not explicitly stated.1

Mason ¶

14 năm trước

<?php
// Given these variables ...
$nameTypes    = array("first", "last", "company");
$name_first   = "John";
$name_last    = "Doe";
$name_company = "PHP.net";// Then this loop is ...
foreach($nameTypes as $type)
  print ${
"name_$type"} . "\n";// ... equivalent to this print statement.
print "$name_first\n$name_last\n$name_company\n";
?>

This is apparent from the notes others have left, but is not explicitly stated.2

<?php
// Given these variables ...
$nameTypes    = array("first", "last", "company");
$name_first   = "John";
$name_last    = "Doe";
$name_company = "PHP.net";// Then this loop is ...
foreach($nameTypes as $type)
  print ${
"name_$type"} . "\n";// ... equivalent to this print statement.
print "$name_first\n$name_last\n$name_company\n";
?>

This is apparent from the notes others have left, but is not explicitly stated.3

Antony Dot Gian hàng tại Nodomain Dot ở đây ¶

20 năm trước

<?php
// Given these variables ...
$nameTypes    = array("first", "last", "company");
$name_first   = "John";
$name_last    = "Doe";
$name_company = "PHP.net";// Then this loop is ...
foreach($nameTypes as $type)
  print ${
"name_$type"} . "\n";// ... equivalent to this print statement.
print "$name_first\n$name_last\n$name_company\n";
?>

This is apparent from the notes others have left, but is not explicitly stated.5

<?php
// Given these variables ...
$nameTypes    = array("first", "last", "company");
$name_first   = "John";
$name_last    = "Doe";
$name_company = "PHP.net";// Then this loop is ...
foreach($nameTypes as $type)
  print ${
"name_$type"} . "\n";// ... equivalent to this print statement.
print "$name_first\n$name_last\n$name_company\n";
?>

This is apparent from the notes others have left, but is not explicitly stated.6

<?php
// Given these variables ...
$nameTypes    = array("first", "last", "company");
$name_first   = "John";
$name_last    = "Doe";
$name_company = "PHP.net";// Then this loop is ...
foreach($nameTypes as $type)
  print ${
"name_$type"} . "\n";// ... equivalent to this print statement.
print "$name_first\n$name_last\n$name_company\n";
?>

This is apparent from the notes others have left, but is not explicitly stated.7

<?php
// Given these variables ...
$nameTypes    = array("first", "last", "company");
$name_first   = "John";
$name_last    = "Doe";
$name_company = "PHP.net";// Then this loop is ...
foreach($nameTypes as $type)
  print ${
"name_$type"} . "\n";// ... equivalent to this print statement.
print "$name_first\n$name_last\n$name_company\n";
?>

This is apparent from the notes others have left, but is not explicitly stated.8

J. Dyer ¶

12 năm trước

<?php
// Given these variables ...
$nameTypes    = array("first", "last", "company");
$name_first   = "John";
$name_last    = "Doe";
$name_company = "PHP.net";// Then this loop is ...
foreach($nameTypes as $type)
  print ${
"name_$type"} . "\n";// ... equivalent to this print statement.
print "$name_first\n$name_last\n$name_company\n";
?>

This is apparent from the notes others have left, but is not explicitly stated.9

0

1

2

3

Ẩn danh ¶

17 năm trước

5

6

7

8

Ẩn danh ¶

17 năm trước

9

These are the scenarios that you may run into trying to reference superglobals dynamically. Whether or not it works appears to be dependent upon the current scope.0

These are the scenarios that you may run into trying to reference superglobals dynamically. Whether or not it works appears to be dependent upon the current scope.1

These are the scenarios that you may run into trying to reference superglobals dynamically. Whether or not it works appears to be dependent upon the current scope.2

These are the scenarios that you may run into trying to reference superglobals dynamically. Whether or not it works appears to be dependent upon the current scope.3

These are the scenarios that you may run into trying to reference superglobals dynamically. Whether or not it works appears to be dependent upon the current scope.4

Nathan Hammond ¶

14 năm trước

These are the scenarios that you may run into trying to reference superglobals dynamically. Whether or not it works appears to be dependent upon the current scope.6

These are the scenarios that you may run into trying to reference superglobals dynamically. Whether or not it works appears to be dependent upon the current scope.7

These are the scenarios that you may run into trying to reference superglobals dynamically. Whether or not it works appears to be dependent upon the current scope.8

These are the scenarios that you may run into trying to reference superglobals dynamically. Whether or not it works appears to be dependent upon the current scope.9

<?php0

<?php1

Antony Dot Gian hàng tại Nodomain Dot ở đây ¶

20 năm trước

<?php3

<?php4

<?php5

<?php6

J. Dyer ¶

Tội lỗi ¶

<?php7

<?php8

<?php9

$this00

$this01

$this02

15 năm trước

14 năm trước

$this03

Antony Dot Gian hàng tại Nodomain Dot ở đây ¶

20 năm trước

$this04

$this05

$this06

$this07

J. Dyer ¶

20 năm trước

$this08

$this09

$this10

$this11

J. Dyer ¶

20 năm trước

$this12

$this13

J. Dyer ¶

14 năm trước

$this15

$this16

$this17

$this18

$this19

Antony Dot Gian hàng tại Nodomain Dot ở đây ¶

20 năm trước

$this20

$this21

J. Dyer ¶

6 năm trước

$this23

$this24

$this25

jefrey.sobreira [at] gmail [dot] com ¶

20 năm trước

$this26

$this27

$this28

J. Dyer ¶

Tội lỗi ¶

$this30

$this31

Đó là một biến PHP chính xác?

Các quy tắc để khai báo biến PHP: Một biến phải bắt đầu với dấu hiệu đô la ($), theo sau là tên biến.Nó chỉ có thể chứa ký tự alpha-numeric và dấu gạch dưới (A-Z, 0-9, _).Một tên biến phải bắt đầu bằng một chữ cái hoặc ký tự dấu gạch dưới (_).A variable must start with a dollar ($) sign, followed by the variable name. It can only contain alpha-numeric character and underscore (A-z, 0-9, _). A variable name must start with a letter or underscore (_) character.

Các loại biến trong PHP là gì?

Kiểu dữ liệu PHP..
String..
Integer..
Float (số điểm nổi - còn được gọi là gấp đôi).
Boolean..
Array..
Object..
Resource..

Cái nào không phải là phạm vi biến trong PHP?

Chỉ có hai phạm vi có sẵn trong PHP là phạm vi địa phương và toàn cầu.Khi một biến được truy cập bên ngoài phạm vi của nó, nó sẽ gây ra lỗi không xác định của PHP.local and global scopes. When a variable is accessed outside its scope it will cause PHP error Undefined Variable.

Tên biến nào sau đây không hợp lệ?

Sau đây là các ví dụ về tên biến không hợp lệ: Age_ (kết thúc bằng dấu gạch dưới); 0st (bắt đầu bằng một chữ số); thực phẩm+không thực phẩm (chứa ký tự là+không được phép)age_ (ends with an underscore); 0st (starts with a digit); food+nonfood (contains character “+” which is not permitted)

Chủ đề