Answers for "get file data in php"

PHP
7

php get file contents

<?php
file_get_contents("file.txt");
?>
Posted by: Guest on May-12-2020
0

take file data in variable php

I suppose you want to get the content generated by PHP, if so use:

$Vdata = file_get_contents('http://YOUR_HOST/YOUR/FILE.php');

Otherwise if you want to get the source code of the PHP file, its the same as 
a .txt file:

$Vdata = file_get_contents('path/to/YOUR/FILE.php');
Posted by: Guest on February-17-2021

Browse Popular Code Answers by Language