Home > Backend Development > PHP Tutorial > 一个 NULL 字节("")并不等同于 PHP 的 NULL 常数。

一个 NULL 字节("")并不等同于 PHP 的 NULL 常数。

WBOY
Release: 2016-06-06 20:50:30
Original
987 people have browsed it

php手册中“一个 NULL 字节("\0")并不等同于 PHP 的 NULL 常数。”

并不十分明白,若不同,不同在那里?

回复内容:

php手册中“一个 NULL 字节("\0")并不等同于 PHP 的 NULL 常数。”

并不十分明白,若不同,不同在那里?

<?php var_dump("\0"); // string(1) ""
	var_dump(NULL); // NULL
Copy after login

'\0'不是NULL,是NUL

php中没有字符类型这个概念,所以两个就不一样了

深入到底层去理解就是:php中的变量是用 struct zval 来实现的

Related labels:
php
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template