أحاول الحصول على اسم الملف من المسار الخاص به بالشكل التالي:
<?php
$file_path = "/path/to/image.png";
$file_name = end(explode('/', $file_path));
echo $file_name;
لكن يظهر الخطأ التالي:
Notice: Only variables should be passed by reference in /home/user/scripts/code.php on line 4
image.png
ما سبب هذا الخطأ؟ وكيف أقوم بإصلاح هذه المشكلة؟