I have to access a file by php, this file has a variable in the line x I want to get the contents of this variable, step to a condition, if different than expected I replace the value of this variable by php, without having access q the file manually.
In short, I need to access a. php file from a library via php code, check which variable value, if it is different from the expected value change its value, it will only be 2 values, production and test.
Example
linha 12 $varivel = 'teste'; // arquivo.php
// tenho o código que captura o valor da variavel
$oqueTemLinha12 = 'o que tem la';
if ($variavel != 'teste') {
// alterar para produção, e vice e versa, o problema não é a condição e sim como obter um valor de um arquivo e como troca-lo se preciso
}