Folder Structrue:
fileinfo.php
<!DOCTYPE html>
<html>
<head>
<title>Web Application</title>
</head>
<body>
<?php
print '<pre>';
$filePath = '/fileimage/jobs.jpg';
$fileinfo = pathinfo($filePath);
print_r($fileinfo);
print '<hr/>';
print_r($fileinfo['basename']);
$path= 'fileimage/'.$fileinfo['basename'];
print '<br/>';
print "<img src='$path' width='100px'/>";
?>
</body>
</html>
Output 1
Output 2
fileinfo.php
<!DOCTYPE html>
<html>
<head>
<title>Web Application</title>
</head>
<body>
<?php
print '<pre>';
$filePath = '/fileimage/jobs.jpg';
$fileinfo = pathinfo($filePath);
print_r($fileinfo);
print '<hr/>';
print_r($fileinfo['basename']);
$path= 'fileimage/'.$fileinfo['basename'];
print '<br/>';
print "<img src='$path' width='100px'/>";
?>
</body>
</html>
Output 1
Output 2
0 comments:
Post a Comment