“Nehmen Sie Dateidaten in variabler PHP ein” Code-Antworten

Nehmen Sie Dateidaten in variabler PHP ein

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');
Lokesh003Coding

Nehmen Sie Dateidaten in variabler PHP ein

ob_start();

include "yourfile.php";

$myvar = ob_get_clean();

reference :
https://stackoverflow.com/questions/1272228/how-do-i-load-a-php-file-into-a-variable
https://secure.php.net/manual/en/function.ob-get-clean.php 
Lokesh003Coding

Ähnliche Antworten wie “Nehmen Sie Dateidaten in variabler PHP ein”

Fragen ähnlich wie “Nehmen Sie Dateidaten in variabler PHP ein”

Weitere verwandte Antworten zu “Nehmen Sie Dateidaten in variabler PHP ein” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen