Home php教程 php手册 PHP的关于变量和日期处理的一些面试题目整理

PHP的关于变量和日期处理的一些面试题目整理

Jun 06, 2016 pm 07:48 PM
php variable Date processing

这篇文章主要介绍了PHP的关于变量和日期处理的一些面试题目整理,也是PHP入门学习中的基础知识,需要的朋友可以参考下

变量相关
PHP变量的内部实现
编程语言的系统类型分为强类型和弱类型两种:

  •     强类型语言是一旦某个变量被申明为某个类型的变量,在程序运行过程中,就不能将该变量的类型以外的值赋予给它,c/c++/java等语言就属于这类
  •     php及ruby,javascript等脚本语言就属于弱类型语言:一个变量可以表示任意的数据类型

  • php变量类型及存储结构
    php在声明或使用变量的时候,并不需要显式指明其数据类型

    php是弱类型语言,这不并表示php没有类型,在php中,存在8种变量类型,可以分为三类:


    变量存储结构
    变量的值存储到一下所示的zval结构体中.其结构如下:

    typedef struct _zval_struct zval; struct _zval_struct { zvalue_value value; // 存储变量的值 zend_uint refcount__gc; // 表示引用计数 zend_uchar type; // 变量具体的类型 zend_uchar is_ref_gc; // 表示是否为引用 };


    变量的值存储在另外一个结构体zvalue_value中

    变量类型
    zval结构体的type字段就是实现弱类型最关键的字段了,type的值可以为:IS_NULL, IS_BOOL, IS_LONG, IS_DOUBLE, IS_STRING, IS_ARRAY, IS_OBJECT, IS_RESOURCE之一.从字面上就很好理解,他们只是类型的唯一标示,根据类型的不同将不同的值存储到value字段

    变量值的存储
    前面说到变量的值存储在zvalue_value结构体中,结构体定义如下:

    typedef union _zvalue_value { long lval; double dval; struct { char *val; int len; } str; HashTable *ht; zend_object_value obj; } _zvalue_value;


    日期相关

    计算两个日期之间的天数
      

    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island Adventure: How To Get Giant Seeds
    1 months ago By 尊渡假赌尊渡假赌尊渡假赌
    Two Point Museum: All Exhibits And Where To Find Them
    1 months ago By 尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use

    Zend Studio 13.0.1

    Zend Studio 13.0.1

    Powerful PHP integrated development environment

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)

    CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

    In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

    PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

    PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

    CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

    To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

    CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

    To work on file upload we are going to use the form helper. Here, is an example for file upload.

    CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

    In this chapter, we are going to learn the following topics related to routing ?

    Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

    CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

    CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

    Validator can be created by adding the following two lines in the controller.

    How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

    Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

    See all articles