Adapt doc

This commit is contained in:
Philipp 2023-01-06 12:47:00 +01:00
parent beb3d376b2
commit c35fd68ec2
No known key found for this signature in database
GPG Key ID: 24A7501396EB5432
1 changed files with 4 additions and 3 deletions

View File

@ -203,11 +203,12 @@ class ConfigFileManager
}
/**
* Evaluate the fetched content
* Evaluate the content string as PHP code
*
* @see https://www.php.net/manual/en/function.eval.php
*
* @note
* Because `eval()` directly evaluates PHP content, we need to "close" the expected PHP content again with
* the prefixed "?>". Now we're in plain HTML again and can evaluate any PHP file :-)
* To leave the PHP mode, we have to use the appropriate PHP tags '?>' as prefix.
*/
$dataArray = eval('?>' . $content);