TAILIEUCHUNG - Beginning PHP and MySQL From Novice to Professional phần 2

Một biến luôn luôn bắt đầu với một ký hiệu đô la, $, mà sau đó được theo sau bởi tên biến. Tên biến theo các quy tắc đặt tên tương tự như nhận dạng. Đó là, một tên biến có thể bắt đầu với một lá thư hoặc một gạch dưới và có thể bao gồm các chữ cái, gạch dưới, con số, hoặc các ký tự ASCII khác nhau, từ 127 đến 255. | 74 CHAPTER 3 PHP BASICS Given the importance of this programming concept it would be wise to explicitly lay the groundwork as to how variables are declared and manipulated. In this section these rules are examined in detail. Note A variable is a named memory location that contains data and may be manipulated throughout the execution of the program. Variable Declaration A variable always begins with a dollar sign which is then followed by the variable name. Variable names follow the same naming rules as identifiers. That is a variable name can begin with either a letter or an underscore and can consist of letters underscores numbers or other ASCII characters ranging from 127 through 255. The following are all valid variables color operating_system _some_variable model Note that variables are case sensitive. For instance the following variables bear absolutely no relation to one another color Color COLOR Interestingly variables do not have to be explicitly declared in PHP as they do in Perl. Rather variables can be declared and assigned values simultaneously. Nonetheless just because you can do something doesn t mean you should. Good programming practice dictates that all variables should be declared prior to use preferably with an accompanying comment. CHAPTER 3 PHP BASICS 75 Once you ve declared your variables you can begin assigning values to them. Two methodologies are available for variable assignment by value and by reference. Both are introduced next. Value Assignment Assignment by value simply involves copying the value of the assigned expression to the variable assignee. This is the most common type of assignment. A few examples follow color red number 12 age 12 sum 12 15 sum 27 Keep in mind that each of these variables possesses a copy of the expression assigned to it. For example number and age each possesses their own unique copy of the value 12. If you prefer that two variables point to the same copy of a value you need to assign by reference introduced

TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.