>  기사  >  백엔드 개발  >  c中的strlen函数字符''来判断字符串是否结束,那php呢?

c中的strlen函数字符''来判断字符串是否结束,那php呢?

WBOY
WBOY원래의
2016-06-20 12:36:191144검색

  c中的strlen函数字符'\0'来判断字符串是否结束,那php呢?


回复讨论(解决方案)

php 的变量是一个 C 语言结构,

能详细解释一下么?不太懂

The string in PHP is implemented as an array of bytes and an integer indicating the length of the buffer.

php是用c++写的,应该也是用"\n"吧

php的变量结构如下:

typedef struct _zval_struct zval;typedef union _zvalue_value {    long lval;                 /* long value */    double dval;               /* double value */    struct {                   /* string type */        char *val;        int len;    } str;    HashTable *ht;             /* hash table value */    zend_object_value obj;} zvalue_value; struct _zval_struct {    /* Variable information */    zvalue_value value;        /* value */    zend_uint refcount__gc;    zend_uchar type;           /* active type */    zend_uchar is_ref__gc;};

然后你就懂了。

php变量有保存字符串长度,所以不需要用符号判断

谢谢各位!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.