PHP Global variables: PHP source code Analysis-Weak type variable implementation

Source: Internet
Author: User
Tags define array variables php source code resource variable zend

PHP is a weakly typed, dynamic language script. When declaring a variable, you do not need to indicate the type of data it holds.
For example:
<?php
$var = 1;
$var = "variable";
$var = 1.00;
$var = Array ();
$var = new Object ();
Dynamic variables, which can be changed during run time, and do not need to declare variable types before use.
So, question one, how does the Zend engine implement this weak type in C?
In fact, the variables declared in PHP are saved in ze by structural zval.
First we open zend/zend.h to see the definition of Zval:
typedef struct _ZVAL_STRUCT Zval;
struct _zval_struct {
/* Variable Information * *
Zvalue_value value; /* Value * *
Zend_uint refcount__gc;
Zend_uchar type; /* Active type */
Zend_uchar is_ref__gc;
};
typedef Union _ZVALUE_VALUE {
Long lval; /* Long Value * *
Double Dval; /* Double Value * *
struct {
Char *val;
int Len;
} str;
HashTable *ht; /* Hash Table value * *
Zend_object_value obj;
} Zvalue_value;
Zend/zend_types.h:
typedef unsigned char Zend_bool;
typedef unsigned char Zend_uchar;
typedef unsigned int zend_uint;
typedef unsigned long Zend_ulong;
typedef unsigned short Zend_ushort;
From the above code, you can see that _zvalue_value is a key part of really saving data. A weakly typed variable declaration implemented by a common body
Question two, Zend engine is how to identify, storage PHP in a variety of data types?
_zval_struct.type stores the true type of a variable, depending on the type to choose how to get the Zvalue_value value.
Type value list (zend/zend.h):
#define IS_NULL 0
#define Is_long 1
#define Is_double 2
#define Is_bool 3
#define Is_array 4
#define IS_OBJECT 5
#define Is_string 6
#define Is_resource 7
#define Is_constant 8
#define Is_constant_array 9
Let's look at a simple example:
<?php
$a = 1;
At this time Zval.type = Is_long, then zval.value to take lval.
$a = array ();
At this point zval.type = Is_array, then zval.value to pick Ht.
One of the most complex of these is the "resource type" that is often needed in developing third-party extensions.
In PHP, any variable that is not part of PHP's built-in variable type is considered a resource for saving. This article links http://www.cxybl.com/html/wlbc/Php/20121213/34971.html

Large-Scale Price Reduction
  • 59% Max. and 23% Avg.
  • Price Reduction for Core Products
  • Price Reduction in Multiple Regions
undefined. /
Connect with us on Discord
  • Secure, anonymous group chat without disturbance
  • Stay updated on campaigns, new products, and more
  • Support for all your questions
undefined. /
Free Tier
  • Start free from ECS to Big Data
  • Get Started in 3 Simple Steps
  • Try ECS t5 1C1G
undefined. /

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.