Write a PHP script to get the document root directory under which the current script is executing, as defined in the server's configuration file
- برمجة بي اتش بي
- 2021-09-08
- mhanasmh00489829403
الأجوبة
<?php
// getenv() gets the value of an environment variable
$rd = getenv('DOCUMENT_ROOT');
echo $rd."\n";
?>
القوائم الدراسية التي ينتمي لها السؤال