<bdo id='kaJIC'></bdo><ul id='kaJIC'></ul>
  • <small id='kaJIC'></small><noframes id='kaJIC'>

      <tfoot id='kaJIC'></tfoot>

      1. <i id='kaJIC'><tr id='kaJIC'><dt id='kaJIC'><q id='kaJIC'><span id='kaJIC'><b id='kaJIC'><form id='kaJIC'><ins id='kaJIC'></ins><ul id='kaJIC'></ul><sub id='kaJIC'></sub></form><legend id='kaJIC'></legend><bdo id='kaJIC'><pre id='kaJIC'><center id='kaJIC'></center></pre></bdo></b><th id='kaJIC'></th></span></q></dt></tr></i><div id='kaJIC'><tfoot id='kaJIC'></tfoot><dl id='kaJIC'><fieldset id='kaJIC'></fieldset></dl></div>

        <legend id='kaJIC'><style id='kaJIC'><dir id='kaJIC'><q id='kaJIC'></q></dir></style></legend>
      2. PHP 变量引用和内存使用

        PHP variables reference and memory usage(PHP 变量引用和内存使用)
            <tbody id='qDwcR'></tbody>

          <small id='qDwcR'></small><noframes id='qDwcR'>

          <i id='qDwcR'><tr id='qDwcR'><dt id='qDwcR'><q id='qDwcR'><span id='qDwcR'><b id='qDwcR'><form id='qDwcR'><ins id='qDwcR'></ins><ul id='qDwcR'></ul><sub id='qDwcR'></sub></form><legend id='qDwcR'></legend><bdo id='qDwcR'><pre id='qDwcR'><center id='qDwcR'></center></pre></bdo></b><th id='qDwcR'></th></span></q></dt></tr></i><div id='qDwcR'><tfoot id='qDwcR'></tfoot><dl id='qDwcR'><fieldset id='qDwcR'></fieldset></dl></div>
              <tfoot id='qDwcR'></tfoot>

                <bdo id='qDwcR'></bdo><ul id='qDwcR'></ul>
              • <legend id='qDwcR'><style id='qDwcR'><dir id='qDwcR'><q id='qDwcR'></q></dir></style></legend>
                  本文介绍了PHP 变量引用和内存使用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  根据php手册:

                  <?php
                  $a =& $b;
                  ?>
                  // Note:
                  // $a and $b are completely equal here. $a is not pointing to $b or vice versa.
                  // $a and $b are pointing to the same place. 
                  

                  我假设:

                  <?php
                  $x = "something";
                  $y = $x;
                  $z = $x;
                  

                  应该消耗更多的内存:

                  <?php
                  $x = "something";
                  $y =& $x;
                  $z =& $x;
                  

                  因为,如果我理解正确的话,在第一种情况下,我们复制"值 something 并将其分配给 $y$z 最后有 3 个变量和 3 个内容,而在第二种情况下,我们有 3 个变量指向相同的内容.

                  because, if i understood it right, in the first case we 'duplicate' the value something and assign it to $y and $z having in the end 3 variables and 3 contents, while in the second case we have 3 variables pointing the same content.

                  所以,使用如下代码:

                  $value = "put something here, like a long lorem ipsum";
                  for($i = 0; $i < 100000; $i++)
                  {
                      ${"a$i"} =& $value;
                  }
                  echo memory_get_usage(true);
                  

                  我希望内存使用量低于:

                  I expect to have a memory usage lower than:

                  $value = "put something here, like a long lorem ipsum";
                  for($i = 0; $i < 100000; $i++)
                  {
                      ${"a$i"} = $value;
                  }
                  echo memory_get_usage(true);
                  

                  但是两种情况下的内存使用量是一样的.

                  But the memory usage is the same in both cases.

                  我错过了什么?

                  推荐答案

                  PHP 不会在赋值时重复,而是在写入时重复.请参阅 PHP 语言中的写时复制(2009 年 1 月 18 日;作者:Akihiko Tozawa、Michiaki Tatsubori、Tamiya Onodera 和 Yasuhiko Minamide;PDF 文件) 对其进行科学讨论,不要使用 PHP 引用(2010 年 1 月 10 日;作者 Jan Schlüter) 一些乐趣,我自己的看法是 参考 Max 以及更多参考.

                  PHP does not duplicate on assignment, but on write. See Copy-on-Write in the PHP Language (Jan 18 2009; by Akihiko Tozawa, Michiaki Tatsubori, Tamiya Onodera and Yasuhiko Minamide; PDF file) for a scientific discussion of it, Do not use PHP references (Jan 10, 2010; by Jan Schlüter) for some fun and my own take is References to the Max with more references.

                  这篇关于PHP 变量引用和内存使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                  PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                  mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                  Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                  Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                  Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)
                • <tfoot id='7JzP8'></tfoot>
                    <bdo id='7JzP8'></bdo><ul id='7JzP8'></ul>
                    <i id='7JzP8'><tr id='7JzP8'><dt id='7JzP8'><q id='7JzP8'><span id='7JzP8'><b id='7JzP8'><form id='7JzP8'><ins id='7JzP8'></ins><ul id='7JzP8'></ul><sub id='7JzP8'></sub></form><legend id='7JzP8'></legend><bdo id='7JzP8'><pre id='7JzP8'><center id='7JzP8'></center></pre></bdo></b><th id='7JzP8'></th></span></q></dt></tr></i><div id='7JzP8'><tfoot id='7JzP8'></tfoot><dl id='7JzP8'><fieldset id='7JzP8'></fieldset></dl></div>
                      <tbody id='7JzP8'></tbody>
                          <legend id='7JzP8'><style id='7JzP8'><dir id='7JzP8'><q id='7JzP8'></q></dir></style></legend>

                          <small id='7JzP8'></small><noframes id='7JzP8'>