Only variables should be passed by reference

后端 未结 12 1633
囚心锁ツ
囚心锁ツ 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:30

    First, you will have to store the value in a variable like this

    $value = explode("/", $string);
    

    Then you can use the end function to get the last index from an array like this

    echo end($value);
    

    I hope it will work for you.

提交回复
热议问题