Blogger Information
Blog 1
fans 0
comment 0
visits 266
Related recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
测试啊啊啊啊啊
破晓
Original
266 people have browsed it
  1. // 普通赋值
  2. $v = '1';
  3. $c = $v;
  4. $c = '2';
  5. echo $v, PHP_EOL; // '1'
  6. // 数组也是普通赋值
  7. $arr1 = [1,2,3];
  8. $arr2 = $arr1;
  9. $arr2[1] = 5;
  10. print_r($arr1); // [1, 2, 3]
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post