Only variables should be passed by reference

后端 未结 12 1644
囚心锁ツ
囚心锁ツ 2020-11-22 06:14
// Other variables
$MAX_FILENAME_LENGTH = 260;
$file_name = $_FILES[$upload_name][\'name\'];
//echo \"testing-\".$file_name.\"
\"; //$file_name = strtolower
12条回答
  •  清歌不尽
    2020-11-22 06:40

    Since it raise a flag for over 10 years, but works just fine and return the expected value, a little stfu operator is the goodiest bad practice you are all looking for:

    $file_extension = @end(explode('.', $file_name));
    

提交回复
热议问题