dongqi1245 2018-07-14 09:38
浏览 45
已采纳

是否有必要在php中使用连接赋值运算符之前定义变量?

I've tried and came to know that if i use

$a .="test";
$a .=" test2";

and echo out $a

echo $a

it returns

test test2

also for arrays

<?php 
$testarray['Title'] = "test";
$testarray['text'] = "text";
 print_r($testarray); 

 ?>

it gives the proper result without declaring $testarray=[];

Array ( [Title] => test [text] => text )

It does not even shows the warning or notice.. so i just want to know is it good practice to declare the variable before or both are ok.. also if it is related to any particular php version.. i am using php 7.1 will it show error in earlier version?

  • 写回答

1条回答 默认 最新

  • douguanci9158 2018-07-15 04:15
    关注

    No, not necessary but it is good practice to declare/initialize your variables first.

    Actually, if you follow any coding standards you would clearly avoid using the concatenation assignment operator; you get the PHP notice for a reason for doing so.

    The second case is not necessarily bad. If an array variable is used in a closure and there is no ambiguity it's arguably fine. But if we talking about a large file, a class property, or another critical piece, you arguably still doing it wrong when you use (associative) arrays that way.

    The general advice here is, follow the coding standards that the framework at hand puts forth. Most bigger frameworks have a coding guide (here is a nice overview), otherwise stick to PSR-2 and PSR-1 or some custom coding standard (e.g. this); the important thing is: be consistent.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 请问一下这个运行结果是怎么来的
  • ¥15 这个复选框什么作用?
  • ¥15 单通道放大电路的工作原理
  • ¥30 YOLO检测微调结果p为1
  • ¥20 求快手直播间榜单匿名采集ID用户名简单能学会的
  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下