fork download
  1. <?php
  2.  
  3. $content = "<?php
  4. # Bitte bearbeiten Sie diese Datei nicht. #
  5.  
  6. $mysql = array( 'host'=>'localhost',
  7. 'database'=>'schnnet',
  8. 'password'=>'root',
  9. 'user'=>'root');
  10. $licence = array('key'=>'jZf5hhRd5vqmwTkMB9eq');
  11. $rey_connect = array('active'=>true,'client_id'=>'123','client_secret'=>'123456');
  12. ?>";
  13.  
  14. $content = preg_replace("/\$rey_connect = array\((.*?\'client_id\'=>\')(.*?)('.*?\'client_secret\'=>\')(.*?)(\')(.*?)(?:\));(?:\n|$)/", "$rey_connect = array(\1$id\3$secret\5);", $content);
  15.  
  16. print $content;
Success #stdin #stdout #stderr 0.02s 24400KB
stdin
Standard input is empty
stdout
<?php
# Bitte bearbeiten Sie diese Datei nicht. #

 = array(  'host'=>'localhost',
                        'database'=>'schnnet',
                        'password'=>'root',
                        'user'=>'root');
 = array('key'=>'jZf5hhRd5vqmwTkMB9eq');
 = array('active'=>true,'client_id'=>'123','client_secret'=>'123456');
?>
stderr
PHP Notice:  Undefined variable: mysql in /home/O7KdYZ/prog.php on line 10
PHP Notice:  Undefined variable: licence in /home/O7KdYZ/prog.php on line 11
PHP Notice:  Undefined variable: rey_connect in /home/O7KdYZ/prog.php on line 12
PHP Notice:  Undefined variable: rey_connect in /home/O7KdYZ/prog.php on line 14
PHP Notice:  Undefined variable: id in /home/O7KdYZ/prog.php on line 14
PHP Notice:  Undefined variable: secret in /home/O7KdYZ/prog.php on line 14