Answers for "php get file name upload"

PHP
0

php get filename

<?php
    $xmlFile = pathinfo('/usr/admin/config/test.xml');

    function filePathParts($arg1) {
        echo $arg1['dirname'], "\n";
        echo $arg1['basename'], "\n";
        echo $arg1['extension'], "\n";
        echo $arg1['filename'], "\n";
    }

    filePathParts($xmlFile);
?>
Posted by: Guest on December-11-2021
0

how to get file name in upload images in php

php is a server side language and it work to crate and rewad mean curd
Posted by: Guest on March-25-2022

Browse Popular Code Answers by Language