在PHP中,可以使用php_ini_loaded_file()
函数来获取当前正在使用的php.ini文件的路径。
可以使用以下代码将文件插入到指定位置(php.ini位置):
<?php
$phpIniPath = php_ini_loaded_file(); // 获取当前正在使用的php.ini文件的路径
$fileToInsert = '/path/to/file.php'; // 要插入的文件的路径
// 读取php.ini文件内容
$phpIniContent = file_get_contents($phpIniPath);
// 在指定位置插入文件内容
$positionToInsert = strpos($phpIniContent, '; End of file');
$phpIniContent = substr_replace($phpIniContent, "\n" . file_get_contents($fileToInsert), $positionToInsert, 0);
// 将修改后的内容写回php.ini文件
file_put_contents($phpIniPath, $phpIniContent);
?>
请注意,这将直接修改php.ini文件,因此请谨慎使用。在修改php.ini文件之前,最好备份原始文件。
Laravel PHP 深圳智简公司。版权所有©2023-2043 LaravelPHP 粤ICP备2021048745号-3
Laravel 中文站